:root {
  --ink: #071722;
  --ink-soft: #0c2637;
  --paper: #f6f7f3;
  --white: #ffffff;
  --orange: #ff7817;
  --orange-dark: #d95300;
  --lake: #00a8d8;
  --lake-dark: #006c90;
  --green: #9bc53d;
  --red: #ef3e33;
  --snow: #dff5ff;
  --muted: #5f6d72;
  --line: rgba(7, 23, 34, 0.14);
  --shadow: 0 24px 70px rgba(2, 17, 27, 0.16);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-family: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(5.2rem, 10vw, 9rem) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--lake);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 86px;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(7, 23, 34, 0.86), rgba(7, 23, 34, 0));
  transition: height 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 74px;
  background: rgba(7, 23, 34, 0.97);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  width: 206px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.15rem);
  font-size: 0.91rem;
  font-weight: 750;
}

.primary-nav > a {
  white-space: nowrap;
}

.primary-nav > .nav-ebikes {
  color: var(--orange);
  font-weight: 900;
}

.primary-nav > .nav-slingshots {
  color: #77d9f6;
  font-weight: 900;
}

.hero-slingshot-link {
  display: inline-block;
  margin: 1.25rem 0 0;
  color: #77d9f6;
  font-size: 1rem;
  font-weight: 850;
  text-underline-offset: 0.3em;
}

.hero-slingshot-link:hover {
  text-decoration: underline;
}

.primary-nav > a:not(.button) {
  position: relative;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.nav-phone {
  color: #bfeeff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 43px;
  padding: 0.68rem 1.1rem;
}

.button--large {
  min-height: 58px;
  padding: 1rem 1.65rem;
}

.button--orange {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 12px 34px rgba(255, 120, 23, 0.25);
}

.button--orange:hover {
  background: #ff8b37;
  box-shadow: 0 14px 38px rgba(255, 120, 23, 0.36);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(7, 23, 34, 0.19);
}

.button--dark:hover {
  background: var(--ink-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: 155px 0 90px;
  color: var(--white);
  background: var(--ink);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: 580px;
  height: 580px;
  top: -260px;
  left: 36%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.hero::after {
  right: -100px;
  bottom: 50px;
  width: 260px;
  height: 14px;
  background: var(--orange);
  transform: rotate(-12deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.8rem);
}

.hero-ebike-promo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--ink);
  border-radius: var(--radius-md);
  background: var(--orange);
}

.hero-ebike-promo__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 800;
}

