:root {
  --bg: #05070d;
  --panel: #0b1024;
  --panel-two: #101b38;
  --ink: #ffffff;
  --muted: #c4d4f2;
  --cyan: #12d9ff;
  --blue: #1168ff;
  --pink: #ff2ac7;
  --yellow: #ffe600;
  --orange: #ff6a00;
  --green: #26f07f;
  --red: #ff1f2d;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0) 0%, var(--bg) 720px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 13% 18%, rgba(18, 217, 255, 0.16), transparent 20%),
    radial-gradient(circle at 86% 22%, rgba(255, 42, 199, 0.13), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  opacity: 0.7;
  z-index: -2;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 10px 30px;
  background: rgba(5, 7, 13, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.brand-mark {
  width: 132px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.language-toggle,
.nav-cta,
.button,
.text-button,
.mini-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.site-nav a {
  padding: 0 10px;
  color: var(--muted);
  font-weight: 850;
  font-size: 0.88rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(18, 217, 255, 0.12);
  box-shadow: 0 0 24px rgba(18, 217, 255, 0.35);
}

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

.language-toggle {
  gap: 8px;
  min-width: 76px;
  border: 1px solid var(--line);
  background: #09132a;
  color: var(--cyan);
  font-weight: 950;
  cursor: pointer;
}

.flag {
  position: relative;
  width: 25px;
  height: 17px;
  display: inline-block;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.flag-es {
  background: linear-gradient(180deg, #c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75%);
}

.flag-us {
  background: repeating-linear-gradient(180deg, #b22234 0 2px, #fff 2px 4px);
}

.flag-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 9px;
  background: #3c3b6e;
}

.nav-cta {
  padding: 0 18px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  font-weight: 950;
  box-shadow: 0 0 28px rgba(255, 42, 199, 0.45);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 19, 42, 0.92);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero-section {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 128px 24px 64px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.36), rgba(5, 7, 13, 0.82)),
    url("../images/BGLargeFormat.png") center / cover no-repeat;
}

.stage-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.spotlight {
  position: absolute;
  top: -12%;
  left: 50%;
  width: 120px;
  height: 92%;
  transform-origin: top center;
  filter: blur(2px);
  opacity: 0.45;
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  mix-blend-mode: screen;
  transition: transform 2.4s ease, left 2.4s ease, opacity 2.4s ease;
}

.spotlight-one {
  background: linear-gradient(180deg, rgba(18, 217, 255, 0.8), transparent);
  transform: rotate(-28deg);
}

.spotlight-two {
  background: linear-gradient(180deg, rgba(255, 42, 199, 0.72), transparent);
  transform: rotate(24deg);
}

.spotlight-three {
  background: linear-gradient(180deg, rgba(17, 104, 255, 0.65), transparent);
  transform: rotate(-6deg);
}

.spotlight-four {
  background: linear-gradient(180deg, rgba(255, 230, 0, 0.38), transparent);
  transform: rotate(36deg);
}

.waterline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background:
    linear-gradient(180deg, transparent, rgba(18, 217, 255, 0.16)),
    repeating-linear-gradient(115deg, rgba(18, 217, 255, 0.22) 0 2px, transparent 2px 18px);
  opacity: 0.75;
  animation: water-scan 8s linear infinite;
}

.hero-content {
  width: min(1120px, 100%);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 1000;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  text-shadow: 0 0 18px rgba(255, 230, 0, 0.62);
}

.eyebrow {
  font-size: 0.92rem;
}

.logo-stage {
  position: relative;
  width: min(620px, 92vw);
  margin: 0 auto 8px;
}

.logo-lights {
  position: absolute;
  inset: -22% 8% 38%;
  z-index: -1;
}

.logo-lights span {
  position: absolute;
  top: 0;
  width: 92px;
  height: 122%;
  transform-origin: top center;
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  filter: blur(5px);
  mix-blend-mode: screen;
  opacity: 0.75;
  transition: transform 2s ease, left 2s ease;
}

.logo-lights span:nth-child(1) {
  left: 24%;
  background: linear-gradient(180deg, rgba(18, 217, 255, 0.85), transparent);
  transform: rotate(-18deg);
}

.logo-lights span:nth-child(2) {
  left: 48%;
  background: linear-gradient(180deg, rgba(196, 24, 255, 0.78), transparent);
  transform: rotate(10deg);
}

.logo-lights span:nth-child(3) {
  left: 66%;
  background: linear-gradient(180deg, rgba(255, 42, 199, 0.82), transparent);
  transform: rotate(22deg);
}

.hero-logo {
  width: 100%;
  filter: drop-shadow(0 0 24px rgba(18, 217, 255, 0.6)) drop-shadow(0 0 38px rgba(255, 42, 199, 0.28));
  animation: logo-rock 5s ease-in-out infinite;
  transform-origin: center 65%;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(3rem, 6.4vw, 5.75rem);
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 4px 0 #06142f, 0 0 22px rgba(18, 217, 255, 0.48);
}

h2 {
  font-size: clamp(2.45rem, 4.8vw, 4.7rem);
  font-weight: 1000;
  text-transform: uppercase;
}

h3 {
  font-size: 1.35rem;
  font-weight: 950;
}

.hero-copy {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  border: 0;
  padding: 0 22px;
  min-width: 154px;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.text-button:hover,
.text-button:focus-visible,
.language-toggle:hover,
.language-toggle:focus-visible,
.mini-cta:hover,
.mini-cta:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 0 30px rgba(255, 42, 199, 0.5);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 36px rgba(255, 106, 0, 0.72), 0 0 60px rgba(255, 42, 199, 0.35);
}

.button-secondary {
  border: 1px solid rgba(18, 217, 255, 0.55);
  background: rgba(8, 20, 48, 0.9);
  box-shadow: inset 0 0 22px rgba(18, 217, 255, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 0 0 30px rgba(18, 217, 255, 0.5), inset 0 0 24px rgba(18, 217, 255, 0.24);
}

.hero-facts {
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  justify-content: center;
  gap: 10px;
}

.info-card {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 13px;
  background: rgba(4, 9, 22, 0.68);
  color: #eaf6ff;
  font-weight: 850;
}

a.info-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.info-card:hover,
a.info-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 0 26px rgba(18, 217, 255, 0.34);
}

.info-icon {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 24px;
  border-radius: 5px;
  background: rgba(18, 217, 255, 0.14);
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 1000;
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 24px;
  background: linear-gradient(90deg, #ec1838, #ff7a00, #ffe600);
  color: #06142f;
  font-weight: 1000;
  text-transform: uppercase;
}

.promo-strip p {
  margin: 0;
}

.promo-strip a {
  border: 2px solid #06142f;
  border-radius: 8px;
  padding: 8px 14px;
  background: white;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
  position: relative;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--section-bg, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.intro-section {
  --section-bg:
    radial-gradient(circle at 8% 24%, rgba(18, 217, 255, 0.2), transparent 28%),
    radial-gradient(circle at 92% 40%, rgba(255, 42, 199, 0.16), transparent 32%),
    linear-gradient(120deg, rgba(2, 26, 34, 0.72), rgba(6, 8, 22, 0.96) 58%, rgba(22, 6, 32, 0.78));
}

.packages-section {
  --section-bg:
    radial-gradient(circle at 14% 18%, rgba(141, 92, 255, 0.26), transparent 30%),
    radial-gradient(circle at 82% 26%, rgba(255, 106, 0, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(21, 8, 66, 0.86), rgba(4, 23, 32, 0.92) 46%, rgba(10, 7, 25, 0.98));
}

.services-section {
  --section-bg:
    radial-gradient(circle at 16% 20%, rgba(18, 217, 255, 0.19), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(255, 42, 199, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(7, 14, 42, 0.94), rgba(20, 12, 42, 0.9) 58%, rgba(5, 7, 13, 0.98));
}

.menu-section {
  --section-bg:
    radial-gradient(circle at 20% 16%, rgba(38, 240, 127, 0.16), transparent 28%),
    radial-gradient(circle at 78% 62%, rgba(255, 230, 0, 0.12), transparent 32%),
    linear-gradient(120deg, rgba(3, 30, 28, 0.82), rgba(7, 10, 27, 0.98) 52%, rgba(24, 8, 31, 0.82));
}

.gallery-section {
  --section-bg:
    radial-gradient(circle at 10% 72%, rgba(18, 217, 255, 0.2), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(255, 42, 199, 0.22), transparent 30%),
    linear-gradient(140deg, rgba(4, 8, 24, 0.96), rgba(15, 6, 30, 0.94) 58%, rgba(4, 22, 31, 0.82));
}

.safety-section {
  --section-bg:
    radial-gradient(circle at 22% 18%, rgba(38, 240, 127, 0.18), transparent 28%),
    radial-gradient(circle at 85% 42%, rgba(18, 217, 255, 0.17), transparent 32%),
    linear-gradient(130deg, rgba(3, 31, 25, 0.82), rgba(7, 14, 34, 0.98) 56%, rgba(4, 8, 18, 0.94));
}

.booking-section {
  --section-bg:
    radial-gradient(circle at 13% 38%, rgba(255, 230, 0, 0.2), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(255, 106, 0, 0.22), transparent 30%),
    linear-gradient(120deg, rgba(31, 15, 4, 0.84), rgba(20, 11, 42, 0.94) 54%, rgba(5, 7, 13, 0.98));
}

.rewards-section {
  --section-bg:
    linear-gradient(90deg, rgba(3, 10, 24, 0.68), rgba(8, 6, 24, 0.2) 48%, rgba(38, 4, 44, 0.58)),
    radial-gradient(circle at 12% 18%, rgba(18, 217, 255, 0.22), transparent 27%),
    radial-gradient(circle at 86% 48%, rgba(255, 42, 199, 0.2), transparent 34%),
    url("../images/Window5.PNG") center 42% / cover no-repeat,
    linear-gradient(135deg, rgba(3, 27, 36, 0.82), rgba(29, 7, 43, 0.86) 52%, rgba(5, 7, 13, 0.96));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.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;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.section-heading-art {
  grid-template-columns: minmax(0, 1fr) minmax(110px, 190px) minmax(280px, 430px);
  align-items: center;
  gap: 24px;
}

.section-heading-art.no-section-title {
  grid-template-columns: minmax(120px, 190px) minmax(280px, 640px);
  justify-content: start;
  align-items: center;
}

.section-heading-art.no-section-title .section-duck {
  justify-self: start;
}

.section-heading-art.no-section-title > p {
  max-width: 640px;
}

.section-title-art {
  position: relative;
}

.section-title-png {
  display: block;
  width: min(100%, 680px);
  max-height: 380px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 0 rgba(0, 0, 0, 0.28)) drop-shadow(0 0 28px rgba(18, 217, 255, 0.24));
}

.detail-title-png {
  width: min(100%, 600px);
}

.section-duck {
  width: clamp(105px, 14vw, 180px);
  max-height: 230px;
  object-fit: contain;
  justify-self: center;
  align-self: end;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.44));
}

.express-duck {
  transform: rotate(-3deg);
}

.detail-duck {
  transform: rotate(4deg);
}

.section-heading p:last-child,
.intro-copy p,
.safety-copy p,
.rewards-section p,
.booking-stage p,
.gallery-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1.38fr);
  gap: 34px;
  align-items: stretch;
  padding: 28px;
}

.intro-grid::before {
  content: "";
  position: absolute;
  inset: -24px -18px;
  z-index: -1;
  border: 1px solid rgba(18, 217, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(18, 217, 255, 0.08), transparent 38%),
    linear-gradient(280deg, rgba(255, 42, 199, 0.12), transparent 42%);
}

.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
}

.trust-list {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding-left: 18px;
}

.trust-list article {
  position: relative;
  border: 1px solid rgba(18, 217, 255, 0.25);
  border-left: 4px solid var(--cyan);
  background:
    linear-gradient(90deg, rgba(18, 217, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(5, 12, 28, 0.68);
  padding: 16px 16px 16px 18px;
  border-radius: 8px;
}

.trust-list article::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.trust-list article:nth-child(2) {
  border-color: rgba(255, 42, 199, 0.28);
  border-left-color: var(--pink);
}

.trust-list article:nth-child(2)::before {
  background: var(--pink);
  box-shadow: 0 0 22px var(--pink);
}

.trust-list article:nth-child(3) {
  border-color: rgba(255, 230, 0, 0.28);
  border-left-color: var(--yellow);
}

.trust-list article:nth-child(3)::before {
  background: var(--yellow);
  box-shadow: 0 0 22px var(--yellow);
}

.trust-list strong {
  display: block;
  color: white;
  font-size: 1.05rem;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.trust-list span {
  color: var(--muted);
}

.intro-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(18, 217, 255, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow), 0 0 30px rgba(18, 217, 255, 0.22);
}

.intro-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.intro-image-title {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(4, 8, 20, 0.66);
  box-shadow: 0 0 34px rgba(18, 217, 255, 0.28);
  backdrop-filter: blur(4px);
}

.intro-image-title h2 {
  font-size: clamp(2rem, 4.6vw, 4.7rem);
  text-shadow: 0 4px 0 #06142f, 0 0 24px rgba(255, 42, 199, 0.42);
}

.package-grid,
.service-grid,
.safety-grid,
.menu-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card,
.service-card,
.safety-grid article,
.menu-item,
.gallery-item {
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.package-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  isolation: isolate;
  transition: opacity 520ms ease, transform 260ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 28%),
    repeating-linear-gradient(-18deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 16px);
  opacity: 0.75;
}

.package-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon, var(--yellow));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55), 0 0 42px color-mix(in srgb, var(--neon, var(--yellow)) 58%, transparent);
}

