:root {
  --ink: #07111c;
  --muted: rgba(7, 17, 28, 0.66);
  --navy: #031f3d;
  --navy-2: #06172b;
  --lake: #087ea4;
  --aqua: #64d6df;
  --aqua-deep: #1c93aa;
  --sand: #eee4d3;
  --paper: #f8fbfb;
  --white: #ffffff;
  --line: rgba(7, 17, 28, 0.16);
  --line-light: rgba(255, 255, 255, 0.28);
  --display: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --edge: 48px;
  --max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 82% 18%, rgba(100, 214, 223, 0.16), transparent 28%),
    radial-gradient(circle at 10% 82%, rgba(238, 228, 211, 0.58), transparent 30%),
    linear-gradient(90deg, rgba(3, 31, 61, 0.035) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--paper);
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

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

section[id] {
  scroll-margin-top: 108px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 86px;
  padding: 12px var(--edge);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header::after {
  position: absolute;
  left: var(--edge);
  right: var(--edge);
  bottom: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.32);
}

.site-header.is-scrolled {
  min-height: 72px;
  color: var(--ink);
  background: rgba(248, 251, 251, 0.94);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled::after {
  background: var(--line);
}

.brand {
  display: inline-flex;
  width: 156px;
  min-width: 156px;
  padding: 6px 0;
}

.brand img {
  width: 156px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.16));
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.header-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
  color: currentColor;
  font-size: 13px;
  font-weight: 750;
}

.header-nav a {
  opacity: 0.82;
  transition: opacity 160ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.site-header.is-scrolled .phone-link {
  border-color: var(--line);
}

.book-link,
.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid currentColor;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.book-link {
  min-width: 92px;
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.site-header.is-scrolled .book-link {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.action-primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.action-secondary {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.book-link:hover,
.book-link:focus-visible,
.action:hover,
.action:focus-visible {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-2);
  isolation: isolate;
}

.hero-video,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(1.04) contrast(1.04);
}

.hero-wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 16, 31, 0.76) 0%, rgba(1, 16, 31, 0.50) 36%, rgba(1, 16, 31, 0.10) 72%),
    linear-gradient(0deg, rgba(1, 16, 31, 0.70) 0%, rgba(1, 16, 31, 0.0) 48%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 360px);
  justify-content: space-between;
  gap: 80px;
  min-height: calc(100svh - 112px);
  width: min(var(--max), calc(100% - 2 * var(--edge)));
  margin: 0 auto;
  padding-top: 158px;
  padding-bottom: 156px;
}

.hero-copy {
  align-self: end;
}

.overline {
  margin-bottom: 18px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 850;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 106px;
  line-height: 0.9;
}

h2 {
  font-size: 72px;
  line-height: 0.94;
}

.hero-copy p:not(.overline) {
  max-width: 560px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero .action-primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero-rail {
  align-self: center;
  display: grid;
  border-top: 1px solid var(--line-light);
}

.hero-rail a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-family: var(--display);
  line-height: 1;
  transition: color 160ms ease, padding-left 160ms ease;
}

.hero-rail a:hover,
.hero-rail a:focus-visible {
  padding-left: 8px;
  color: var(--white);
}

.hero-rail span {
  color: #8ee5ed;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 850;
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
}

