/* Design tokens from Figma (node 2072:62) */
:root {
  --color-navy: #021922;
  --color-navy-mid: #122227;
  --color-teal: #28484e;
  --color-gold: #debc6b;
  --color-gold-bright: #ffa600;
  --color-gold-muted: #96762d;
  --color-text: #1d1d1d;
  --color-muted: #393c42;
  --color-light: #ececec;
  --color-light-2: #efefef;
  --color-white: #fff;
  --color-cyan: #11b2c5;
  --color-border: #c7c7c7;
  --font-display: "Audiowide", cursive;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-nav: "Encode Sans Expanded", system-ui, sans-serif;
  --font-alt: "Raleway", system-ui, sans-serif;
  --max: 1280px;
  --radius-lg: 20px;
  --radius-md: 10px;
  --radius-sm: 5px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-navy);
}

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

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

a:hover {
  text-decoration: underline;
}

.page {
  width: 100%;
  background: var(--color-navy);
  overflow-x: hidden;
}

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

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn--gold {
  background: var(--color-gold);
  color: #23262d;
  min-height: 48px;
  padding-inline: 1.25rem;
}

.btn--outline {
  border: 2px solid var(--color-gold);
  background: transparent;
  color: var(--color-text);
  min-height: 48px;
  padding-inline: 1.25rem;
}

.btn--on-dark {
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  background: transparent;
}

.btn--lg {
  min-height: 56px;
  padding: 0.75rem 2.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 800px;
  padding: 5.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 25, 34, 0.15) 0%,
    transparent 30%,
    transparent 60%,
    rgba(2, 25, 34, 0.25) 100%
  );
}

/* White-to-transparent gradient at top of hero (over the video) */
.hero__bg-top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 0.65rem 1.25rem;
}

.nav__logo {
  position: relative;
  display: block;
}

.nav__logo img {
  width: clamp(100px, 14vw, 142px);
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.nav__logo .logo-color {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.nav.scrolled .nav__logo .logo-white { opacity: 0; }
.nav.scrolled .nav__logo .logo-color { opacity: 1; }

@media (max-width: 900px) {
  .nav__logo .logo-white { opacity: 0; }
  .nav__logo .logo-color { opacity: 1; }
}

.nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.75rem);
  font-family: var(--font-nav);
  font-size: clamp(0.65rem, 1.1vw, 0.82rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-navy);
}

.nav__links a:hover {
  text-decoration: none;
  opacity: 0.75;
}

.nav.scrolled .nav__links a {
  color: var(--color-navy);
}

@media (max-width: 900px) {
  .nav.scrolled .nav__links a {
    color: var(--color-white);
  }
}

.nav__cta {
  flex-shrink: 0;
}

/* ============================
   Homepage Sticky Booking Bar
   ============================ */
.home-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-gold);
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
}

.home-sticky-bar:hover { opacity: 0.9; }

.home-sticky-bar.visible {
  transform: translateY(0);
}

.home-sticky-bar__text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-navy);
}

@media (max-width: 900px) {
  .home-sticky-bar { padding: 0.5rem 1rem; }
  .home-sticky-bar__text { font-size: 0.72rem; }
}

/* ============================
   Homepage Hamburger
   ============================ */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 501;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav {
    top: 0;
  }

  .nav__hamburger { display: flex; }

  .nav__cta { display: none; }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
    z-index: 500;
    color: var(--color-white);
    padding: 4rem 1.5rem 2rem;
  }

  .nav__links.open { display: flex; }

  .nav__links a {
    color: var(--color-white) !important;
    font-size: 1.3rem;
    text-decoration: none;
  }

  .nav__links a:hover {
    color: var(--color-gold) !important;
    opacity: 1;
  }

  .nav__hamburger {
    position: relative;
    z-index: 501;
  }

  .nav__hamburger.open {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 601;
  }

  .nav__hamburger.open span {
    background: var(--color-white);
  }

  .hero {
    padding-top: 7rem;
  }

  .hero__content {
    justify-content: flex-start;
    padding-top: 3rem;
  }

}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 2rem;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 45%, transparent 70%);
}

.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.06em;
  color: var(--color-gold-muted);
  text-transform: capitalize;
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.06em;
  color: var(--color-navy);
  text-shadow: 0 4px 4px rgba(255, 255, 255, 0.85);
  max-width: 19.8ch;
}

