@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
  --pms-289: #002244;
  --pms-2915: #5EB6E4;
  --pms-420: #CECFCB;
  --pms-144: #002244;
  --pms-525: #532E60;
  --pms-213: #E21776;
  --pms-109: #FCD900;
  --pms-201: #981E32;
  --pms-289-rgb: 0, 34, 68;
  --pms-201-rgb: 152, 30, 50;
  --pms-420-rgb: 206, 207, 203;
  --white: #fff;
  --ink: var(--pms-289);
  --muted: color-mix(in srgb, var(--pms-289) 68%, var(--pms-420));
  --paper: color-mix(in srgb, var(--pms-420) 24%, var(--white));
  --soft: color-mix(in srgb, var(--pms-420) 42%, var(--white));
  --line: color-mix(in srgb, var(--pms-420) 72%, var(--white));
  --site-header-height: 78px;
  --page-gutter: clamp(18px, 5vw, 72px);
  --section-block: clamp(56px, 8vw, 110px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-height, 78px) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'Montserrat';
  line-height: 1.5;
  background: var(--paper);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--site-header-height);
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(var(--pms-420-rgb), 0.94);
  backdrop-filter: blur(10px);
}

.brand {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  min-height: var(--site-header-height);
  padding: 0;
  text-decoration: none;
}

.brand-logo {
  width: clamp(178px, 20vw, 260px);
  max-height: 60px;
  object-fit: contain;
}

.nav-links {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 0;
  color: var(--pms-289);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  display: flex;
  align-items: center;
  min-height: var(--site-header-height);
  padding: 0 clamp(14px, 1.8vw, 22px);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--pms-420);
  background: var(--pms-289);
  outline: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: clamp(80px, 12vh, 150px) var(--page-gutter) clamp(40px, 8vh, 80px);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(var(--pms-289-rgb), 0.88), rgba(var(--pms-289-rgb), 0.52) 48%, rgba(var(--pms-289-rgb), 0.18));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pms-201);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--pms-109);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 900px;
}

h2 {
  margin-bottom: 16px;
  color: var(--pms-289);
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--pms-289);
  font-size: 1.12rem;
  line-height: 1.2;
}

.lede {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--pms-213);
}

.button.secondary {
  color: var(--white);
  border-color: currentColor;
}

.numbers-section {
  margin: clamp(22px, 4vw, 48px) var(--page-gutter);
  border: 2px solid var(--pms-2915);
  background: var(--white);
}

.numbers-section h2 {
  margin: 0;
  padding: 18px clamp(24px, 4vw, 42px);
  color: var(--white);
  background: var(--pms-289);
  font-size: clamp(1.45rem, 2.8vw, 2.4rem);
  line-height: 1.05;
  text-align: center;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--pms-2915);
}

.quick-facts article {
  min-height: 190px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.quick-facts article:last-child {
  border-right: 0;
}

.quick-facts article.unmet-demand {
  color: var(--white);
  background: var(--pms-201);
}

.quick-facts strong {
  display: block;
  color: var(--pms-2915);
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1;
}

.quick-facts article.unmet-demand strong,
.quick-facts article.unmet-demand span {
  color: var(--white);
}

.quick-facts span {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.split-section,
.services-section,
.riders-section,
.gallery-section {
  padding: var(--section-block) var(--page-gutter);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

#why.split-section {
  gap: clamp(20px, 3vw, 44px);
  padding-block: clamp(34px, 5vw, 68px);
}

#why .eyebrow {
  color: var(--pms-201);
}

.section-copy p,
.impact-card p,
.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.image-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  align-items: stretch;
}

.image-stack img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
}

.image-stack img:first-child {
  grid-row: 1 / span 2;
  aspect-ratio: 4 / 5;
}

.image-stack img:nth-child(2),
.image-stack img:nth-child(3) {
  aspect-ratio: 4 / 3;
}

#why .image-stack {
  height: clamp(300px, 34vw, 440px);
}

.feature-band {
  padding: var(--section-block) var(--page-gutter);
  color: var(--white);
  background: var(--pms-289);
}

.feature-band h2,
.feature-band h3 {
  color: var(--white);
}

.feature-band .eyebrow {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 900;
}

.feature-intro {
  display: grid;
  gap: 30px;
  margin-bottom: 34px;
}

.investment-plan {
  min-width: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.feature-grid article {
  padding: 24px;
  border: 1px solid rgba(var(--pms-420-rgb), 0.28);
  border-radius: 8px;
  background: rgba(var(--pms-420-rgb), 0.08);
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--pms-289);
  background: var(--pms-109);
  border-radius: 8px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.feature-grid p {
  color: rgba(var(--pms-420-rgb), 0.92);
}

.plan-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(var(--pms-420-rgb), 0.36);
  border-radius: 8px;
  background: rgba(var(--pms-420-rgb), 0.08);
}

.plan-callout h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  text-wrap: balance;
}

.plan-callout .button {
  flex: 0 0 auto;
}

