:root {
  --ocean-deep: #003f5f;
  --ocean-blue: #0077a8;
  --ocean-light: #24b8d8;
  --sunset-red: #f0442e;
  --sunset-orange: #ff8a2a;
  --sand: #f4d7a1;
  --dark-blue: #071f33;
  --foam: #f7fff7;
  --coral: #ff5f5f;
  --teal-shadow: rgba(0, 63, 95, 0.42);
  --ink: #07304a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 138, 42, 0.42), transparent 18rem),
    linear-gradient(180deg, #b8f1ff 0%, #fff2c9 42%, #0d6384 100%);
  overflow-x: hidden;
}

body.age-locked {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 31, 51, 0.76), rgba(7, 31, 51, 0.08));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: clamp(6.2rem, 16vw, 10rem);
  height: auto;
  filter: drop-shadow(0 0.4rem 1rem rgba(0, 0, 0, 0.3));
}

.tour-progress {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-progress span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0.9rem rgba(255, 255, 255, 0.3);
}

.tour-progress span.active {
  width: 1.5rem;
  background: linear-gradient(90deg, var(--sunset-orange), var(--sunset-red));
}

.section {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: center;
  padding: clamp(5.5rem, 10vw, 9rem) clamp(1rem, 5vw, 5rem);
  isolation: isolate;
}

.hero {
  min-height: 100vh;
  padding-top: 6rem;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 31, 51, 0.8) 0%, rgba(0, 119, 168, 0.36) 46%, rgba(255, 138, 42, 0.25) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero::before,
.hero::after,
.wave-band::before,
.wave-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  inset: auto -8vw -7rem -8vw;
  height: 17rem;
}

.hero::after {
  right: -3rem;
  top: 12vh;
  width: 21rem;
  height: 21rem;
  border-radius: 50%;

  opacity: 0.88;
  animation: sunsetPulse 7s ease-in-out infinite;
}

.hero-grid,
.split-flow,
.video-flow,
.gallery-flow,
.cta-flow {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-copy,
.flow-copy {
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: #fff5b6;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 900;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 2.7rem;
  height: 0.18rem;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 12vw, 10rem);
  text-shadow: 0 1rem 3rem rgba(7, 31, 51, 0.38);
}

h2 {
  max-width: 12ch;
  color: inherit;
  font-size: clamp(3rem, 8vw, 7.5rem);
}

p {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.tour-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font: inherit;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tour-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--sunset-red), var(--sunset-orange));
  box-shadow: 0 1rem 2rem rgba(240, 68, 46, 0.35);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.tour-button:hover,
.ghost-button:hover {
  transform: translateY(-0.18rem);
}

.photo-orbit {
  position: relative;
  min-height: clamp(23rem, 52vw, 39rem);
}

.cutout-photo {
  position: absolute;
  inset: 3% 0 auto auto;
  width: min(34rem, 92%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 48% 52% 42% 58% / 54% 40% 60% 46%;
  box-shadow: 0 2rem 4rem rgba(7, 31, 51, 0.34);
  animation: drift 8s ease-in-out infinite;
}

.float-badge {
  position: absolute;
  left: 0;
  bottom: 7%;
  max-width: 15rem;
  padding: 1rem 1.1rem;
  color: var(--dark-blue);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
  border-radius: 56% 44% 58% 42% / 44% 51% 49% 56%;
  background: linear-gradient(145deg, #fff3b0, #ffb34c);
  box-shadow: 0 1rem 2.5rem rgba(0, 63, 95, 0.25);
  transform: rotate(-5deg);
}

.wave-band {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(36, 184, 216, 0.34), transparent 22rem),
    linear-gradient(160deg, var(--ocean-deep), var(--ocean-blue) 58%, var(--ocean-light));
}

.wave-band::before {
  inset: -4rem -8vw auto -8vw;
  height: 9rem;
}

.wave-band::after {
  inset: auto -12vw -5rem -12vw;
  height: 12rem;
}

.sand-band {
  color: var(--dark-blue);
}

.sunset-band {
  color: var(--white);
  background:
    radial-gradient(circle at 70% 26%, rgba(255, 210, 84, 0.95) 0 7rem, transparent 7.2rem),
    linear-gradient(140deg, #471a3e, var(--sunset-red) 45%, var(--sunset-orange));
}

.lagoon-band {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.14), transparent 18rem),
    linear-gradient(160deg, #05263c, #005f88 55%, #24b8d8);
}

.media-splash {
  position: relative;
  overflow: hidden;
  min-height: clamp(22rem, 45vw, 34rem);
  border-radius: 48% 52% 50% 50% / 42% 58% 42% 58%;
  box-shadow: 0 2rem 5rem var(--teal-shadow);
}

.media-splash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 63, 95, 0.25));
}