.package-purple {
  background: linear-gradient(145deg, #3b168b, #111b52);
}

.package-green {
  background: linear-gradient(145deg, #053b34, #122d48);
}

.package-orange {
  background: linear-gradient(145deg, #ff5d0d, #761221);
}

.card-art {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 140px;
  margin: -4px 0 18px;
  padding: 12px 112px 12px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 88% 50%, color-mix(in srgb, var(--neon, var(--cyan)) 22%, transparent), transparent 38%),
    rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.package-banner {
  width: 100%;
  height: 118px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 7px 0 rgba(0, 0, 0, 0.25));
}

.package-icon {
  position: absolute;
  right: 12px;
  bottom: 8px;
  width: min(32%, 132px);
  height: 118px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 9px 12px rgba(0, 0, 0, 0.48));
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.badge {
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(4, 9, 22, 0.35);
  color: white;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}

.card-top strong {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: white;
  color: #0c1942;
  font-size: 2rem;
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.3);
}

.package-card h3 {
  margin-top: 22px;
  font-size: 1.75rem;
  text-transform: uppercase;
}

.package-card ul,
.service-card p,
.safety-grid p,
.menu-item p {
  color: #f1f6ff;
}

.package-card ul {
  padding: 0;
  margin: 20px 0 24px;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 28px;
  margin: 9px 0;
  font-weight: 850;
}

.package-card li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 1000;
  text-shadow: 0 0 10px rgba(255, 230, 0, 0.7);
}

