:root {
  --black: #000;
  --charcoal: #222;
  --text: #202020;
  --heading: #404040;
  --pale: #f3f3f3;
  --shell: min(1100px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #000;
  background: #fff;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.content-shell {
  width: var(--shell);
  margin-inline: auto;
}

.content-shell.narrow {
  max-width: 940px;
}

.legacy-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  background: rgba(0, 0, 0, 0.42);
  transition: height 220ms ease, background 220ms ease;
}

.legacy-header.is-scrolled,
.legacy-header.menu-open {
  height: 80px;
  background: #000;
}

.header-shell {
  position: relative;
  display: flex;
  width: calc(100% - 90px);
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  margin-inline: auto;
}

.legacy-logo {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 135px;
  height: 88px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  transition: width 220ms ease, height 220ms ease;
}

.legacy-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.is-scrolled .legacy-logo {
  width: 105px;
  height: 68px;
}

.legacy-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.legacy-nav a {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 80px;
  text-decoration: none;
  text-transform: uppercase;
}

.legacy-nav a::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 1px;
  background: #fff;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.legacy-nav a:hover::after,
.legacy-nav a.current::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-menu-toggle {
  display: none;
}

.legacy-hero {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: #f3f3f3;
}

.hero-motion {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #f3f3f3;
}

.motion-tile {
  position: absolute;
  z-index: 1;
  width: 30%;
  height: 30%;
  margin: 0;
  overflow: hidden;
  background: #ddd;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: top, left, width, height, opacity, transform;
  transition:
    top 760ms cubic-bezier(0.33, 1, 0.68, 1),
    left 760ms cubic-bezier(0.33, 1, 0.68, 1),
    width 760ms cubic-bezier(0.33, 1, 0.68, 1),
    height 760ms cubic-bezier(0.33, 1, 0.68, 1),
    opacity 420ms ease,
    transform 760ms cubic-bezier(0.33, 1, 0.68, 1),
    border-width 500ms ease;
}

.motion-tile img {
  width: 100%;
  height: 100%;
  filter: saturate(0.92) contrast(1.04);
  object-fit: cover;
  transform: scale(1.045);
  animation: tileCameraMove 5s ease-in-out infinite alternate;
}

.motion-tile:nth-child(even) img {
  animation-delay: -2.5s;
}