.media-splash img,
.media-splash video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.video-ribbon {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  border-radius: 42% 58% 48% 52% / 58% 43% 57% 42%;
  box-shadow: 0 2rem 5rem rgba(7, 31, 51, 0.35);
}

.video-ribbon video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-current {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.image-current img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 1.7rem 3.4rem rgba(7, 31, 51, 0.28);
}

.image-current img:first-child {
  border-radius: 54% 46% 60% 40% / 42% 54% 46% 58%;
  transform: rotate(-2deg);
}

.image-current img:last-child {
  margin-top: 5rem;
  border-radius: 42% 58% 45% 55% / 55% 38% 62% 45%;
  transform: rotate(2deg);
}

.palm {
  position: absolute;
  width: clamp(9rem, 18vw, 17rem);
  height: clamp(15rem, 31vw, 28rem);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.palm::before {
  content: "";
  position: absolute;
  left: 47%;
  top: 28%;
  width: 0.8rem;
  height: 72%;
  border-radius: 999px;
  background: linear-gradient(180deg, #89522f, #3e2317);
  transform: rotate(9deg);
}

.palm::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 48%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 100%, transparent 0 16%, #106d4a 17% 28%, transparent 29%),
    conic-gradient(from 205deg at 50% 82%, transparent 0 7%, #168a5d 8% 15%, transparent 16% 22%, #0e704f 23% 32%, transparent 33% 40%, #169966 41% 50%, transparent 51% 58%, #0d6b4c 59% 68%, transparent 69% 100%);
}

.palm.left {
  left: -2.5rem;
  bottom: 2rem;
  transform: rotate(-9deg);
}

.palm.right {
  right: -2.5rem;
  top: 7rem;
  transform: scaleX(-1) rotate(-7deg);
}

.shell-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.shell-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--dark-blue);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.66);
}

.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 138, 42, 0.38), transparent 19rem),
    linear-gradient(145deg, rgba(7, 31, 51, 0.96), rgba(0, 63, 95, 0.94));
}

body.age-locked .age-gate {
  display: flex;
}

.age-panel {
  width: min(34rem, 100%);
  padding: clamp(1.4rem, 5vw, 2.4rem);
  text-align: center;
  border-radius: 36% 64% 48% 52% / 50% 40% 60% 50%;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.2), transparent 11rem),
    linear-gradient(150deg, rgba(0, 119, 168, 0.94), rgba(7, 31, 51, 0.94));
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.45);
}

.age-panel h2 {
  max-width: none;
  font-size: clamp(2.4rem, 9vw, 5rem);
}

.age-panel p {
  margin-inline: auto;
}

.restricted-note {
  display: none;
  margin-top: 1.2rem;
  color: #ffe4a2;
  font-weight: 900;
}

.age-panel.is-restricted .restricted-note {
  display: block;
}

.footer-wave {
  padding: 3rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  background: var(--dark-blue);
}

.footer-wave p {
  max-width: none;
  margin: 0;
  font-size: 0.92rem;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-1rem) rotate(-1deg);
  }
}

@keyframes sunsetPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 800px) {
  .site-nav {
    padding-block: 0.55rem;
  }

  .tour-progress {
    font-size: 0;
  }

  .section {
    min-height: auto;
    padding-block: 5rem;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-grid,
  .split-flow,
  .video-flow,
  .gallery-flow,
  .cta-flow {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.8rem, 20vw, 6.5rem);
  }

  h2 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .photo-orbit {
    min-height: 25rem;
  }

  .cutout-photo {
    inset: 0 0 auto 0;
    margin-inline: auto;
    width: min(25rem, 92vw);
  }

  .float-badge {
    left: 0.5rem;
    bottom: 0;
  }

  .image-current {
    gap: 0.7rem;
  }

  .image-current img:last-child {
    margin-top: 3rem;
  }

  .palm {
    opacity: 0.28;
  }
}

@media (max-width: 520px) {
  .button-row {
    flex-direction: column;
  }

  .tour-button,
  .ghost-button {
    width: 100%;
  }

  .age-panel {
    border-radius: 2rem;
  }
}