.scroll-cue {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 850;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 52px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.scroll-cue i::after {
  position: absolute;
  top: -18px;
  left: 0;
  width: 1px;
  height: 24px;
  content: "";
  background: var(--aqua);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  28% {
    opacity: 1;
  }
  100% {
    transform: translateY(76px);
    opacity: 0;
  }
}

.lakefront-index {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  width: min(var(--max), calc(100% - 2 * var(--edge)));
  margin: 0 auto;
  padding: 70px 0 88px;
}

.lakefront-index::after,
.faq::after {
  position: absolute;
  right: 0;
  top: 36px;
  width: 280px;
  height: 280px;
  content: "";
  background: url("../icons/logo-wave-icon.png") center / contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}

.index-intro {
  max-width: 410px;
}

.index-intro p:not(.overline) {
  color: var(--muted);
}

.route-board {
  display: grid;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.route-board a,
.route-board div {
  display: grid;
  grid-template-columns: 52px minmax(180px, 0.78fr) 1fr;
  gap: 24px;
  align-items: baseline;
  min-height: 92px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.route-board span {
  color: var(--aqua-deep);
  font-size: 12px;
  font-weight: 850;
}

.route-board strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.route-board em {
  color: var(--muted);
  font-style: normal;
  font-size: 15px;
}

.section-shell {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  width: min(var(--max), calc(100% - 2 * var(--edge)));
  margin: 0 auto;
  padding: 118px 0;
}

.section-number {
  color: var(--lake);
  font-size: 12px;
  font-weight: 850;
}

.ride {
  align-items: center;
}

.ride::before,
.pricing::before {
  position: absolute;
  right: 0;
  top: 80px;
  width: 340px;
  height: 340px;
  content: "";
  background: url("../icons/logo-wave-icon.png") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.ride-copy p:not(.overline),
.booking-notes p,
.location-panel p:not(.overline),
.faq-list p {
  color: var(--muted);
}

.ride-copy p:not(.overline) {
  max-width: 520px;
  margin-top: 28px;
  font-size: 18px;
}

.ride-media {
  position: relative;
  min-height: 700px;
}

.ride-main {
  width: 76%;
  height: 700px;
  margin-left: auto;
  object-fit: cover;
  object-position: 50% 50%;
}

.ride-inset {
  position: absolute;
  left: 0;
  bottom: 46px;
  width: 54%;
  height: 270px;
  object-fit: cover;
  border: 10px solid var(--paper);
}

.film {
  position: relative;
  overflow: hidden;
  padding: 122px var(--edge);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(100, 214, 223, 0.13), transparent 24%),
    linear-gradient(180deg, rgba(3, 31, 61, 0.96), rgba(6, 23, 43, 1)),
    var(--navy);
}

.film::before {
  position: absolute;
  left: -90px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  content: "";
  background: url("../icons/logo-wave-icon.png") center / contain no-repeat;
  opacity: 0.035;
}

.film-inner {
  display: grid;
  grid-template-columns: 72px minmax(280px, 0.47fr) minmax(0, 1.53fr);
  gap: 54px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  align-items: end;
}

.film h2 {
  color: var(--white);
}

.film-copy {
  padding-bottom: 30px;
}

.film-frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.film-frame::before {
  position: absolute;
  inset: 28px -18px -18px 28px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(52, 199, 215, 0.42);
}

.film-frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pricing {
  grid-template-columns: 72px 0.78fr 1.22fr;
  align-items: start;
}

.pricing-head {
  max-width: 430px;
}

.pricing-board {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}

.price span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.price strong {
  display: block;
  margin-top: 12px;
  color: var(--lake);
  font-family: var(--display);
  font-size: 118px;
  font-weight: 500;
  line-height: 0.84;
}

.price p {
  margin-top: 12px;
  color: var(--muted);
}

.booking-notes {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 28px;
}

.rider-notes {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.12);
}

.rider-notes div {
  position: relative;
  min-height: 188px;
  padding: 30px 24px 26px;
  border-right: 1px solid var(--line);
}

.rider-notes div:last-child {
  border-right: 0;
}

.rider-notes div::before {
  display: block;
  width: 26px;
  height: 2px;
  margin-bottom: 26px;
  content: "";
  background: var(--aqua-deep);
}

.rider-notes strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.16;
}

.rider-notes p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.location {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  padding: 0 var(--edge) 96px;
  color: var(--white);
  background: var(--navy-2);
  overflow: hidden;
}

.location > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.location::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 23, 43, 0.72), rgba(3, 23, 43, 0.20) 68%),
    linear-gradient(0deg, rgba(3, 23, 43, 0.74), rgba(3, 23, 43, 0.05) 66%);
}

.location-panel {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  margin-left: calc((100% - min(var(--max), 100%)) / 2);
}

.location h2 {
  color: var(--white);
}