.membership {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--yellow);
  color: #08142e;
  font-weight: 1000;
  transform: skew(-7deg);
  box-shadow: 0 0 22px rgba(255, 230, 0, 0.35);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background:
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--neon, var(--cyan)) 22%, transparent), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
    var(--panel-two);
  border-color: color-mix(in srgb, var(--neon, var(--cyan)) 48%, transparent);
  transition: opacity 520ms ease, transform 260ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-art {
  min-height: 118px;
  padding-right: 104px;
}

.service-title-img {
  height: 84px;
  width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 7px 0 rgba(0, 0, 0, 0.25));
}

.service-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  width: min(29%, 106px);
  height: 98px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.48));
}

.service-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  margin-bottom: 16px;
  color: #06142f;
  font-weight: 1000;
}

.service-card p {
  margin-bottom: 18px;
}

.mini-cta {
  width: fit-content;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-cta:hover,
.mini-cta:focus-visible {
  border-color: var(--neon);
  box-shadow: 0 0 24px color-mix(in srgb, var(--neon, var(--cyan)) 55%, transparent);
}

.accent-blue span {
  background: #a9d8ff;
}

.accent-cyan span {
  background: var(--cyan);
}

.accent-pink span {
  background: var(--pink);
  color: white;
}

.accent-red span {
  background: var(--red);
  color: white;
}

.accent-gold span {
  background: var(--yellow);
}

.accent-green span {
  background: var(--green);
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-item {
  --card-rgb: 18, 217, 255;
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 20px;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  background:
    radial-gradient(circle at 12% 12%, rgba(var(--card-rgb), 0.24), transparent 28%),
    linear-gradient(150deg, rgba(var(--card-rgb), 0.16), rgba(255, 42, 199, 0.07)),
    rgba(10, 18, 42, 0.86);
  border-color: rgba(var(--card-rgb), 0.45);
  transition: opacity 520ms ease, transform 260ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-item::after {
  content: "View details";
  align-self: end;
  width: fit-content;
  border: 1px solid rgba(var(--card-rgb), 0.55);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--neon, var(--cyan));
  font-weight: 950;
  background: rgba(var(--card-rgb), 0.08);
}

html[lang="es"] .menu-item::after {
  content: "Ver detalle";
}

.menu-item:hover,
.menu-item:focus-visible {
  transform: translateY(-5px);
  border-color: var(--neon, var(--cyan));
  box-shadow:
    var(--shadow),
    0 0 26px rgba(var(--card-rgb), 0.42),
    0 0 54px rgba(var(--card-rgb), 0.2),
    inset 0 0 28px rgba(var(--card-rgb), 0.1);
}

.menu-item strong {
  display: block;
  color: var(--neon, var(--yellow));
  font-size: 1.5rem;
  text-shadow: 0 0 16px rgba(var(--card-rgb), 0.5);
}

.menu-item h3 {
  font-size: 1.18rem;
}

.menu-item p {
  margin: 0;
  font-size: 0.96rem;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  min-height: auto;
  margin: 0;
  background: #061022;
  transition: opacity 520ms ease, transform 260ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: var(--shadow), 0 0 34px rgba(255, 42, 199, 0.28);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #020714;
}

.gallery-item img {
  cursor: zoom-in;
}

.gallery-item img:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: -3px;
}

.gallery-item figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-weight: 900;
}

.safety-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.safety-copy {
  position: sticky;
  top: 116px;
  align-self: start;
}

.safety-title-art {
  width: min(460px, 100%);
  margin: 8px 0 12px;
}

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

.safety-grid article {
  min-height: 290px;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(18, 217, 255, 0.16), transparent),
    linear-gradient(145deg, #131a48, #091327);
  border-color: rgba(255, 42, 199, 0.42);
}

.safety-grid article:nth-child(2) {
  border-color: rgba(255, 230, 0, 0.45);
}

.safety-grid article:nth-child(3) {
  border-color: rgba(38, 240, 127, 0.45);
}

.safety-grid img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(18, 217, 255, 0.35);
}

.booking-section {
  width: min(1060px, calc(100% - 40px));
}

.booking-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  border: 2px solid rgba(255, 230, 0, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 42, 199, 0.2), transparent 30%),
    linear-gradient(145deg, #111a3d, #05070d 72%);
  box-shadow: var(--shadow), 0 0 42px rgba(255, 230, 0, 0.18);
}

.concert-pass {
  min-height: 250px;
  position: relative;
  display: block;
  perspective: 1200px;
}

.pass-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 230, 0, 0.45), transparent 18%),
    linear-gradient(135deg, #45217e, #ff2ac7 54%, #ff6a00);
  backface-visibility: hidden;
  transition: transform 560ms ease;
  box-shadow: 0 0 42px rgba(255, 42, 199, 0.36);
}

.pass-face::before,
.pass-face::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(255, 255, 255, 0.56);
}

.pass-face::before {
  left: -19px;
}

.pass-face::after {
  right: -19px;
}

.pass-face span {
  color: var(--yellow);
  font-weight: 1000;
  text-transform: uppercase;
}

.pass-face strong {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(3, 10, 30, 0.55);
}

.pass-face em {
  color: #f4f8ff;
  font-style: normal;
  font-weight: 900;
}

.pass-back {
  background:
    radial-gradient(circle at 10% 16%, rgba(18, 217, 255, 0.52), transparent 22%),
    linear-gradient(135deg, #042c3c, #111a3d 42%, #ff6a00);
  transform: rotateY(180deg);
}

.concert-pass:hover .pass-front,
.concert-pass:focus-visible .pass-front {
  transform: rotateY(180deg);
}

.concert-pass:hover .pass-back,
.concert-pass:focus-visible .pass-back {
  transform: rotateY(360deg);
}

.rewards-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: 96px 0 106px;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.rewards-copy {
  max-width: 720px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(4, 8, 20, 0.58);
  box-shadow: 0 0 36px rgba(5, 7, 13, 0.22);
  backdrop-filter: blur(2px);
}

.rewards-copy h2,
.rewards-copy p {
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.76);
}

.rewards-copy p:not(.section-kicker) {
  color: #edf5ff;
}

.rewards-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(4, 9, 22, 0.72);
  backdrop-filter: blur(8px);
}

.rewards-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 850;
}