.hero-title-card {
  position: absolute;
  z-index: 4;
  top: 17%;
  left: 33.5%;
  display: flex;
  width: 33%;
  height: 68%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 12px solid #e5e5e5;
  color: #1f1f1f;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translate3d(0, 50px, 0) scale(0.82);
  transition: opacity 520ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title-card p {
  margin: 0;
  font-family: "Radley", Georgia, serif;
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}

.hero-title-card span {
  width: 84px;
  height: 3px;
  margin-top: 43px;
  background: #222;
}

/* Opening collage */
.scene-0 .motion-tile-1 { top: 0; left: 0; width: 50%; height: 27%; opacity: 1; }
.scene-0 .motion-tile-2 { top: 0; left: 50%; width: 50%; height: 62%; opacity: 1; }
.scene-0 .motion-tile-3 { top: 27%; left: 0; width: 43%; height: 73%; opacity: 1; }
.scene-0 .motion-tile-4 { top: 27%; left: 43%; width: 7%; height: 73%; opacity: 1; }
.scene-0 .motion-tile-5 { top: 62%; left: 50%; width: 50%; height: 38%; opacity: 1; }

/* Every visible panel changes size and direction */
.scene-1 .motion-tile-1 { top: 0; left: 0; width: 34%; height: 43%; opacity: 1; }
.scene-1 .motion-tile-2 { top: 0; left: 34%; width: 33%; height: 58%; opacity: 1; }
.scene-1 .motion-tile-3 { top: 0; left: 67%; width: 33%; height: 77%; opacity: 1; }
.scene-1 .motion-tile-4 { top: 43%; left: 0; width: 34%; height: 57%; opacity: 1; }
.scene-1 .motion-tile-5 { top: 58%; left: 34%; width: 33%; height: 42%; opacity: 1; }
.scene-1 .motion-tile-6 { top: 77%; left: 67%; width: 33%; height: 23%; opacity: 1; }

/* Central photo punches forward in a white frame */
.scene-2 .motion-tile-1 { top: 0; left: -9%; width: 31%; height: 78%; opacity: 1; }
.scene-2 .motion-tile-2 {
  z-index: 3;
  top: 7%;
  left: 21%;
  width: 60%;
  height: 86%;
  border: 18px solid #fff;
  opacity: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.scene-2 .motion-tile-3 { top: -4%; left: 81%; width: 28%; height: 65%; opacity: 1; }
.scene-2 .motion-tile-4 { top: 78%; left: -4%; width: 31%; height: 30%; opacity: 1; }
.scene-2 .motion-tile-5 { top: 61%; left: 81%; width: 25%; height: 47%; opacity: 1; }
.scene-2 .motion-tile-6 { top: 87%; left: 26%; width: 55%; height: 22%; opacity: 1; }

/* Panels clear the stage */
.scene-3 .motion-tile-1 { top: -38%; left: -20%; width: 34%; height: 38%; opacity: 0; }
.scene-3 .motion-tile-2 { top: -45%; left: 34%; width: 34%; height: 45%; opacity: 0; transform: scale(0.72); }
.scene-3 .motion-tile-3 { top: -35%; left: 86%; width: 27%; height: 35%; opacity: 0; }
.scene-3 .motion-tile-4 { top: 100%; left: -15%; width: 34%; height: 35%; opacity: 0; }
.scene-3 .motion-tile-5 { top: 100%; left: 82%; width: 30%; height: 38%; opacity: 0; }
.scene-3 .motion-tile-6 { top: 100%; left: 34%; width: 34%; height: 35%; opacity: 0; }

/* New panels enter from all four edges */
.scene-4 .motion-tile-1 { top: -12%; left: 34%; width: 34%; height: 26%; opacity: 1; }
.scene-4 .motion-tile-4 { top: 79%; left: -2%; width: 35%; height: 34%; opacity: 1; }
.scene-4 .motion-tile-5 { top: 76%; left: 68%; width: 34%; height: 37%; opacity: 1; }
.scene-4 .motion-tile-7 { top: 20%; left: -22%; width: 28%; height: 45%; opacity: 1; }
.scene-4 .motion-tile-8 { top: 18%; left: 96%; width: 28%; height: 48%; opacity: 1; }

/* The montage rapidly assembles */
.scene-5 .motion-tile-1 { top: 0; left: 0; width: 34%; height: 18%; opacity: 1; }
.scene-5 .motion-tile-2 { top: 0; left: 34%; width: 33%; height: 25%; opacity: 1; }
.scene-5 .motion-tile-3 { top: 0; left: 67%; width: 33%; height: 29%; opacity: 1; }
.scene-5 .motion-tile-4 { top: 18%; left: 0; width: 34%; height: 63%; opacity: 1; }
.scene-5 .motion-tile-5 { top: 25%; left: 34%; width: 33%; height: 58%; opacity: 1; }
.scene-5 .motion-tile-6 { top: 29%; left: 67%; width: 33%; height: 54%; opacity: 1; }
.scene-5 .motion-tile-7 { top: 81%; left: 0; width: 34%; height: 19%; opacity: 1; }
.scene-5 .motion-tile-8 { top: 83%; left: 34%; width: 33%; height: 17%; opacity: 1; }
.scene-5 .motion-tile-9 { top: 83%; left: 67%; width: 33%; height: 17%; opacity: 1; }

/* Final title composition */
.scene-6 .motion-tile-1,
.scene-7 .motion-tile-1 { top: 0; left: 0; width: 34%; height: 18%; opacity: 1; }
.scene-6 .motion-tile-2,
.scene-7 .motion-tile-2 { top: 0; left: 34%; width: 33%; height: 18%; opacity: 1; }
.scene-6 .motion-tile-3,
.scene-7 .motion-tile-3 { top: 0; left: 67%; width: 33%; height: 29%; opacity: 1; }
.scene-6 .motion-tile-4,
.scene-7 .motion-tile-4 { top: 18%; left: 0; width: 34%; height: 63%; opacity: 1; }
.scene-6 .motion-tile-5,
.scene-7 .motion-tile-5 { top: 29%; left: 67%; width: 33%; height: 54%; opacity: 1; }
.scene-6 .motion-tile-6,
.scene-7 .motion-tile-6 { top: 81%; left: 0; width: 34%; height: 19%; opacity: 1; }
.scene-6 .motion-tile-7,
.scene-7 .motion-tile-7 { top: 83%; left: 34%; width: 33%; height: 17%; opacity: 1; }
.scene-6 .motion-tile-8,
.scene-7 .motion-tile-8 { top: 83%; left: 67%; width: 33%; height: 17%; opacity: 1; }
.scene-6 .hero-title-card,
.scene-7 .hero-title-card { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.scene-7 .motion-tile img { transform: scale(1.11); }

@keyframes tileCameraMove {
  from { transform: scale(1.045) translate3d(-0.8%, 0, 0); }
  to { transform: scale(1.11) translate3d(0.8%, -0.7%, 0); }
}

.intro-section {
  padding: 74px 0 43px;
  text-align: center;
}

.small-title {
  margin: 0 0 5px;
  color: #454545;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 23px;
  text-transform: uppercase;
}

.small-title.light {
  color: #fff;
}

.intro-section h1,
.section-title,
.trip-price {
  margin: 0;
  color: var(--heading);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 40px;
  text-transform: uppercase;
}

.section-title.light {
  color: #fff;
}

.radley-copy {
  font-family: "Radley", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
}

.intro-copy {
  max-width: 870px;
  margin: 25px auto 59px;
}

.species-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 58px;
}

.species-row article {
  min-width: 0;
}

.species-row img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.species-row h2,
.guide-grid h3,
.sponsor-more,
.legacy-footer h2 {
  margin: 17px 0 0;
  color: var(--heading);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 27px;
  text-transform: uppercase;
}

.sunset-divider {
  height: 220px;
  background: url("assets/images/sunset-bay.webp") center 56% / cover no-repeat;
}

.marina-photo {
  height: 853px;
  margin: 0;
  overflow: hidden;
}

.marina-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-spacer {
  height: 150px;
  background: #050505;
}

.single-slide {
  position: relative;
  height: 385px;
  overflow: hidden;
  background: #fff;
}

.single-slide-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
  transition: transform 720ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.single-slide-track img {
  width: 20vw;
  height: 100%;
  flex: 0 0 20vw;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  color: #777;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 28px;
  place-items: center;
  transform: translateY(-50%);
}

.carousel-arrow.previous {
  left: 28px;
}

.carousel-arrow.next {
  right: 28px;
}

.guides-section {
  padding: 72px 0 61px;
  background: #fff;
  text-align: center;
}

.center-copy {
  max-width: 760px;
  margin: 22px auto 24px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
  gap: 44px;
}

.guide-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.guide-grid h3 {
  margin-top: 18px;
}

.guide-grid p {
  margin: 2px 0 0;
  color: #656565;
}

.legacy-cta {
  padding: 39px 0;
  color: #fff;
  background: #000;
}

.cta-inner {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  gap: 35px;
}

.cta-inner p {
  margin: 0;
  font-family: "Radley", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
}

.cta-inner a,
.footer-call {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.cta-inner a:hover,
.footer-call:hover {
  color: #000;
  background: #fff;
}

.testimonials-section {
  min-height: 650px;
  padding: 101px 0 70px;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.27)), url("assets/images/night-surf.webp") center / cover no-repeat;
  text-align: center;
}

.testimonials-inner > .small-title {
  max-width: 850px;
  margin: 0 auto 7px;
}

.testimonial-stage {
  position: relative;
  min-height: 325px;
  margin-top: 34px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.testimonial.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial blockquote {
  max-width: 890px;
  margin: 0 auto;
  font-family: "Radley", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
}

.testimonial figcaption {
  margin-top: 39px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  place-items: center;
}

.testimonial-controls button:hover {
  color: #000;
  background: #fff;
}

.trips-section {
  padding: 75px 0 62px;
  background: #f4f4f4;
  text-align: center;
}

.trip-price {
  margin-bottom: 72px;
}

.about-copy {
  margin-top: 24px;
}

.about-copy p {
  margin: 0 0 25px;
}

.about-copy a {
  color: #404040;
}

.moon-divider {
  height: 245px;
  background: url("assets/images/moonlit-jetty.webp") center / cover no-repeat;
}

.legacy-gallery {
  overflow: hidden;
  background: #fff;
}

.gallery-track {
  display: grid;
  height: 700px;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-columns: 20vw;
  grid-auto-flow: column;
  width: max-content;
  gap: 3px;
  will-change: transform;
  transition: transform 720ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-cta {
  padding-block: 50px;
}

.contact-section {
  padding: 70px 0 85px;
  background: #ededed;
}

.legacy-form {
  width: min(900px, 100%);
  padding: 43px 51px 50px;
  border: 10px solid #737373;
  color: #fff;
  background: #aaa;
}

.legacy-form label {
  display: block;
  margin: 0 0 6px;
  color: #111;
  font-weight: 500;
}

.legacy-form input,
.legacy-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  margin: 0 0 19px;
  color: #222;
  background: #fff;
}

.legacy-form input {
  height: 40px;
  padding: 0 12px;
}

.legacy-form textarea {
  min-height: 162px;
  padding: 12px;
  resize: vertical;
}

.legacy-form button {
  min-width: 92px;
  min-height: 42px;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.legacy-form button:hover {
  color: #777;
  background: #fff;
}

.form-status {
  display: inline;
  margin-left: 14px;
  font-size: 13px;
}

.sponsors-section {
  padding: 75px 0 72px;
  color: #fff;
  background: #222;
  text-align: center;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 45px;
  gap: 34px 48px;
}

.sponsor-grid img {
  width: 100%;
  height: 135px;
  padding: 12px;
  object-fit: contain;
}

.sponsor-more {
  margin-top: 46px;
  color: #fff;
}

.sponsor-more a {
  text-decoration: none;
}

.legacy-footer {
  color: #cecece;
  background: #000;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 76px 0 64px;
  gap: 70px;
}

.legacy-footer h2 {
  margin: 0 0 28px;
  color: #fff;
}

.legacy-footer p {
  margin: 0 0 18px;
  color: #cecece;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.legacy-footer a {
  color: #fff;
}

.footer-logo {
  width: 170px;
  height: 111px;
  margin-bottom: 17px;
  object-fit: contain;
}

.facebook-link {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  margin-top: 20px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  place-items: center;
}

.contact-line {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
}

.footer-call {
  margin-top: 11px;
}

.footer-bottom {
  padding: 22px 20px;
  color: #777;
  background: #222;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
}

.footer-bottom a {
  color: #999;
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  z-index: 95;
  right: 25px;
  bottom: 25px;
  display: grid;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 24px;
  opacity: 0;
  place-items: center;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.privacy-page {
  min-height: 100vh;
  background: #f4f4f4;
}

.privacy-header {
  position: static;
  height: 80px;
  background: #000;
}

.privacy-main {
  width: min(780px, calc(100% - 40px));
  padding: 70px 0 110px;
  margin: auto;
}

.privacy-main h1 {
  color: #404040;
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 40px;
  text-transform: uppercase;
}

.privacy-main h2 {
  margin-top: 38px;
  font-family: "Radley", Georgia, serif;
  font-weight: 400;
}

@media (max-width: 980px) {
  .legacy-nav {
    gap: 23px;
  }

  .species-row {
    gap: 25px;
  }

}

@media (max-width: 768px) {
  :root {
    --shell: min(100% - 30px, 600px);
  }

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

  .legacy-header,
  .legacy-header.is-scrolled {
    height: 98px;
    background: #000;
  }

  .header-shell {
    width: 100%;
    justify-content: center;
  }

  .legacy-logo,
  .is-scrolled .legacy-logo {
    top: 9px;
    left: 50%;
    width: 119px;
    height: 78px;
    transform: translateX(-50%);
  }

  .mobile-menu-toggle {
    position: absolute;
    z-index: 102;
    top: 34px;
    left: 14px;
    display: grid;
    width: 28px;
    height: 30px;
    padding: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
    place-content: center;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 12px;
    height: 2px;
    margin: 1px 0;
    background: #fff;
  }

  .legacy-nav {
    position: fixed;
    z-index: 101;
    top: 98px;
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: #000;
    opacity: 0;
    transition: max-height 220ms ease, opacity 220ms ease;
  }

  .legacy-nav.open {
    max-height: 440px;
    opacity: 1;
  }

  .legacy-nav a {
    display: block;
    padding: 11px 25px;
    border-top: 1px solid #282828;
    font-size: 12px;
    line-height: 24px;
  }

  .legacy-nav a::after {
    display: none;
  }

  .legacy-hero {
    height: 290px;
    margin-top: 98px;
    background: #fff;
  }

  .hero-motion {
    display: none;
  }

  .intro-section {
    padding-top: 16px;
  }

  .intro-section h1,
  .section-title,
  .trip-price {
    font-size: 27px;
    line-height: 38px;
  }

  .intro-copy {
    margin-top: 24px;
  }

  .species-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .species-row img {
    width: 231px;
    margin-inline: auto;
  }

  .sunset-divider {
    height: 170px;
  }

  .marina-photo {
    height: auto;
  }

  .marina-photo img {
    height: auto;
    aspect-ratio: 1280 / 853;
  }

  .dark-spacer {
    height: 90px;
  }

  .single-slide {
    height: 310px;
  }

  .single-slide-track {
    left: 0;
  }

  .single-slide-track img {
    width: 50vw;
    flex-basis: 50vw;
  }

  .guide-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .guide-grid img {
    max-width: 528px;
    margin-inline: auto;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-inner a {
    justify-self: center;
  }

  .testimonials-section {
    min-height: 740px;
    padding-top: 75px;
  }

  .testimonial-stage {
    min-height: 430px;
  }

  .testimonial blockquote {
    font-size: 18px;
    line-height: 28px;
  }

  .trips-section {
    padding-top: 64px;
  }

  .trip-price {
    margin-bottom: 56px;
  }

  .moon-divider {
    height: 175px;
  }

  .gallery-track {
    height: 480px;
    grid-template-rows: repeat(2, 240px);
    grid-auto-columns: 50vw;
  }

  .gallery-track img {
    display: block;
    height: 100%;
  }

  .legacy-form {
    padding: 30px 25px 34px;
    border-width: 8px;
  }

  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .sponsor-grid img {
    height: 115px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 420px) {
  .legacy-hero {
    height: 290px;
  }

  .intro-section {
    padding-top: 11px;
  }

  .intro-copy {
    font-size: 20px;
    line-height: 29px;
  }

  .single-slide {
    height: 285px;
  }

  .carousel-arrow {
    display: none;
  }

  .testimonial-stage {
    min-height: 530px;
  }

  .gallery-track img {
    height: 100%;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