.section-heading {
  min-width: 0;
  max-width: 850px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.service-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-list article > img {
  width: 64px;
  height: 64px;
  justify-self: center;
  align-self: center;
  object-fit: contain;
}

.service-list article > img[alt="Big B logo"] {
  width: 46px;
  height: 46px;
}

.service-list span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--pms-525);
  border-radius: 50%;
  font-weight: 900;
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.impact-section.single {
  grid-template-columns: 1fr;
  padding: 0 var(--page-gutter) var(--section-block);
}

.impact-card {
  min-height: 440px;
  padding: clamp(38px, 6vw, 78px);
  background: var(--soft);
}

.impact-section.single .impact-card {
  min-height: 0;
  border-left: 8px solid var(--pms-201);
}

.impact-card.dark {
  color: var(--white);
  background: var(--pms-2915);
}

.impact-card.dark h2,
.impact-card.dark p {
  color: var(--white);
}

.riders-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.riders-section img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.riders-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.riders-copy li {
  padding: 12px 0;
  color: var(--pms-289);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.riders-impact-link {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 24px auto 0;
}

.gallery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--pms-289);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(var(--pms-289-rgb), 0.08);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transform-origin: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.gallery-link svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.gallery-link:hover,
.gallery-link:focus-visible {
  color: var(--pms-201);
  border-color: rgba(var(--pms-201-rgb), 0.5);
  box-shadow: 0 16px 34px rgba(var(--pms-289-rgb), 0.14);
  animation: link-throb 700ms ease-in-out infinite;
}

.gallery-link:focus-visible {
  outline: 3px solid var(--pms-109);
  outline-offset: 3px;
}

@keyframes link-throb {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 30px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

.photo-grid img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(48px, 7vw, 86px) var(--page-gutter);
  color: var(--white);
  background: var(--pms-289);
}

.cta-section h2 {
  max-width: 880px;
  color: var(--pms-201);
}

.cta-section p {
  max-width: 680px;
  color: rgba(var(--pms-420-rgb), 0.92);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px var(--page-gutter);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-logo {
  width: clamp(150px, 18vw, 220px);
  height: auto;
}

@media (max-width: 960px) {
  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 0;
    padding-inline: 0;
  }

  .brand {
    width: 100%;
    justify-content: center;
    padding-inline: var(--page-gutter);
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-self: auto;
  }

  .nav-links a {
    min-height: 44px;
    padding-inline: 18px;
  }

  html {
    scroll-padding-top: 140px;
  }

  .quick-facts,
  .feature-grid,
  .feature-intro,
  .service-list,
  .impact-section,
  .riders-section,
  .cta-section {
    grid-template-columns: 1fr 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .image-stack {
    max-width: 760px;
  }

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

@media (max-width: 640px) {
  :root {
    --page-gutter: 20px;
    --section-block: 48px;
  }

  html {
    scroll-padding-top: 18px;
  }

  .site-header {
    position: static;
    --site-header-height: auto;
  }

  .brand {
    display: none;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100vw;
    font-size: 0.72rem;
  }

  .nav-links a {
    justify-content: center;
    min-height: 46px;
    min-width: 0;
    padding-inline: 6px;
    line-height: 1.2;
    text-align: center;
  }

  .hero {
    min-height: 74vh;
    padding-top: 72px;
    padding-bottom: 44px;
  }

  .hero::after {
    background: rgba(var(--pms-289-rgb), 0.72);
  }

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

  .hero .eyebrow {
    max-width: 28ch;
    font-size: 0.72rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 14vw, 3.4rem);
    line-height: 0.96;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7.4vw, 1.95rem);
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .lede {
    max-width: 30ch;
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions,
  .plan-callout {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section-copy,
  .section-heading,
  .riders-copy,
  .impact-card,
  .feature-intro,
  .investment-plan,
  .cta-section > div {
    width: 100%;
    max-width: calc(100vw - (var(--page-gutter) * 2));
    min-width: 0;
  }

  .riders-impact-link {
    width: fit-content;
  }

  .numbers-section {
    margin-block: 28px;
  }

  .numbers-section h2 {
    padding: 16px;
  }

  .quick-facts,
  .feature-grid,
  .service-list,
  .impact-section,
  .riders-section,
  .cta-section,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts article:last-child {
    border-bottom: 0;
  }

  .image-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .image-stack img:first-child {
    grid-row: auto;
  }

  .image-stack img,
  .riders-section img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  #why .image-stack {
    height: auto;
  }

  .service-list article {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .plan-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .service-list span {
    width: 46px;
    height: 46px;
  }

  .impact-card {
    min-height: 0;
  }

  .photo-grid img:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-link {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-link:hover,
  .gallery-link:focus-visible {
    animation: none;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: min(230px, 76vw);
  }

  .quick-facts strong {
    font-size: clamp(2.25rem, 16vw, 3.4rem);
  }

  .photo-grid {
    gap: 8px;
  }

  .photo-grid img {
    min-height: 180px;
  }
}