.rewards-form input {
  min-height: 48px;
  border: 1px solid rgba(18, 217, 255, 0.35);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(6, 13, 31, 0.94);
  color: white;
  outline: none;
}

.rewards-form input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 42, 199, 0.2);
}

.rewards-form .consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: #edf5ff;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.38;
}

.rewards-form .consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--pink);
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.form-note.is-error {
  color: var(--yellow);
  font-weight: 900;
}

.booking-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  width: min(calc(100vw - 32px), 520px);
  padding: 14px 18px;
  border: 1px solid rgba(18, 217, 255, 0.5);
  border-radius: 8px;
  background: rgba(4, 9, 22, 0.94);
  color: #f8fbff;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.58), 0 0 34px rgba(255, 42, 199, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.booking-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.service-modal[hidden],
.gallery-modal[hidden] {
  display: none;
}

.service-modal,
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(7px);
}

.gallery-modal {
  z-index: 90;
}

.gallery-preview {
  width: min(1080px, calc(100vw - 36px));
  margin: 0;
  border: 1px solid rgba(18, 217, 255, 0.42);
  border-radius: 8px;
  overflow: hidden;
  background: #050914;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.72), 0 0 50px rgba(255, 42, 199, 0.28);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 9, 20, 0.78);
  color: white;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(18, 217, 255, 0.36);
}

.gallery-prev {
  left: max(18px, calc((100vw - 1180px) / 2));
}

.gallery-next {
  right: max(18px, calc((100vw - 1180px) / 2));
}

.gallery-preview img {
  width: 100%;
  max-height: calc(100svh - 150px);
  object-fit: contain;
  background: #020714;
}

.gallery-preview figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-weight: 900;
}

.gallery-close {
  top: 18px;
  right: 18px;
}

.modal-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 0;
  overflow: auto;
  border: 1px solid rgba(18, 217, 255, 0.45);
  border-radius: 8px;
  background: #071024;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.72), 0 0 44px rgba(18, 217, 255, 0.3);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(5, 7, 13, 0.9);
  color: white;
  font-weight: 1000;
  cursor: pointer;
}

.modal-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.modal-copy {
  padding: 34px;
}

.modal-price {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  margin-bottom: 14px;
  background: var(--yellow);
  color: #06142f;
  font-weight: 1000;
}

.modal-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.modal-copy p,
.modal-copy li {
  color: var(--muted);
}

.modal-copy ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050914;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-links a,
.copyright {
  color: var(--muted);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links h2 {
  font-size: 1rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
}

.social-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  font-size: 0.72rem;
  font-weight: 1000;
  box-shadow: 0 0 18px rgba(255, 42, 199, 0.34);
}

.social-instagram::before {
  content: "IG";
}

.social-tiktok {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
}

.social-tiktok::before {
  content: "TT";
}

.social-facebook {
  background: linear-gradient(135deg, #1168ff, #12d9ff);
}

.social-facebook::before {
  content: "FB";
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

@keyframes logo-rock {
  0%,
  42%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  6% {
    transform: rotate(-3.5deg) scale(1.01);
  }
  12% {
    transform: rotate(3.5deg) scale(1.01);
  }
  18% {
    transform: rotate(-3deg) scale(1.01);
  }
  24% {
    transform: rotate(3deg) scale(1.01);
  }
  30% {
    transform: rotate(-2.2deg) scale(1);
  }
  36% {
    transform: rotate(2.2deg) scale(1);
  }
}

@keyframes water-scan {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 0, 220px 0;
  }
}

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 13, 0.96);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
  }

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

  .nav-cta {
    display: none;
  }

  .section-heading,
  .intro-grid,
  .safety-section,
  .booking-stage,
  .rewards-section {
    grid-template-columns: 1fr;
  }

  .section-heading-art {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 160px);
  }

  .section-heading-art.no-section-title {
    grid-template-columns: minmax(96px, 150px) minmax(0, 1fr);
  }

  .section-heading-art:not(.no-section-title) > p {
    grid-column: 1 / -1;
  }

  .package-grid,
  .service-grid,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, auto));
  }

  .safety-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
    gap: 10px;
  }

  .brand-mark {
    width: 96px;
  }

  .site-nav {
    top: 68px;
  }

  .language-toggle {
    min-width: 66px;
  }

  .hero-section {
    min-height: auto;
    padding: 108px 18px 54px;
  }

  .hero-copy,
  .section-heading p:last-child,
  .intro-copy p,
  .safety-copy p,
  .rewards-section p,
  .booking-stage p,
  .gallery-section p {
    font-size: 1rem;
  }

  .promo-strip {
    flex-direction: column;
    text-align: center;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 64px 0;
  }

  .section-heading-art {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-heading-art.no-section-title {
    grid-template-columns: 1fr;
  }

  .section-title-png,
  .detail-title-png {
    width: 100%;
    max-height: 190px;
  }

  .section-duck {
    width: 118px;
    max-height: 160px;
    justify-self: start;
  }

  .package-grid,
  .service-grid,
  .menu-grid,
  .gallery-grid,
  .safety-grid,
  .hero-facts,
  .site-footer,
  .modal-panel {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .card-art {
    min-height: 118px;
    padding-right: 82px;
  }

  .package-banner {
    height: 92px;
  }

  .package-icon {
    width: 78px;
    height: 92px;
  }

  .service-art {
    min-height: 108px;
    padding-right: 76px;
  }

  .service-title-img {
    height: 76px;
  }

  .service-icon {
    width: 72px;
    height: 86px;
  }

  .intro-grid {
    padding: 18px;
  }

  .intro-visual,
  .intro-visual img {
    min-height: 360px;
  }

  .intro-image-title {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .booking-stage,
  .rewards-section {
    padding: 24px 18px;
  }

  .concert-pass {
    min-height: 230px;
  }

  .modal-image {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .site-footer {
    width: min(100% - 28px, 1180px);
    padding: 24px;
  }
}

/* WordPress / Contact Form 7 integration */
.rewards-form-cf7 .wpcf7 {
  width: 100%;
}

.rewards-form-cf7 form,
.rewards-form-cf7 p {
  margin: 0;
}

.rewards-form-cf7 .wpcf7-form p + p {
  margin-top: 16px;
}

.rewards-form-cf7 br {
  display: none;
}

.rewards-form-cf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.rewards-form-cf7 input[type="text"],
.rewards-form-cf7 input[type="email"],
.rewards-form-cf7 input[type="tel"],
.rewards-form-cf7 textarea,
.rewards-form-cf7 select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(18, 217, 255, 0.62);
  border-radius: 8px;
  background: rgba(2, 10, 30, 0.9);
  color: #fff;
  font: inherit;
  font-weight: 800;
  padding: 0 14px;
  outline: none;
}

.rewards-form-cf7 textarea {
  min-height: 110px;
  padding: 14px;
}

.rewards-form-cf7 input[type="text"]::placeholder,
.rewards-form-cf7 input[type="email"]::placeholder,
.rewards-form-cf7 input[type="tel"]::placeholder,
.rewards-form-cf7 textarea::placeholder {
  color: rgba(237, 245, 255, 0.54);
}

.rewards-form-cf7 input[type="text"]:focus,
.rewards-form-cf7 input[type="email"]:focus,
.rewards-form-cf7 input[type="tel"]:focus,
.rewards-form-cf7 textarea:focus,
.rewards-form-cf7 select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 42, 199, 0.2);
}