@media (max-width: 900px) {
  .hero__title {
    max-width: none;
    font-size: clamp(1.25rem, 6.5vw, 1.5rem);
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
}

.hero__sub {
  margin: 0 0 1.25rem;
  max-width: 32rem;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: var(--color-navy-mid);
  text-shadow: 0 4px 4px #fff;
  opacity: 0.92;
  text-transform: capitalize;
}

.hero__rating-img {
  margin-top: 0.75rem;
  max-width: 210px;
  height: auto;
}

/* Hero CTA */
.hero__cta {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  padding: 1rem 3.5rem;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 20px rgba(222, 188, 107, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(222, 188, 107, 0.5);
}

.hero__phone {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-navy-mid);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero__phone:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero__scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.9;
}

/* ============================
   Section helpers
   ============================ */
.section--light {
  position: relative;
  background: var(--color-light);
  color: var(--color-text);
}

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

.section--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

/* ============================
   Journey
   ============================ */
.journey {
  padding: 5rem 1.25rem 6rem;
  overflow: hidden;
}

.journey__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}

.journey__pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.09;
}

.journey__pattern-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--color-light-2) 55%, var(--color-light) 100%);
}

.journey__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.journey__heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.journey__map {
  position: relative;
  padding: 5rem 0 7rem;
}

.journey__route {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.journey__vehicle {
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 10;
  pointer-events: none;
  will-change: transform, left, top;
  top: 0;
  left: 50%;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

@media (min-width: 900px) {
  .journey__vehicle {
    width: 100px;
    height: 100px;
  }
}


.journey__jetski,
.journey__pontoon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: opacity 0.6s ease;
}

@media (min-width: 900px) {
  .journey__jetski,
  .journey__pontoon {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.3));
  }
}

.journey__pontoon {
  opacity: 0;
}

.landmark__spacer {
  height: 10rem;
}

@media (min-width: 900px) {
  .landmark__spacer {
    height: 16rem;
  }
}

.landmark {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.landmark .landmark__photo {
  order: -1;
}

.landmark--2 .landmark__photo {
  order: -1;
}

.landmark--2 .landmark__body {
  order: 1;
}

.landmark--2 {
  z-index: 1;
}

@media (min-width: 900px) {
  .landmark {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 8rem;
  }

  .landmark--1 {
    padding-right: 0;
  }

  .landmark--2 {
    padding-left: 0;
  }

  .landmark--2 .landmark__photo {
    order: unset;
  }

  .landmark--2 .landmark__body {
    order: unset;
  }

  .landmark--3 {
    padding-right: 0;
  }
}

.landmark__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
}

.landmark__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 400;
  line-height: 1.1;
}

.landmark__copy {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  text-transform: capitalize;
  max-width: 52ch;
}

.landmark__marker {
  display: flex;
}

.landmark__marker img {
  width: 59px;
  height: 59px;
}

.landmark__photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(2, 25, 34, 0.12);
  aspect-ratio: 4 / 3;
  max-width: 480px;
}

.landmark__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--color-navy);
}

.landmark__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.landmark__img.show {
  opacity: 1;
}

/* Services */
.services {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(40, 72, 78, 0.12);
}

.services__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-alt);
  font-size: 0.93rem;
  letter-spacing: 0.18em;
  color: var(--color-gold-bright);
  text-transform: capitalize;
}

.services__heading {
  margin: 0 0 2rem;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 3vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-teal);
  max-width: 22ch;
}

.services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.services__item h4 {
  margin: 0.5rem 0 0.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.services__item p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--color-text);
  opacity: 0.9;
}

.services__item img {
  margin: 0 auto;
}

.ticker {
  margin: 3rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  line-height: 1;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(40, 72, 78, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================
   BRAND MANIFESTO
   ============================ */
.manifesto {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.manifesto__bg {
  position: absolute;
  inset: 0;
}

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

.manifesto__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 25, 34, 0.75) 0%,
    rgba(2, 25, 34, 0.88) 50%,
    rgba(2, 25, 34, 0.75) 100%
  );
}

.manifesto__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
}

.manifesto__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-nav);
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.manifesto__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manifesto__lead {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.6;
  opacity: 0.9;
}