.location-panel p:not(.overline) {
  max-width: 540px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.address-lines {
  display: grid;
  gap: 6px;
  margin: 34px 0 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.address-lines a {
  color: var(--white);
  font-size: 20px;
  font-weight: 850;
}

.address-lines span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.location .action-primary,
.final-cta .action-primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.faq {
  position: relative;
  grid-template-columns: 72px minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.faq-head {
  position: relative;
  max-width: 420px;
}

.faq-label {
  margin-top: 30px;
  color: rgba(7, 17, 28, 0.06);
  font-family: var(--display);
  font-size: 124px;
  line-height: 0.8;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  display: block;
  padding: 24px 56px 24px 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary:focus {
  outline: none;
}

summary:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 4px;
}

summary::before,
summary::after {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 19px;
  height: 2px;
  content: "";
  background: var(--lake);
}

summary::after {
  transform: rotate(90deg);
}

details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list p {
  max-width: 760px;
  padding: 0 56px 28px 0;
}

.final-cta {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 92px var(--edge);
  color: var(--white);
  background: var(--navy-2);
  overflow: hidden;
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 23, 43, 0.86), rgba(3, 23, 43, 0.32) 60%, rgba(3, 23, 43, 0.08)),
    linear-gradient(0deg, rgba(3, 23, 43, 0.42), rgba(3, 23, 43, 0));
}

.final-copy {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  margin-left: calc((100% - min(var(--max), 100%)) / 2);
}

.final-copy h2 {
  margin-bottom: 34px;
  color: var(--white);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: start;
  padding: 40px var(--edge) 28px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 84% -24%, rgba(100, 214, 223, 0.18), transparent 28%),
    linear-gradient(135deg, #06172b 0%, #031f3d 44%, #041326 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.footer-main {
  display: grid;
  gap: 14px;
}

.footer-logo {
  width: 124px;
}

.footer-logo img {
  width: 124px;
  height: auto;
}

.site-footer p {
  max-width: 320px;
}

.footer-contact {
  display: grid;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.52);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.footer-fine {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --edge: 32px;
  }

  h1 {
    font-size: 86px;
  }

  h2 {
    font-size: 58px;
  }

  .header-nav {
    gap: 18px;
  }

  .hero-grid,
  .section-shell,
  .film-inner {
    gap: 34px;
  }

  .route-board a,
  .route-board div {
    grid-template-columns: 44px 0.8fr 1fr;
  }

  .rider-notes {
    grid-template-columns: repeat(3, 1fr);
  }

  .rider-notes div:nth-child(3n) {
    border-right: 0;
  }

  .rider-notes div:nth-child(5) {
    border-right: 0;
  }
}

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

  .header-nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

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

  .hero-rail {
    align-self: end;
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-rail a {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 92px;
    padding-right: 18px;
  }

  .lakefront-index,
  .section-shell,
  .film-inner,
  .pricing,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-number {
    display: none;
  }

  .ride-media {
    min-height: 580px;
  }

  .ride-main {
    width: 84%;
    height: 580px;
  }

  .pricing-board {
    grid-template-columns: 1fr;
  }

  .rider-notes {
    grid-column: auto;
  }

  .film-copy {
    padding-bottom: 0;
  }

  .film-frame::before {
    inset: 18px -12px -12px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --edge: 20px;
  }

  body {
    font-size: 16px;
  }

  section[id] {
    scroll-margin-top: 86px;
  }

  .site-header {
    min-height: 72px;
    padding: 10px 14px;
    color: var(--ink);
    background: rgba(248, 251, 251, 0.94);
    backdrop-filter: blur(14px);
  }

  .site-header::after {
    left: 14px;
    right: 14px;
    background: var(--line);
  }

  .brand,
  .brand img {
    width: 118px;
    min-width: 118px;
  }

  .brand img {
    filter: none;
  }

  .phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--line);
    padding: 0 12px;
    font-size: 0;
  }

  .phone-link::before {
    content: "Call";
    font-size: 13px;
  }

  .book-link {
    min-height: 42px;
    min-width: 78px;
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
    padding: 10px 14px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-video {
    object-position: 58% 50%;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(1, 16, 31, 0.70), rgba(1, 16, 31, 0.25)),
      linear-gradient(0deg, rgba(1, 16, 31, 0.82), rgba(1, 16, 31, 0.08) 72%);
  }

  .hero-grid {
    min-height: calc(100svh - 164px);
    width: calc(100% - 2 * var(--edge));
    padding-top: 114px;
    padding-bottom: 34px;
  }

  .hero-copy {
    align-self: center;
    transform: translateY(14px);
  }

  h1 {
    font-size: 55px;
    line-height: 0.96;
  }

  h2 {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-copy p:not(.overline) {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 26px;
  }

  .action {
    width: 100%;
  }

  .hero-rail {
    display: none;
  }

  .hero-bottom {
    bottom: 22px;
  }

  .lakefront-index {
    width: calc(100% - 2 * var(--edge));
    gap: 34px;
    padding: 58px 0 70px;
  }

  .route-board a,
  .route-board div {
    grid-template-columns: 36px 1fr;
    gap: 12px 18px;
    min-height: 0;
    padding: 22px 0;
  }

  .route-board em {
    grid-column: 2;
  }

  .section-shell {
    width: calc(100% - 2 * var(--edge));
    padding: 76px 0;
  }

  .ride-media {
    min-height: 0;
  }

  .ride-main {
    width: 100%;
    height: 520px;
  }

  .ride-inset {
    position: relative;
    width: 82%;
    height: 190px;
    margin-top: -70px;
    border-width: 8px;
  }

  .film {
    padding: 76px var(--edge);
  }

  .film-frame {
    padding: 8px;
  }

  .film-frame::before {
    display: none;
  }

  .film-frame video {
    aspect-ratio: 4 / 5;
  }

  .price strong {
    font-size: 88px;
  }

  .rider-notes {
    grid-template-columns: 1fr;
    margin-top: 24px;
    border-top: 0;
    background: transparent;
  }

  .rider-notes div,
  .rider-notes div:nth-child(3n) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rider-notes div:last-child {
    border-bottom: 0;
  }

  .rider-notes div::before {
    width: 22px;
    margin-bottom: 16px;
  }

  .site-footer {
    padding: 48px var(--edge) 34px;
  }

  .footer-logo,
  .footer-logo img {
    width: 140px;
  }

  .faq-label {
    font-size: 80px;
  }

  .location {
    min-height: 760px;
    padding: 0 var(--edge) 70px;
  }

  .location-panel,
  .final-copy {
    margin-left: 0;
  }

  .address-lines a {
    font-size: 18px;
  }

  summary {
    padding: 23px 46px 23px 0;
    font-size: 20px;
  }

  .faq-list p {
    padding-right: 0;
  }

  .final-cta {
    min-height: 680px;
    padding: 70px var(--edge);
  }

  .final-cta img {
    object-position: 50% 50%;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 49px;
  }

  .header-actions {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