.rewards-form-cf7 input.wpcf7-not-valid,
.rewards-form-cf7 textarea.wpcf7-not-valid,
.rewards-form-cf7 select.wpcf7-not-valid {
  border-color: #ff5a1f;
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.18);
}

.rewards-form-cf7 input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #ff2ac7;
  margin: 0 10px 0 0;
}

.rewards-form-cf7 .wpcf7-acceptance {
  display: block;
  padding: 0;
}

.rewards-form-cf7 .wpcf7-list-item {
  margin: 0;
}

.rewards-form-cf7 .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #f5f8ff;
  font-size: clamp(0.72rem, 0.95vw, 0.88rem);
  font-weight: 750;
  line-height: 1.45;
}

.rewards-form-cf7 .wpcf7-list-item-label {
  display: block;
}

.rewards-form-cf7 input[type="submit"],
.rewards-form-cf7 .wpcf7-submit {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff2ac7, #ff5a1f);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  min-height: 50px;
  padding: 16px 18px;
  text-align: center;
  text-transform: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  box-shadow: 0 18px 40px rgba(255, 42, 199, 0.26);
}

.rewards-form-cf7 input[type="submit"]:hover,
.rewards-form-cf7 .wpcf7-submit:hover,
.rewards-form-cf7 input[type="submit"]:focus-visible,
.rewards-form-cf7 .wpcf7-submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(255, 90, 31, 0.34);
}

.rewards-form-cf7 .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

.rewards-form-cf7 .wpcf7-not-valid-tip {
  color: #ffd4df;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 6px;
}

.rewards-form-cf7 .wpcf7-response-output {
  border-color: rgba(18, 217, 255, 0.55) !important;
  border-radius: 8px;
  background: rgba(2, 10, 30, 0.78);
  color: #f5f8ff;
  font-weight: 850;
  line-height: 1.35;
  margin: 14px 0 0 !important;
  padding: 12px 14px !important;
}

.rewards-form-cf7 form.invalid .wpcf7-response-output,
.rewards-form-cf7 form.unaccepted .wpcf7-response-output {
  border-color: rgba(255, 230, 0, 0.72) !important;
  color: #fff7a8;
}

.rewards-form-cf7 form.sent .wpcf7-response-output {
  border-color: rgba(49, 242, 134, 0.72) !important;
  color: #d9ffe8;
}

/* WordPress visual parity guard: keep the landing close to the approved static build. */
body.rockstar-landing-page {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0) 0%, var(--bg) 720px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.rockstar-landing-page [data-rockstar-landing] {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

body.rockstar-landing-page [data-rockstar-landing],
body.rockstar-landing-page [data-rockstar-landing] * {
  box-sizing: border-box;
}

body.rockstar-landing-page [data-rockstar-landing] :where(h1, h2, h3, h4, p, a, button, input, select, textarea, label, span, strong, em, li) {
  font-family: inherit;
  letter-spacing: 0;
}

body.rockstar-landing-page [data-rockstar-landing] :where(h1, h2, h3) {
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
  line-height: 1.02;
}

body.rockstar-landing-page [data-rockstar-landing] .site-header {
  top: 0;
  color: var(--ink);
}

body.admin-bar.rockstar-landing-page [data-rockstar-landing] .site-header {
  top: 32px;
}

body.admin-bar.rockstar-landing-page [data-rockstar-landing] .hero-section {
  min-height: calc(100svh - 32px);
}

@media (max-width: 782px) {
  body.admin-bar.rockstar-landing-page [data-rockstar-landing] .site-header {
    top: 46px;
  }

  body.admin-bar.rockstar-landing-page [data-rockstar-landing] .hero-section {
    min-height: calc(100svh - 46px);
  }
}

body.rockstar-landing-page [data-rockstar-landing] .hero-section,
body.rockstar-landing-page [data-rockstar-landing] .stage-background {
  position: relative;
}

body.rockstar-landing-page [data-rockstar-landing] .hero-section {
  position: relative;
}

body.rockstar-landing-page [data-rockstar-landing] .stage-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

body.rockstar-landing-page [data-rockstar-landing] .spotlight {
  top: -12%;
  height: 92%;
  transform-origin: top center;
}

body.rockstar-landing-page [data-rockstar-landing] .hero-content h1,
body.rockstar-landing-page [data-rockstar-landing] #hero-title {
  color: #fff;
  font-size: clamp(3rem, 6.4vw, 5.75rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 4px 0 #06142f, 0 0 22px rgba(18, 217, 255, 0.48);
}

body.rockstar-landing-page [data-rockstar-landing] .hero-copy {
  color: #d7e5ff;
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.66);
}

body.rockstar-landing-page [data-rockstar-landing] .site-nav a,
body.rockstar-landing-page [data-rockstar-landing] .button,
body.rockstar-landing-page [data-rockstar-landing] .nav-cta,
body.rockstar-landing-page [data-rockstar-landing] .language-toggle,
body.rockstar-landing-page [data-rockstar-landing] .membership,
body.rockstar-landing-page [data-rockstar-landing] .mini-cta {
  font-weight: 900;
  letter-spacing: 0;
}

body.rockstar-landing-page [data-rockstar-landing] .section-kicker,
body.rockstar-landing-page [data-rockstar-landing] .eyebrow {
  color: var(--yellow);
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 230, 0, 0.62);
}

body.rockstar-landing-page [data-rockstar-landing] .section-heading h2,
body.rockstar-landing-page [data-rockstar-landing] .menu-section h2,
body.rockstar-landing-page [data-rockstar-landing] .gallery-section h2,
body.rockstar-landing-page [data-rockstar-landing] .safety-section h2,
body.rockstar-landing-page [data-rockstar-landing] .booking-stage h2,
body.rockstar-landing-page [data-rockstar-landing] .rewards-copy h2 {
  color: #fff;
  font-size: clamp(2.45rem, 4.8vw, 4.7rem);
  font-weight: 1000;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
}

body.rockstar-landing-page [data-rockstar-landing] .section-heading p:last-child,
body.rockstar-landing-page [data-rockstar-landing] .menu-section .section-heading p,
body.rockstar-landing-page [data-rockstar-landing] .gallery-section .section-heading p,
body.rockstar-landing-page [data-rockstar-landing] .safety-copy p,
body.rockstar-landing-page [data-rockstar-landing] .booking-stage p,
body.rockstar-landing-page [data-rockstar-landing] .rewards-copy p:not(.section-kicker) {
  color: #edf5ff;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.64);
}

body.rockstar-landing-page [data-rockstar-landing] .card-top strong,
body.rockstar-landing-page [data-rockstar-landing] .package-card h3,
body.rockstar-landing-page [data-rockstar-landing] .service-card h3,
body.rockstar-landing-page [data-rockstar-landing] .menu-item h3,
body.rockstar-landing-page [data-rockstar-landing] .modal-copy h2 {
  color: #fff;
  font-weight: 1000;
  letter-spacing: 0;
}