.manifesto__divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 2rem;
}

.manifesto__quote {
  margin: 0 0 3rem;
  font-family: var(--font-alt);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.manifesto__cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.manifesto__rides {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin-top: 0.5rem;
}

.manifesto__ride {
  flex: 1;
  max-width: 320px;
  text-align: center;
}

.manifesto__ride-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.manifesto__ride-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.manifesto__ride-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.25rem;
}

.manifesto__ride-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
}

.manifesto__ride-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manifesto__ride-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--color-gold);
}

.manifesto__ride-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.manifesto__ride-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0;
}

.manifesto__ride-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

@media (max-width: 700px) {
  .manifesto__rides {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .manifesto__ride {
    max-width: 100%;
  }

  .manifesto__ride-divider {
    width: 60%;
    height: 1px;
    align-self: center;
  }
}

.manifesto__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.manifesto__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manifesto__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--color-gold);
}

.manifesto__stat-label {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============================
   CHOOSE YOUR RIDE
   ============================ */
.choose {
  background: var(--color-white);
  padding: 5rem 1.5rem;
}

.choose__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.choose__eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-nav);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-muted);
}

.choose__title {
  margin: 0 0 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-teal);
}

.choose__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .choose__options {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.choose__option {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  color: var(--color-white);
}

.choose__option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.choose__option:hover img {
  transform: scale(1.06);
}

.choose__option:hover {
  text-decoration: none;
}

.choose__option-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 25, 34, 0.75) 0%, rgba(2, 25, 34, 0.1) 60%);
  transition: background 0.3s ease;
}

.choose__option:hover .choose__option-overlay {
  background: linear-gradient(to top, rgba(2, 25, 34, 0.85) 0%, rgba(2, 25, 34, 0.2) 60%);
}

.choose__option-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.choose__option-label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 0.04em;
}

.choose__option-tag {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  opacity: 0.75;
  letter-spacing: 0.02em;
}

/* ============================
   INTERACTIVE MAP SHOWCASE
   ============================ */
.imap {
  background: var(--color-navy);
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.imap__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .imap__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.imap__pill {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(222, 188, 107, 0.12);
  border: 1px solid rgba(222, 188, 107, 0.35);
  border-radius: 100px;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.imap__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.imap__lead {
  margin: 0 0 2.5rem;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.imap__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.imap__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.imap__feature svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.imap__feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.2rem;
}

.imap__feature p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.imap__video {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.imap__video-wrap {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  border: 4px solid #2a2a2a;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 25px 70px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(222, 188, 107, 0.08);
  max-width: 220px;
  margin: 0 auto;
}

.imap__video-wrap::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #1a1a1a;
  border-radius: 10px;
  z-index: 2;
}

.imap__video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19.5;
  object-fit: contain;
  max-height: 650px;
  background: #000;
}

@media (min-width: 900px) {
  .imap__video-wrap video {
    max-height: 700px;
  }
}

.imap__video-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(222, 188, 107, 0.3) 25%,
    transparent 50%,
    rgba(222, 188, 107, 0.2) 75%,
    transparent 100%
  );
  z-index: -1;
  animation: glowSpin 6s linear infinite;
}

@keyframes glowSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.imap__video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.imap__video-caption svg {
  opacity: 0.5;
}

.imap__launch {
  margin-top: 1.25rem;
  animation: pulse 2s ease-in-out infinite;
}

/* ---- Interactive map modal ---- */
.imap-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.imap-modal.open {
  opacity: 1;
  visibility: visible;
}

.imap-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.imap-modal__close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.imap-modal__frame {
  width: 100%;
  height: 100%;
  max-width: 480px;
  max-height: 90vh;
  border: none;
  border-radius: 16px;
  background: #000;
}

@media (max-width: 600px) {
  .imap-modal {
    padding: 0;
  }

  .imap-modal__frame {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }

  .imap-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@supports (-webkit-touch-callout: none) {
  .imap-modal__frame {
    height: -webkit-fill-available;
  }
}

/* ============================
   JET SKI DEEP DIVE
   ============================ */
.jetski-deep {
  background: var(--color-white);
}

.jetski-deep__hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
}