.hero-ebike-promo h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-ebike-promo__locations {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-ebike-promo .button {
  flex-shrink: 0;
  text-align: center;
  white-space: normal;
}

@media (max-width: 780px) {
  .hero-ebike-promo {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .hero-ebike-promo .button {
    width: 100%;
  }
}

.eyebrow,
.kicker {
  margin-bottom: 1.2rem;
  color: var(--orange-dark);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #c7f0ff;
}

.eyebrow-mark {
  width: 28px;
  height: 4px;
  background: var(--orange);
  transform: skewX(-28deg);
}

.kicker--light {
  color: #77d9f6;
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 1.45rem;
  font-size: clamp(4rem, 8.3vw, 7.3rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 2rem;
  color: #c8d6dc;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.trust-row {
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.4rem 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.trust-row li {
  display: flex;
  flex-direction: column;
}

.trust-row strong {
  color: var(--white);
  font-size: 0.93rem;
}

.trust-row span {
  color: #91a6af;
  font-size: 0.77rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.94;
  border-radius: 16px 90px 16px 16px;
  box-shadow: var(--shadow);
  clip-path: polygon(0 5%, 100% 0, 94% 100%, 6% 94%);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(160deg, transparent 45%, rgba(7, 23, 34, 0.65));
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero-note {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 225px;
  flex-direction: column;
  padding: 1rem 1.2rem;
  border-radius: 15px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.hero-note span {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  margin-top: 0.15rem;
  font-size: 1rem;
}

.hero-note--orange {
  top: 12%;
  right: -3%;
  color: var(--ink);
  background: var(--orange);
}

.hero-note--blue {
  bottom: 9%;
  left: -8%;
  color: var(--white);
  background: var(--lake-dark);
}

.hero-rail {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-rail i {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.adventure-section {
  position: relative;
  overflow: hidden;
}

.adventure-section::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: 100px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(0, 168, 216, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(0, 168, 216, 0.035), 0 0 0 90px rgba(0, 168, 216, 0.025);
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.adventure-card {
  position: relative;
  display: flex;
  min-height: 420px;
  grid-column: span 2;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.45rem, 3vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 15px 45px rgba(7, 23, 34, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.adventure-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 65px rgba(7, 23, 34, 0.12);
}

.adventure-card--offroad,
.adventure-card--water {
  grid-column: span 3;
}

.adventure-card--offroad {
  color: var(--white);
  border-color: transparent;
  background: var(--orange-dark);
}

.adventure-card--water {
  color: var(--white);
  border-color: transparent;
  background: var(--lake-dark);
}

.adventure-card--snow {
  background: linear-gradient(150deg, #ffffff 0%, var(--snow) 100%);
}

.adventure-card--bike::before,
.adventure-card--road::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  height: 8px;
  content: "";
  border-radius: 0 0 0 8px;
}

.adventure-card--bike::before {
  background: var(--green);
}

.adventure-card--road::before {
  background: var(--red);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.season-pill {
  display: inline-flex;
  padding: 0.42rem 0.67rem;
  color: var(--ink);
  border: 1px solid rgba(7, 23, 34, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.card-number {
  color: rgba(7, 23, 34, 0.35);
  font-size: 0.78rem;
  font-weight: 900;
}

.adventure-card--offroad .card-number,
.adventure-card--water .card-number {
  color: rgba(255, 255, 255, 0.55);
}

.card-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 1.55rem;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 18px;
  opacity: 0.92;
}

.card-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adventure-card h3 {
  max-width: 440px;
}

.adventure-card > p {
  margin-bottom: 1.3rem;
}

.adventure-card--offroad p,
.adventure-card--water p {
  color: rgba(255, 255, 255, 0.78);
}

.card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.card-facts div {
  min-width: 140px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.card-facts dt {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card-facts dd {
  color: var(--white);
  font-weight: 800;
}

.card-meta {
  font-size: 0.88rem;
  font-weight: 650;
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.55rem;
  margin-top: auto;
  color: currentColor;
  border-bottom: 1px solid currentColor;
  font-size: 0.92rem;
  font-weight: 900;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link--dark {
  color: var(--ink);
}

.resort-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.resort-section::before {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 44vw;
  height: 130%;
  content: "";
  background: var(--lake-dark);
  opacity: 0.28;
  transform: skewX(-12deg);
}

.resort-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.resort-copy h2 {
  font-size: clamp(2.9rem, 6vw, 5.8rem);
}

.resort-copy > p {
  max-width: 630px;
  color: #c8d5da;
  font-size: 1.05rem;
}

.resort-note {
  padding-left: 1.2rem;
  border-left: 4px solid var(--orange);
}

.resort-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.journey-list {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}

.journey-list::before {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 30px;
  width: 1px;
  content: "";
  border-left: 2px dashed rgba(255, 255, 255, 0.2);
}

.journey-list li {
  position: relative;
  display: grid;
  grid-template-columns: 61px 1fr;
  gap: 1.2rem;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(6px);
}

.journey-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 61px;
  height: 61px;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 950;
}

.journey-list strong {
  color: var(--white);
  font-size: 1.07rem;
}

.journey-list p {
  margin: 0.15rem 0 0;
  color: #aebec4;
  font-size: 0.91rem;
}

.story-section {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.story-stack {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-card--winter .story-image {
  order: 2;
}

.story-image {
  position: relative;
  min-height: 530px;
  overflow: hidden;
}

.story-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(7, 23, 34, 0.52), transparent 48%);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image > span {
  position: absolute;
  z-index: 1;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 0.55rem 0.8rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(7, 23, 34, 0.45);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 4.7rem);
}

.story-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.story-copy > p:not(.kicker) {
  font-size: 1.02rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0.5rem 0 2rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ink-soft);
  font-weight: 680;
}

.check-list li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.groups-section {
  padding-top: 0;
}

.groups-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.6fr) minmax(250px, 0.65fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.groups-copy h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.groups-copy p:not(.kicker),
.groups-action p {
  color: #b8c9cf;
}

.group-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.group-types span {
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
}

.groups-action {
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.readiness-section {
  padding-top: 2rem;
}

.readiness-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.readiness-copy h2 {
  font-size: clamp(2.7rem, 5.5vw, 5rem);
}

.readiness-copy p:not(.kicker) {
  font-size: 1.05rem;
}

.readiness-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.readiness-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.readiness-list li > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 950;
}

.readiness-list strong {
  color: var(--ink);
  font-size: 1rem;
}

.readiness-list p {
  margin: 0.15rem 0 0;
  font-size: 0.89rem;
}

.policy-line {
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.faq-section {
  color: var(--white);
  background: #e8eff0;
  background: linear-gradient(145deg, #e9f2f4 0%, #f8f7f2 70%);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(500px, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  color: var(--ink);
}

.faq-intro h2 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.55rem 3rem 1.55rem 0;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  content: "+";
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-list details[open] summary::after {
  background: var(--orange);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding-right: 3rem;
  margin-bottom: 1.6rem;
}

.final-cta {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  color: var(--white);
  background: var(--lake-dark);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 5.8vw, 5.4rem);
}

.final-actions {
  display: flex;
  min-width: 270px;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.contact-link {
  color: #c8f3ff;
  border-bottom: 1px solid rgba(200, 243, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  padding: 4.5rem 0 2rem;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.6fr);
  gap: 3rem;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #92a7af;
}

.footer-grid h2 {
  margin-bottom: 1rem;
  color: #9bdff3;
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-grid a {
  color: #c3d0d5;
  font-size: 0.88rem;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 3.5rem;
  color: #718991;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.75rem;
}

.mobile-book-bar {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal--delay {
  transition-delay: 110ms;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .site-header,
  .site-header.is-scrolled {
    height: 74px;
    background: rgba(7, 23, 34, 0.97);
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.2rem 20px 7rem;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav > a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.12rem;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .primary-nav .button {
    width: auto;
    margin-top: 1.3rem;
    padding: 0.8rem 1.35rem;
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

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

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .hero-image-wrap {
    aspect-ratio: 1.3;
  }

  .section-heading,
  .resort-grid,
  .readiness-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1rem;
  }

  .section-heading > p {
    max-width: 680px;
  }

  .adventure-card,
  .adventure-card--offroad,
  .adventure-card--water {
    grid-column: span 3;
  }

  .groups-panel {
    grid-template-columns: 1fr 0.6fr;
  }

  .groups-action {
    grid-column: 1 / -1;
    padding-top: 2rem;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .faq-intro {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 2rem;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand {
    width: 184px;
  }

  .section {
    padding: 5.1rem 0;
  }

  .hero {
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.4rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row li {
    display: grid;
    grid-template-columns: 110px 1fr;
  }

  .hero-image-wrap {
    aspect-ratio: 0.95;
    border-radius: 14px 55px 14px 14px;
  }

  .hero-note {
    min-width: 190px;
  }

  .hero-note--orange {
    right: 1%;
  }

  .hero-note--blue {
    bottom: 6%;
    left: 1%;
  }

  .hero-rail {
    justify-content: flex-start;
    overflow: hidden;
  }

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

  .adventure-card,
  .adventure-card--offroad,
  .adventure-card--water {
    min-height: 380px;
    grid-column: auto;
  }

  .resort-section::before {
    width: 70vw;
  }

  .journey-list li {
    grid-template-columns: 52px 1fr;
  }

  .journey-list li > span {
    width: 52px;
    height: 52px;
  }

  .journey-list::before {
    left: 26px;
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .story-card--winter .story-image {
    order: 0;
  }

  .story-image {
    min-height: 390px;
  }

  .groups-panel {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .groups-action {
    grid-column: auto;
  }

  .readiness-grid {
    gap: 2.5rem;
  }

  .faq-grid {
    gap: 2.5rem;
  }

  .final-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions {
    min-width: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .mobile-book-bar {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    overflow: hidden;
    padding: 5px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(7, 23, 34, 0.96);
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
  }

  .mobile-book-bar a {
    display: grid;
    min-height: 47px;
    place-items: center;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 900;
  }

  .mobile-book-bar a:last-child {
    color: var(--ink);
    background: var(--orange);
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .resort-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .resort-actions .button,
  .groups-action .button,
  .final-actions .button {
    width: 100%;
  }

  .hero-note {
    min-width: 166px;
    padding: 0.8rem 0.9rem;
  }

  .hero-note strong {
    font-size: 0.86rem;
  }

  .hero-note span {
    font-size: 0.75rem;
  }

  .story-image {
    min-height: 310px;
  }

  .readiness-list li {
    grid-template-columns: 43px 1fr;
    padding: 1rem;
  }

  .readiness-list li > span {
    width: 43px;
    height: 43px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

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

/* Local search and interior page system */
.local-section {
  position: relative;
  overflow: hidden;
  background: #eaf4f4;
}

.local-section::before {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 470px;
  height: 470px;
  content: "";
  border: 1px solid rgba(0, 108, 144, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(0, 168, 216, 0.04), 0 0 0 104px rgba(0, 168, 216, 0.025);
}

.area-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.area-grid a {
  display: flex;
  min-height: 145px;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(7, 23, 34, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 35px rgba(7, 23, 34, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.area-grid a:hover {
  border-color: var(--lake-dark);
  box-shadow: 0 18px 44px rgba(7, 23, 34, 0.1);
  transform: translateY(-4px);
}

.area-grid strong {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.area-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.area-disclaimer {
  max-width: 880px;
  padding-left: 1rem;
  margin: 2rem 0 0;
  border-left: 4px solid var(--orange);
  font-size: 0.9rem;
}

.site-header--solid {
  height: 76px;
  background: rgba(7, 23, 34, 0.97);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 145px 0 78px;
  color: var(--white);
  background: var(--ink);
}

.page-hero::before {
  position: absolute;
  top: -340px;
  left: 22%;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  color: #8fb3c0;
  font-size: 0.78rem;
  font-weight: 750;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 1.35rem;
  font-family: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.15rem, 7vw, 6.3rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.page-hero__lede {
  max-width: 720px;
  margin-bottom: 1.8rem;
  color: #c6d7dd;
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.page-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 18px 70px 18px 18px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(150deg, transparent 48%, rgba(7, 23, 34, 0.62));
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.page-hero__tag {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  max-width: 230px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  border-radius: 14px;
  background: var(--orange);
  font-size: 0.83rem;
  font-weight: 900;
  line-height: 1.35;
}

.fact-strip {
  color: var(--white);
  background: var(--lake-dark);
}

.fact-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fact-strip__grid > div {
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.fact-strip__grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.fact-strip strong,
.fact-strip span {
  display: block;
}

.fact-strip strong {
  font-size: 1rem;
}

.fact-strip span {
  margin-top: 0.1rem;
  color: #b9e8f5;
  font-size: 0.78rem;
}

.page-content {
  background: var(--paper);
}

.content-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.content-intro h2,
.content-block h2,
.related-section h2,
.page-faq h2 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.content-intro__copy > p {
  font-size: 1.05rem;
}

.notice {
  padding: 1.2rem 1.35rem;
  margin-top: 1.5rem;
  color: var(--ink-soft);
  border-left: 5px solid var(--orange);
  border-radius: 0 15px 15px 0;
  background: #fff2e8;
  font-size: 0.92rem;
  font-weight: 680;
}

.content-stack {
  display: grid;
  gap: 1rem;
}

.content-block {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.content-block:nth-child(even) {
  background: #edf7fa;
}

.content-block h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.content-block__body p:last-child {
  margin-bottom: 0;
}

.content-block__body ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.content-block__body li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink-soft);
  font-weight: 680;
}

.content-block__body li::before {
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.fleet-gallery {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.single-atv-section {
  padding-top: 0;
}

.single-atv-feature {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1.55fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  border-radius: var(--radius-md);
  background: var(--ink-soft);
  scroll-margin-top: 7rem;
}

.single-atv-section .single-atv-feature {
  margin-bottom: 0;
}

.single-atv-feature__capacity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.single-atv-feature__capacity strong {
  color: var(--orange);
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1;
}

.single-atv-feature__capacity span {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
}

.single-atv-feature__copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.single-atv-feature__copy > p:not(.kicker) {
  color: #dce9ef;
}

.single-atv-feature__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.single-atv-feature__actions .text-link {
  margin-top: 0;
  align-self: center;
}

@media (max-width: 600px) {
  .single-atv-feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .single-atv-feature__capacity {
    flex-direction: row;
    gap: 1rem;
    text-align: left;
  }

  .single-atv-feature__actions .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

.rental-areas {
  padding-bottom: clamp(4rem, 8vw, 7rem);
  scroll-margin-top: 7rem;
}

.rental-areas > h2 {
  margin-bottom: 2rem;
}

.rental-areas__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.rental-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.rental-area__operator {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 800;
}

.rental-area h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.rental-area__location {
  font-size: 0.95rem;
  font-weight: 700;
}

.rental-area ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  line-height: 1.7;
}

.rental-area .button {
  margin-top: auto;
  max-width: 100%;
  white-space: normal;
}

@media (max-width: 700px) {
  .rental-areas__grid {
    grid-template-columns: 1fr;
  }
}

.fleet-gallery__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 2rem;
}

.fleet-gallery__heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.fleet-gallery__heading > p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.fleet-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fleet-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(7, 23, 34, 0.09);
}

.fleet-card__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #fff;
}

.fleet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fleet-card__copy {
  padding: 1.4rem;
}

.fleet-card__copy > span {
  display: inline-block;
  padding: 0.32rem 0.62rem;
  margin-bottom: 0.9rem;
  color: var(--ink);
  border-radius: 999px;
  background: var(--orange);
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fleet-card__copy h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.fleet-card__copy p {
  margin-bottom: 0;
}

.fleet-card__copy .fleet-card__capacity {
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
  font-weight: 750;
}

.fleet-gallery__note {
  margin: 1.2rem 0 0;
  font-size: 0.875rem;
}

.related-section {
  background: var(--white);
}

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

.related-grid a {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: var(--white);
  border-radius: 20px;
  background: var(--ink-soft);
  transition: transform 180ms ease, background-color 180ms ease;
}

.related-grid a:nth-child(2) {
  background: var(--lake-dark);
}

.related-grid a:nth-child(3) {
  color: var(--ink);
  background: var(--orange);
}

.related-grid a:hover {
  transform: translateY(-5px);
}

.related-grid strong {
  max-width: 300px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.related-grid span {
  font-weight: 850;
}

.page-faq {
  background: #eaf4f4;
}

.page-faq__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.page-faq .faq-list details {
  background: rgba(255, 255, 255, 0.74);
}

.page-cta {
  color: var(--white);
  background: var(--ink);
}

.page-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.page-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.page-cta__actions {
  display: flex;
  min-width: 230px;
  flex-direction: column;
  gap: 0.8rem;
}

.page-cta__actions a:not(.button) {
  color: #bfeeff;
  font-weight: 800;
  text-align: center;
}

.policy-copy {
  max-width: 860px;
  margin-inline: auto;
}

.policy-copy h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.policy-copy p,
.policy-copy li {
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, 300px);
  gap: 1rem;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
}

.gallery-grid figure:first-child {
  grid-row: 1 / 3;
}

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

.gallery-grid figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.65rem 0.8rem;
  color: var(--white);
  border-radius: 12px;
  background: rgba(7, 23, 34, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.redirect-page img {
  width: min(260px, 70vw);
  margin: 0 auto 2rem;
}

.redirect-page h1 {
  font-size: clamp(2.2rem, 7vw, 4.8rem);
}

.redirect-page p {
  color: #c7d8df;
}

@media (max-width: 900px) {
  .area-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero__grid,
  .content-intro,
  .content-block,
  .fleet-gallery__heading,
  .page-faq__grid {
    grid-template-columns: 1fr;
  }

  .fleet-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero__media {
    min-height: 370px;
  }

  .page-hero__media img {
    min-height: 370px;
  }

  .fact-strip__grid {
    grid-template-columns: 1fr;
  }

  .fact-strip__grid > div,
  .fact-strip__grid > div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .page-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .area-grid,
  .related-grid,
  .fleet-gallery__grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 0 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.85rem, 15vw, 4.5rem);
  }

  .page-hero__media,
  .page-hero__media img {
    min-height: 300px;
  }

  .content-block {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 300px);
  }

  .gallery-grid figure:first-child {
    grid-row: auto;
  }
}

/* Slingshot feature and scenic drive guide */
.slingshot-feature {
  background: #eaf2f4;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 7rem;
}

.slingshot-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.slingshot-feature__photo {
  margin: 0;
}

.slingshot-feature__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 717 / 478;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.slingshot-feature__photo figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.slingshot-feature__copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.slingshot-feature__lede {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.slingshot-feature__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.slingshot-feature__actions .text-link {
  align-self: center;
  margin-top: 0;
}

.slingshot-feature__routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.slingshot-feature__routes > a {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 14px;
  background: var(--white);
  transition: border-color 180ms ease;
}

.slingshot-feature__routes > a:hover {
  border-color: var(--orange-dark);
}

.slingshot-feature__routes strong {
  font-size: 1.35rem;
  line-height: 1.2;
}

.slingshot-feature__routes > a > span {
  color: var(--muted);
  font-size: 0.9rem;
}

.slingshot-feature__routes > a > span:first-child {
  color: var(--orange-dark);
  font-weight: 800;
}

.page-hero__media--slingshot,
.page-hero__media--slingshot img {
  min-height: 0;
}

.page-hero__media--slingshot img {
  height: auto;
  aspect-ratio: 717 / 478;
  object-fit: contain;
}

.page-hero__media--slingshot::after {
  display: none;
}

.page-hero__media--slingshot .page-hero__tag {
  position: static;
  display: block;
  max-width: none;
  border-radius: 0;
  font-size: 0.875rem;
}

.slingshot-planner {
  margin-bottom: clamp(4rem, 7vw, 6rem);
  scroll-margin-top: 7rem;
}

.slingshot-planner > h2 {
  max-width: 850px;
  font-size: clamp(2.25rem, 5vw, 3.8rem);
}

.slingshot-planner__intro {
  max-width: 850px;
  font-size: 1.1rem;
}

.route-estimate-note {
  margin: 1.75rem 0 2rem;
  padding: 1.5rem;
  border-left: 4px solid var(--lake-dark);
  border-radius: 0 14px 14px 0;
  background: #eaf2f4;
}

.route-estimate-note > strong {
  display: block;
  margin-bottom: 0.65rem;
}

.route-estimate-note p:last-child {
  margin-bottom: 0;
}

.route-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.route-table {
  width: 100%;
  min-width: 930px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.route-table caption {
  padding: 1rem 1.25rem;
  color: var(--muted);
  text-align: left;
  font-size: 0.875rem;
}

.route-table th,
.route-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.route-table thead {
  color: var(--white);
  background: var(--ink-soft);
}

.route-table tbody tr:nth-child(even) {
  background: #f3f7f8;
}

.route-table tbody tr:last-child > * {
  border-bottom: 0;
}

.route-table th[scope="row"] {
  min-width: 240px;
}

.route-table th[scope="row"] a {
  color: var(--lake-dark);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.route-table th[scope="row"] span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.scenic-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.scenic-route {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-top: 4px solid var(--lake-dark);
  border-radius: var(--radius-md);
  background: var(--white);
  scroll-margin-top: 7rem;
}

.scenic-route--featured {
  border-top-color: var(--orange);
  background: #fff8f0;
}

.scenic-route__tag {
  margin-bottom: 0.8rem;
  color: var(--orange-dark);
  font-size: 0.875rem;
  font-weight: 850;
}

.scenic-route h3 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.scenic-route__endpoint {
  font-size: 0.95rem;
}

.scenic-route__times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scenic-route__times dt {
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.scenic-route__times dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 850;
}

.scenic-route h4 {
  margin: 1.25rem 0 0.6rem;
  font-size: 1rem;
}

.scenic-route ul {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.scenic-route li + li {
  margin-top: 0.35rem;
}

.scenic-route__note {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.scenic-route__outing {
  color: var(--ink);
}

.scenic-route__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.25rem;
}

.scenic-route__links .text-link {
  align-self: center;
  margin-top: 0;
}

.scenic-route__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.2rem;
  font-size: 0.9rem;
}

.scenic-route__sources a,
.route-sources a {
  color: var(--lake-dark);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.route-sources {
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.route-sources summary {
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.route-sources[open] summary {
  margin-bottom: 1rem;
}

.route-sources ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.5rem;
  padding-left: 1.25rem;
}

@media (min-width: 1041px) and (max-width: 1200px) {
  .primary-nav .nav-phone {
    display: none;
  }

  .nav-shell {
    gap: 1rem;
  }

  .primary-nav {
    gap: 0.75rem;
  }
}

@media (max-width: 780px) {
  .slingshot-feature__grid,
  .slingshot-feature__routes,
  .scenic-route-grid,
  .route-sources ul {
    grid-template-columns: 1fr;
  }

  .slingshot-feature__photo {
    max-width: 560px;
  }

  .slingshot-feature__copy {
    grid-row: 1;
  }
}

@media (max-width: 480px) {
  .slingshot-feature__actions .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .scenic-route__times {
    grid-template-columns: 1fr;
  }
}

/* Seasonal planning and photography retain the established Memories palette. */
.season-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  margin-bottom: 2.4rem;
  color: #cceef7;
  font-size: 0.9rem;
  font-weight: 800;
}

.season-shortcuts a {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.season-shortcuts a:first-child { color: #ffb475; }
.season-shortcuts a:hover { color: white; }
.hero-photo-credit { margin: 0.65rem 0 0; color: #c5d3d8; font-size: 0.75rem; text-align: center; }
.hero-photo-credit a { text-decoration: underline; text-underline-offset: 0.2em; }
.seasonal-feature { background: #f1eee6; }
.seasonal-feature__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.season-card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius-md); background: white; border: 1px solid var(--line); }
.season-card > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.season-card__copy { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: clamp(1.4rem, 3vw, 2rem); }
.season-card__copy h3 { font-size: clamp(1.6rem, 3vw, 2.15rem); }
.season-card__copy > p:not(.kicker) { color: var(--muted); }
.season-card__copy .button { margin-top: auto; }
.season-card--winter { background: #e8f5fa; }
.seasonal-feature__note, .photo-gallery__note { margin: 1.4rem 0 0; color: var(--muted); font-size: 0.86rem; }
.adventure-card__photo { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 12px; margin: 0 0 1.5rem; }
.gallery-link-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.6rem 1.5rem; padding-top: 1.5rem; }
.gallery-link-row p { margin: 0; color: var(--muted); }
.gallery-link-row .text-link { color: var(--lake-dark); }

.booking-options, .photo-gallery { margin-bottom: 4rem; }
.booking-options h2, .photo-gallery h2 { max-width: 860px; font-size: clamp(2rem, 4vw, 3.2rem); }
.booking-options__intro, .photo-gallery__intro { max-width: 780px; margin-bottom: 1.8rem; color: var(--muted); }
.booking-options__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); gap: 1.25rem; }
.booking-option { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(1.3rem, 2.5vw, 1.85rem); border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.booking-option__label { margin-bottom: 0.8rem; color: #a43d00; font-size: 0.8rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.06em; }
.booking-option h3 { font-size: 1.55rem; }
.booking-option > p:not(.booking-option__label) { color: var(--muted); }
.booking-option ul { padding-left: 1.15rem; margin-top: 0; margin-bottom: 1.5rem; font-size: 0.95rem; }
.booking-option li + li { margin-top: 0.5rem; }
.booking-option .button { margin-top: auto; white-space: normal; text-align: center; }
.booking-option .text-link { margin-top: 1rem; color: var(--lake-dark); font-size: 0.9rem; }
.booking-options__help { padding: 1.2rem 1.4rem; margin-top: 1.2rem; border-radius: 12px; background: #e3f0f3; }
.booking-options__help a { font-weight: 800; text-decoration: underline; }
.season-advice { padding: clamp(1.4rem, 3vw, 2rem); margin-bottom: 3rem; border-left: 5px solid var(--orange); border-radius: 0 16px 16px 0; background: #fff0de; }
.season-advice h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.season-advice > p:not(.kicker) { max-width: 940px; }
.season-advice > div { display: flex; flex-wrap: wrap; gap: 0.7rem 1.7rem; }
.season-advice .text-link { color: var(--ink); }
.photo-gallery__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; }
.photo-gallery__grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.photo-card { display: flex; flex-direction: column; overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 18px; background: white; }
.photo-card__image { display: block; overflow: hidden; }
.photo-card__image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 180ms ease; }
.photo-card__image:hover img { transform: scale(1.025); }
.photo-card figcaption { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 1.3rem; }
.photo-card h3 { font-size: 1.3rem; }
.photo-card figcaption > p { font-size: 0.9rem; color: var(--muted); }
.photo-card .text-link { margin-top: auto; color: var(--lake-dark); font-size: 0.9rem; }
.photo-credit { font-size: 0.8rem; text-decoration: underline; text-underline-offset: 0.2em; }
.planning-resources { padding: 1.5rem; margin-top: 2rem; border: 1px solid var(--line); border-radius: 16px; }
.planning-resources h2 { font-size: 1.35rem; }
.planning-resources ul { padding-left: 1.2rem; margin-bottom: 0; }
.planning-resources li + li { margin-top: 0.65rem; }
.planning-resources a { color: var(--lake-dark); text-decoration: underline; text-underline-offset: 0.2em; }

@media (max-width: 1040px) {
  .primary-nav { overflow-y: auto; }
}
@media (max-width: 1000px) {
  .photo-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .seasonal-feature__grid { grid-template-columns: 1fr; }
  .season-shortcuts { gap: 0.35rem 1.1rem; margin-bottom: 1.7rem; font-size: 0.84rem; }
}
@media (max-width: 650px) {
  .photo-gallery__grid { grid-template-columns: 1fr; }
  .season-card__copy .button { width: 100%; white-space: normal; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .photo-card__image img { transition: none; }
}