body.rockstar-landing-page [data-rockstar-landing] .package-card li,
body.rockstar-landing-page [data-rockstar-landing] .service-card p,
body.rockstar-landing-page [data-rockstar-landing] .menu-item p,
body.rockstar-landing-page [data-rockstar-landing] .modal-copy p,
body.rockstar-landing-page [data-rockstar-landing] .modal-copy li {
  color: #eef5ff;
  font-weight: 650;
}

body.rockstar-landing-page [data-rockstar-landing] .pass-face span {
  color: var(--yellow);
  font-weight: 1000;
}

body.rockstar-landing-page [data-rockstar-landing] .pass-face strong {
  color: #fff;
  font-weight: 1000;
  line-height: 0.95;
  text-shadow: 0 4px 0 rgba(3, 10, 30, 0.55), 0 0 16px rgba(255, 255, 255, 0.22);
}

body.rockstar-landing-page [data-rockstar-landing] .pass-face em {
  color: #f7fbff;
  font-weight: 900;
}

body.rockstar-landing-page [data-rockstar-landing] .rewards-copy {
  background: rgba(4, 8, 20, 0.68);
}

body.rockstar-landing-page [data-rockstar-landing] .rewards-form,
body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 {
  color: #edf5ff;
  font-weight: 800;
}

body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 p,
body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 label {
  color: #dbe8ff;
  font-weight: 850;
}

body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-list-item label,
body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-list-item-label {
  color: #f5f8ff;
  font-size: clamp(0.72rem, 0.95vw, 0.88rem);
  font-weight: 800;
  line-height: 1.45;
}

body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="text"],
body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="email"],
body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="tel"],
body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 textarea,
body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 select {
  background: rgba(2, 10, 30, 0.94);
  color: #fff;
  font-weight: 850;
}

body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="submit"],
body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-submit {
  color: #fff;
  font-weight: 1000;
}