.jetski-deep__hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jetski-deep__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 25, 34, 0.8) 0%,
    rgba(2, 25, 34, 0.2) 50%,
    transparent 100%
  );
}

.jetski-deep__hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem;
  color: var(--color-white);
  text-align: center;
}

.jetski-deep__kicker {
  display: block;
  margin: 0 0 0.5rem;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: none;
  border: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.jetski-deep__hero-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.jetski-deep__hero-sub {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  opacity: 0.85;
}

/* ---- Scroll reveal system ---- */
.reveal {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal[data-reveal="up"] {
  transform: translateY(100px);
}

.reveal[data-reveal="left"] {
  transform: translateX(-120px);
}

.reveal[data-reveal="right"] {
  transform: translateX(120px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-140px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(140px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Jet Ski Bento ---- */
.jk-bento {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.jk-bento__intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.jk-bento__intro h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--color-teal);
  letter-spacing: 0.04em;
}

.jk-bento__intro p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: var(--color-muted);
}

/* ---- Bento Cards ---- */
.jk-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--color-white);
}

.jk-card__img {
  position: absolute;
  inset: 0;
}

.jk-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.jk-card:hover .jk-card__img img {
  transform: scale(1.08);
}

.jk-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 25, 34, 0.85) 0%, rgba(2, 25, 34, 0.3) 100%);
  z-index: 1;
}

.jk-card__overlay--light {
  background: linear-gradient(to top, rgba(2, 25, 34, 0.8) 0%, rgba(2, 25, 34, 0.15) 60%);
}

.jk-card__overlay--heavy {
  background: linear-gradient(to top, rgba(2, 25, 34, 0.95) 0%, rgba(2, 25, 34, 0.6) 45%, rgba(2, 25, 34, 0.25) 100%);
}

.jk-card__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.jk-card__content--center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.jk-card__tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(222, 188, 107, 0.2);
  border: 1px solid rgba(222, 188, 107, 0.4);
  border-radius: 100px;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  width: fit-content;
}

.jk-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.jk-card__title--huge {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.jk-card__text {
  margin: 0;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  opacity: 0.8;
  max-width: 400px;
}

.jk-card__big-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.85;
  color: var(--color-gold);
  opacity: 0.9;
}

.jk-card__big-unit {
  font-family: var(--font-nav);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

/* Card sizes */
.jk-card--full {
  min-height: 350px;
}

.jk-card--tall {
  min-height: 420px;
}

.jk-card--horses {
  min-height: 450px;
}

@media (min-width: 700px) {
  .jk-card--full {
    min-height: 400px;
  }

  .jk-card--tall {
    min-height: 500px;
  }

  .jk-card--horses {
    min-height: 550px;
  }
}

.jk-bento__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .jk-bento__row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Stats bar ---- */
.jk-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jk-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(222, 188, 107, 0.08) 0%, transparent 50%, rgba(222, 188, 107, 0.05) 100%);
  pointer-events: none;
}

.jk-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  position: relative;
}

.jk-stats__val {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  color: var(--color-gold);
}

.jk-stats__sub {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.jk-stats__divider {
  width: 1px;
  height: 50px;
  background: rgba(222, 188, 107, 0.2);
}

@media (max-width: 599px) {
  .jk-stats__divider {
    display: none;
  }
}

/* ---- Photo strip ---- */
.jk-strip {
  overflow: hidden;
  margin: 1rem -1.5rem;
}

.jk-strip__track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: stripScroll 25s linear infinite;
}

.jk-strip__track img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.jk-strip__track img:hover {
  transform: scale(1.04);
}

@media (min-width: 700px) {
  .jk-strip__track img {
    width: 350px;
    height: 240px;
  }
}

@keyframes stripScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jk-strip__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---- CTA ---- */
.jk-cta {
  text-align: center;
  padding: 3rem 0 5rem;
}

.jk-cta__text {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--color-teal);
  letter-spacing: 0.04em;
}

.jk-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(222, 188, 107, 0.5);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(222, 188, 107, 0);
  }
}

/* ============================
   PONTOON DEEP DIVE
   ============================ */
.pontoon-deep {
  background: var(--color-light);
}

.pontoon-deep__hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
}

.pontoon-deep__hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pontoon-deep__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 25, 34, 0.85) 0%,
    rgba(2, 25, 34, 0.3) 50%,
    transparent 100%
  );
}

.pontoon-deep__hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem;
  color: var(--color-white);
  text-align: center;
}

.pontoon-deep__kicker {
  display: block;
  margin: 0 0 0.5rem;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: none;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.pontoon-deep__hero-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.pontoon-deep__hero-sub {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  opacity: 0.85;
}

.pontoon-deep__content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.pontoon-deep__intro {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.pontoon-deep__intro h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--color-teal);
  letter-spacing: 0.02em;
}

.pontoon-deep__intro p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-muted);
}

.pontoon-deep__destinations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 700px) {
  .pontoon-deep__destinations {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pontoon-deep__dest {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pontoon-deep__dest:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(2, 25, 34, 0.12);
}

.pontoon-deep__dest > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pontoon-deep__dest-body {
  padding: 1.5rem;
}

.pontoon-deep__dest-body h4 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-teal);
}

.pontoon-deep__dest-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.pontoon-deep__callout {
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pontoon-deep__callout::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  opacity: 0.25;
  pointer-events: none;
}

.pontoon-deep__callout-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.pontoon-deep__callout-big {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-gold);
}

.pontoon-deep__callout-sub {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.pontoon-deep__specs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(40, 72, 78, 0.1);
  text-align: center;
}

.pontoon-deep__spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}

.pontoon-deep__spec-val {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1;
  color: var(--color-teal);
}

.pontoon-deep__spec-val small {
  font-size: 0.5em;
  opacity: 0.7;
}

.pontoon-deep__spec-label {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.pontoon-deep__cta {
  text-align: center;
}

.pontoon-deep__cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pontoon-deep__cta-text {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--color-teal);
  letter-spacing: 0.04em;
}

/* ============================
   PHOTO GALLERY
   ============================ */
.xp-gallery {
  background: var(--color-navy);
  padding: 5rem 1.5rem;
  color: var(--color-white);
}

.xp-gallery__header {
  text-align: center;
  margin-bottom: 3rem;
}

.xp-gallery__header h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.xp-gallery__header p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.7;
}

.xp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .xp-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 0.75rem;
  }
}

.xp-gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.xp-gallery__item--wide {
  grid-column: span 2;
}

.xp-gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.xp-gallery__item:hover img {
  transform: scale(1.05);
}

@media (min-width: 700px) {
  .xp-gallery__grid {
    grid-auto-rows: 260px;
  }

  .xp-gallery__item img {
    height: 100%;
    min-height: unset;
  }
}

/* ============================
   REVIEWS
   ============================ */
.rev {
  background: var(--color-navy-mid);
  padding: 5rem 1.5rem;
  color: var(--color-white);
}

.rev__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.rev__heading {
  margin: 0 0 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.rev__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 700px) {
  .rev__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rev__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(222, 188, 107, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 0;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rev__card:hover {
  transform: translateY(-3px);
  border-color: rgba(222, 188, 107, 0.35);
}

.rev__stars {
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.rev__text {
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
}

.rev__author {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-gold);
}

/* ============================
   MARQUEE
   ============================ */
.marquee {
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 0.85rem 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee__group span {
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ============================
   FINAL CTA
   ============================ */
.final-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
}

.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 25, 34, 0.82);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  max-width: 700px;
}

.final-cta__inner h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.final-cta__inner > p {
  margin: 0 0 2.5rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  opacity: 0.85;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.newsletter {
  max-width: 520px;
  margin: 0 auto;
}

.newsletter__label {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.newsletter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: stretch;
}

.newsletter input {
  flex: 1 1 200px;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter .btn {
  min-height: 48px;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .footer__top {
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__logo {
  width: 220px;
  height: auto;
}

.footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.6;
  font-style: italic;
}

.footer__nav h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav li {
  margin-bottom: 0.4rem;
}

.footer__nav a {
  font-size: 0.95rem;
  opacity: 0.75;
  transition: opacity 0.15s;
}

.footer__nav a:hover {
  opacity: 1;
  text-decoration: none;
}

.footer__contact h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer__phone {
  margin: 0 0 0.5rem;
  font-family: var(--font-nav);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
}

.footer__contact p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.5;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}

.footer__social a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

.footer__copy {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.4;
}

@media (max-width: 699px) {
  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}