/* Final WordPress visual parity reinforcement. */
html body.rockstar-landing-page [data-rockstar-landing],
html body.rockstar-landing-page [data-rockstar-landing] :where(h1, h2, h3, h4, h5, h6, p, a, button, input, select, textarea, label, span, strong, em, li, figcaption) {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  letter-spacing: 0 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] :where(h1, h2, h3) {
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.02 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .site-header {
  top: 0 !important;
  color: #fff !important;
}

body.admin-bar.rockstar-landing-page [data-rockstar-landing] .site-header {
  top: 32px !important;
}

body.admin-bar.rockstar-landing-page [data-rockstar-landing] .hero-section {
  min-height: calc(100svh - 32px) !important;
}

@media (max-width: 782px) {
  body.admin-bar.rockstar-landing-page [data-rockstar-landing] .site-header {
    top: 46px !important;
  }

  body.admin-bar.rockstar-landing-page [data-rockstar-landing] .hero-section {
    min-height: calc(100svh - 46px) !important;
  }
}

html body.rockstar-landing-page [data-rockstar-landing] .hero-section {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .stage-background {
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  overflow: hidden !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .spotlight {
  top: -12% !important;
  height: 92% !important;
  transform-origin: top center !important;
}

html body.rockstar-landing-page [data-rockstar-landing] #hero-title,
html body.rockstar-landing-page [data-rockstar-landing] .hero-content h1 {
  color: #fff !important;
  font-size: clamp(3rem, 6.4vw, 5.75rem) !important;
  font-weight: 1000 !important;
  line-height: 1.02 !important;
  text-transform: uppercase !important;
  text-shadow: 0 4px 0 #06142f, 0 0 22px rgba(18, 217, 255, 0.48) !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .hero-copy,
html body.rockstar-landing-page [data-rockstar-landing] .intro-copy > p:not(.section-kicker),
html body.rockstar-landing-page [data-rockstar-landing] .section-heading > p,
html body.rockstar-landing-page [data-rockstar-landing] .section-heading div + p,
html body.rockstar-landing-page [data-rockstar-landing] .safety-copy > p:not(.section-kicker),
html body.rockstar-landing-page [data-rockstar-landing] .booking-stage p:not(.section-kicker),
html body.rockstar-landing-page [data-rockstar-landing] .rewards-copy > p:not(.section-kicker),
html body.rockstar-landing-page [data-rockstar-landing] .footer-brand p {
  color: #edf5ff !important;
  font-weight: 650 !important;
  line-height: 1.55 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.64) !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .eyebrow,
html body.rockstar-landing-page [data-rockstar-landing] .section-kicker {
  color: #ffe600 !important;
  font-size: 0.82rem !important;
  font-weight: 1000 !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 18px rgba(255, 230, 0, 0.62) !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .section-heading h2,
html body.rockstar-landing-page [data-rockstar-landing] .menu-section h2,
html body.rockstar-landing-page [data-rockstar-landing] .gallery-section h2,
html body.rockstar-landing-page [data-rockstar-landing] .safety-section h2,
html body.rockstar-landing-page [data-rockstar-landing] .booking-stage h2,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-copy h2 {
  color: #fff !important;
  font-size: clamp(2.45rem, 4.8vw, 4.7rem) !important;
  font-weight: 1000 !important;
  line-height: 1.02 !important;
  text-transform: uppercase !important;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72) !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .intro-image-title h2 {
  color: #fff !important;
  font-size: clamp(2rem, 4.6vw, 4.7rem) !important;
  font-weight: 1000 !important;
  line-height: 1.02 !important;
  text-transform: uppercase !important;
  text-shadow: 0 4px 0 #06142f, 0 0 24px rgba(255, 42, 199, 0.42) !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .site-nav a,
html body.rockstar-landing-page [data-rockstar-landing] .button,
html body.rockstar-landing-page [data-rockstar-landing] .nav-cta,
html body.rockstar-landing-page [data-rockstar-landing] .language-toggle,
html body.rockstar-landing-page [data-rockstar-landing] .membership,
html body.rockstar-landing-page [data-rockstar-landing] .mini-cta {
  font-weight: 900 !important;
  line-height: 1 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .site-nav a {
  color: #c4d4f2 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .site-nav a:hover,
html body.rockstar-landing-page [data-rockstar-landing] .site-nav a:focus-visible {
  color: #fff !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .card-top strong,
html body.rockstar-landing-page [data-rockstar-landing] .package-card h3,
html body.rockstar-landing-page [data-rockstar-landing] .service-card h3,
html body.rockstar-landing-page [data-rockstar-landing] .menu-item h3,
html body.rockstar-landing-page [data-rockstar-landing] .modal-copy h2,
html body.rockstar-landing-page [data-rockstar-landing] .safety-grid h3,
html body.rockstar-landing-page [data-rockstar-landing] .footer-links h2 {
  color: #fff !important;
  font-weight: 1000 !important;
  line-height: 1.12 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .package-card li,
html body.rockstar-landing-page [data-rockstar-landing] .service-card p,
html body.rockstar-landing-page [data-rockstar-landing] .menu-item p,
html body.rockstar-landing-page [data-rockstar-landing] .safety-grid p,
html body.rockstar-landing-page [data-rockstar-landing] .modal-copy p,
html body.rockstar-landing-page [data-rockstar-landing] .modal-copy li,
html body.rockstar-landing-page [data-rockstar-landing] .gallery-item figcaption,
html body.rockstar-landing-page [data-rockstar-landing] .footer-links a {
  color: #eef5ff !important;
  font-weight: 650 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .trust-list article strong {
  color: #fff !important;
  font-weight: 1000 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .trust-list article span {
  color: #dceaff !important;
  font-weight: 650 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .pass-face span {
  color: #ffe600 !important;
  font-weight: 1000 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .pass-face strong {
  color: #fff !important;
  font-weight: 1000 !important;
  line-height: 0.95 !important;
  text-shadow: 0 4px 0 rgba(3, 10, 30, 0.55), 0 0 16px rgba(255, 255, 255, 0.22) !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .pass-face em {
  color: #f7fbff !important;
  font-weight: 900 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-copy {
  background: rgba(4, 8, 20, 0.58) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 {
  background: rgba(4, 9, 22, 0.72) !important;
  color: #edf5ff !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 p,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 label {
  color: #dbe8ff !important;
  font-weight: 850 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="text"],
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="email"],
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="tel"],
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 textarea,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 select {
  width: 100% !important;
  min-height: 48px !important;
  border: 1px solid rgba(18, 217, 255, 0.52) !important;
  border-radius: 8px !important;
  background: rgba(2, 10, 30, 0.94) !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 850 !important;
  outline: none !important;
  padding: 13px 14px !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="text"]::placeholder,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="email"]::placeholder,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="tel"]::placeholder,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 textarea::placeholder {
  color: rgba(245, 248, 255, 0.62) !important;
  opacity: 1 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  accent-color: #ff2ac7 !important;
  margin: 0 10px 0 0 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-list-item,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-acceptance {
  margin: 0 !important;
  padding: 0 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-list-item label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  color: #f8fbff !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-list-item-label {
  color: #f8fbff !important;
  display: block !important;
  font-size: clamp(0.72rem, 0.95vw, 0.88rem) !important;
  font-weight: 850 !important;
  line-height: 1.45 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="submit"],
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-submit {
  width: 100% !important;
  min-height: 50px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #ff2ac7, #ff5a1f) !important;
  color: #fff !important;
  cursor: pointer !important;
  font-weight: 1000 !important;
  padding: 16px 18px !important;
  text-align: center !important;
  box-shadow: 0 18px 40px rgba(255, 42, 199, 0.26) !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-not-valid-tip {
  color: #ffd4df !important;
  font-size: 0.82rem !important;
  font-weight: 850 !important;
  margin-top: 6px !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-response-output {
  border: 1px solid rgba(18, 217, 255, 0.55) !important;
  border-radius: 8px !important;
  background: rgba(2, 10, 30, 0.82) !important;
  color: #f5f8ff !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
  margin: 14px 0 0 !important;
  padding: 12px 14px !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .booking-toast {
  background: rgba(5, 7, 20, 0.94) !important;
  color: #f8fbff !important;
  font-weight: 850 !important;
}

/* Rewards consent validation message + lighter legal text (final fix) */
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .rewards-consent-note,
html body [data-rockstar-landing] .rewards-form-cf7 .rewards-consent-note {
  display: none !important;
  margin: 7px 0 10px 28px !important;
  padding: 0 !important;
  color: #ffcc00 !important;
  font-size: 0.72rem !important;
  font-weight: 750 !important;
  line-height: 1.25 !important;
  position: relative !important;
  z-index: 5 !important;
  clear: both !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .rewards-consent-note.is-visible,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7.rewards-consent-error .rewards-consent-note,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 form.rewards-consent-error .rewards-consent-note,
html body [data-rockstar-landing] .rewards-form-cf7 .rewards-consent-note.is-visible,
html body [data-rockstar-landing] .rewards-form-cf7.rewards-consent-error .rewards-consent-note,
html body [data-rockstar-landing] .rewards-form-cf7 form.rewards-consent-error .rewards-consent-note {
  display: block !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .rewards-submit,
html body [data-rockstar-landing] .rewards-form-cf7 .rewards-submit {
  margin-top: 12px !important;
  position: relative !important;
  z-index: 1 !important;
  clear: both !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .rewards-consent .wpcf7-list-item-label,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-list-item-label,
html body [data-rockstar-landing] .rewards-form-cf7 .rewards-consent .wpcf7-list-item-label,
html body [data-rockstar-landing] .rewards-form-cf7 .wpcf7-list-item-label {
  font-weight: 500 !important;
}

/* Keep autofilled Rewards fields dark instead of browser light blue */
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="text"]:-webkit-autofill,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="email"]:-webkit-autofill,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="tel"]:-webkit-autofill,
html body [data-rockstar-landing] .rewards-form-cf7 input[type="text"]:-webkit-autofill,
html body [data-rockstar-landing] .rewards-form-cf7 input[type="email"]:-webkit-autofill,
html body [data-rockstar-landing] .rewards-form-cf7 input[type="tel"]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #061027 inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  border-color: rgba(18, 217, 255, 0.75) !important;
  transition: background-color 9999s ease-in-out 0s !important;
}


/* === Final approved fixes integrated from WordPress Additional CSS === */

/* Rewards final visual alignment after checkbox validation */
html body.rockstar-landing-page [data-rockstar-landing] .rewards-section,
html body [data-rockstar-landing] .rewards-section {
  align-items: flex-start !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-copy,
html body [data-rockstar-landing] .rewards-copy {
  align-self: flex-start !important;
  margin-top: 0 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form,
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7,
html body [data-rockstar-landing] .rewards-form,
html body [data-rockstar-landing] .rewards-form-cf7 {
  align-self: flex-start !important;
  margin-top: 0 !important;
  padding: 28px 34px !important;
}

/* Rewards fields compact spacing */
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .rewards-field,
html body [data-rockstar-landing] .rewards-form-cf7 .rewards-field {
  margin: 0 0 14px 0 !important;
  padding: 0 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .rewards-label,
html body [data-rockstar-landing] .rewards-form-cf7 .rewards-label {
  margin: 0 0 5px 0 !important;
  font-size: 0.82rem !important;
  line-height: 1 !important;
  font-weight: 750 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="text"],
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="email"],
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="tel"],
html body [data-rockstar-landing] .rewards-form-cf7 input[type="text"],
html body [data-rockstar-landing] .rewards-form-cf7 input[type="email"],
html body [data-rockstar-landing] .rewards-form-cf7 input[type="tel"] {
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 16px !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
}

/* Rewards checkbox alignment */
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .rewards-consent,
html body [data-rockstar-landing] .rewards-form-cf7 .rewards-consent {
  margin: 4px 0 10px 0 !important;
  padding: 0 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-acceptance label,
html body [data-rockstar-landing] .rewards-form-cf7 .wpcf7-acceptance label {
  display: grid !important;
  grid-template-columns: 16px 1fr !important;
  column-gap: 12px !important;
  align-items: flex-start !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 input[type="checkbox"],
html body [data-rockstar-landing] .rewards-form-cf7 input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  margin: 0.25em 0 0 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .wpcf7-list-item-label,
html body [data-rockstar-landing] .rewards-form-cf7 .wpcf7-list-item-label {
  font-size: 0.76rem !important;
  font-weight: 500 !important;
  line-height: 1.38 !important;
}

/* Rewards warning message spacing */
html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .rewards-consent-note,
html body [data-rockstar-landing] .rewards-form-cf7 .rewards-consent-note {
  margin: 8px 0 14px 28px !important;
  font-size: 0.72rem !important;
  font-weight: 750 !important;
  line-height: 1.25 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .rewards-form-cf7 .rewards-submit,
html body [data-rockstar-landing] .rewards-form-cf7 .rewards-submit {
  margin-top: 8px !important;
}

/* Mobile only: hide ducks and tighten Detail package spacing */
@media (max-width: 720px) {

  /* Hide section ducks on mobile */
  html body.rockstar-landing-page [data-rockstar-landing] .section-duck,
  html body [data-rockstar-landing] .section-duck {
    display: none !important;
  }

  /* Reduce empty space in section headings after removing ducks */
  html body.rockstar-landing-page [data-rockstar-landing] .section-heading-art,
  html body [data-rockstar-landing] .section-heading-art {
    gap: 10px !important;
    margin-bottom: 22px !important;
  }

  html body.rockstar-landing-page [data-rockstar-landing] .section-heading-art > p,
  html body [data-rockstar-landing] .section-heading-art > p {
    margin: 0 !important;
  }

  /* Detail Center mobile cards closer together */
  html body.rockstar-landing-page [data-rockstar-landing] .services-section .service-grid,
  html body [data-rockstar-landing] .services-section .service-grid {
    gap: 16px !important;
    row-gap: 16px !important;
  }

  html body.rockstar-landing-page [data-rockstar-landing] .services-section .service-card,
  html body [data-rockstar-landing] .services-section .service-card {
    min-height: auto !important;
    padding: 16px !important;
  }

  html body.rockstar-landing-page [data-rockstar-landing] .services-section .service-art,
  html body [data-rockstar-landing] .services-section .service-art {
    min-height: 96px !important;
    margin: 0 0 12px 0 !important;
    padding: 10px 72px 10px 10px !important;
  }

  html body.rockstar-landing-page [data-rockstar-landing] .services-section .service-title-img,
  html body [data-rockstar-landing] .services-section .service-title-img {
    height: 68px !important;
  }

  html body.rockstar-landing-page [data-rockstar-landing] .services-section .service-icon,
  html body [data-rockstar-landing] .services-section .service-icon {
    width: 64px !important;
    height: 76px !important;
  }

  html body.rockstar-landing-page [data-rockstar-landing] .services-section .service-card span,
  html body [data-rockstar-landing] .services-section .service-card span {
    min-height: 36px !important;
    margin-bottom: 12px !important;
  }

  html body.rockstar-landing-page [data-rockstar-landing] .services-section .service-card h3,
  html body [data-rockstar-landing] .services-section .service-card h3 {
    margin: 0 0 6px 0 !important;
  }

  html body.rockstar-landing-page [data-rockstar-landing] .services-section .service-card p,
  html body [data-rockstar-landing] .services-section .service-card p {
    margin-bottom: 12px !important;
  }
}

/* Mobile only: center Express / Detail titles and tighten Detail cards */
@media (max-width: 720px) {

  /* Center Express Wash and Detail Center title images */
  html body [data-rockstar-landing] .packages-section .section-heading-art,
  html body [data-rockstar-landing] .services-section .section-heading-art {
    text-align: center !important;
    justify-items: center !important;
    align-items: center !important;
    margin-bottom: 18px !important;
  }

  html body [data-rockstar-landing] .packages-section .section-title-art,
  html body [data-rockstar-landing] .services-section .section-title-art {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  html body [data-rockstar-landing] .packages-section .section-title-png,
  html body [data-rockstar-landing] .services-section .section-title-png,
  html body [data-rockstar-landing] .packages-section .express-title-png,
  html body [data-rockstar-landing] .services-section .detail-title-png {
    margin-left: auto !important;
    margin-right: auto !important;
    object-position: center center !important;
    max-width: 94% !important;
  }

  html body [data-rockstar-landing] .packages-section .section-heading-art > p,
  html body [data-rockstar-landing] .services-section .section-heading-art > p {
    text-align: left !important;
    width: 100% !important;
    margin-top: 6px !important;
    margin-bottom: 0 !important;
  }

  /* Force Detail Center cards closer together on mobile */
  html body [data-rockstar-landing] .services-section .service-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    row-gap: 10px !important;
  }

  html body [data-rockstar-landing] .services-section .service-card {
    margin: 0 !important;
    padding: 14px !important;
    min-height: auto !important;
  }

  html body [data-rockstar-landing] .services-section .service-card + .service-card {
    margin-top: 10px !important;
  }

  html body [data-rockstar-landing] .services-section .service-art {
    min-height: 86px !important;
    height: auto !important;
    margin: 0 0 10px 0 !important;
    padding: 8px 68px 8px 8px !important;
  }

  html body [data-rockstar-landing] .services-section .service-title-img {
    height: 58px !important;
    max-height: 58px !important;
  }

  html body [data-rockstar-landing] .services-section .service-icon {
    width: 58px !important;
    height: 66px !important;
    right: 8px !important;
    top: 8px !important;
  }

  html body [data-rockstar-landing] .services-section .service-card span {
    margin-bottom: 8px !important;
    min-height: 30px !important;
    padding: 0 10px !important;
  }

  html body [data-rockstar-landing] .services-section .service-card h3 {
    margin: 0 0 5px 0 !important;
  }

  html body [data-rockstar-landing] .services-section .service-card p {
    margin: 0 0 10px 0 !important;
    line-height: 1.35 !important;
  }
}

/* Service modal benefits: final readability and spacing fix */
html body.rockstar-landing-page [data-rockstar-landing] .modal-copy ol li,
html body.rockstar-landing-page [data-rockstar-landing] .modal-copy ol li span,
html body [data-rockstar-landing] .modal-copy ol li,
html body [data-rockstar-landing] .modal-copy ol li span {
  color: #eef5ff !important;
  font-weight: 650 !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .modal-copy ol li strong,
html body [data-rockstar-landing] .modal-copy ol li strong {
  display: inline !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  margin-right: 5px !important;
  text-shadow: none !important;
}

html body.rockstar-landing-page [data-rockstar-landing] .modal-copy ol li strong::after,
html body [data-rockstar-landing] .modal-copy ol li strong::after {
  content: " " !important;
}


/* Express Wash price circles: restore dark price text */
html body.rockstar-landing-page [data-rockstar-landing] .package-card .card-top strong,
html body [data-rockstar-landing] .package-card .card-top strong {
  color: #06142f !important;
  background: #ffffff !important;
  text-shadow: none !important;
  font-weight: 1000 !important;
}

/* Desktop hero headline: force center alignment */
@media (min-width: 721px) {
  html body.rockstar-landing-page [data-rockstar-landing] .hero-content {
    width: 100% !important;
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  html body.rockstar-landing-page [data-rockstar-landing] #hero-title,
  html body.rockstar-landing-page [data-rockstar-landing] .hero-content h1 {
    width: 100% !important;
    max-width: 960px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    align-self: center !important;
  }

  html body.rockstar-landing-page [data-rockstar-landing] .hero-copy {
    max-width: 780px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    align-self: center !important;
  }
}
