:root {
  --bg: #0a1c24;
  --bg-deep: rgba(6, 18, 24, 0.82);
  --bg-deep-2: rgba(8, 24, 32, 0.7);
  --card: rgba(255, 255, 255, 0.9);
  --card-strong: rgba(255, 255, 255, 0.96);
  --text: #0f1c20;
  --muted: #2c4a56;
  --line: rgba(15, 28, 32, 0.14);
  --accent: #4ed7f1;
  --accent-dark: #1ea2bd;
  --white: #fefefe;
  --shadow: 0 24px 60px rgba(6, 18, 24, 0.28);
  --shadow-card-3d:
    0 14px 24px rgba(6, 18, 24, 0.08),
    0 28px 54px rgba(6, 18, 24, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  --shadow-card-3d-hover:
    0 20px 32px rgba(6, 18, 24, 0.12),
    0 34px 70px rgba(6, 18, 24, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(78, 215, 241, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(221, 185, 116, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(6, 18, 24, 0.58), rgba(6, 18, 24, 0.82)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=90") center/cover no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 85%);
  opacity: 0.24;
}

body::after {
  content: "";
  position: fixed;
  inset: -14%;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(78, 215, 241, 0.24), transparent 18%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 78% 78%, rgba(78, 215, 241, 0.14), transparent 18%),
    radial-gradient(circle at 20% 82%, rgba(221, 185, 116, 0.16), transparent 20%);
  opacity: 0.54;
}

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

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

.site-shell {
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 20, 26, 0.22), rgba(255, 251, 246, 0.14) 18%, rgba(255, 248, 241, 0.22) 48%, rgba(255, 248, 241, 0.28)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=90") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 84% 16%, rgba(78, 215, 241, 0.16), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(6, 18, 24, 0.22), transparent 22%, rgba(255, 255, 255, 0.04) 58%, rgba(255, 248, 241, 0.1));
}

.site-shell > * {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(4, 10, 14, 0.78), rgba(6, 18, 24, 0.68)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=90") center/cover no-repeat;
  color: var(--white);
}

.subhero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(4, 10, 14, 0.74), rgba(6, 18, 24, 0.66)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=90") center/cover no-repeat;
  color: var(--white);
}

.hero::after,
.subhero::after {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.16), transparent 20%),
    radial-gradient(circle at 78% 18%, rgba(78, 215, 241, 0.18), transparent 22%),
    radial-gradient(circle at 68% 78%, rgba(221, 185, 116, 0.14), transparent 18%);
  filter: blur(12px);
}

.topbar,
.hero-grid,
.subhero-copy {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(4, 10, 14, 0.92), rgba(10, 26, 34, 0.86));
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(4, 10, 14, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding 180ms ease, border-radius 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: 246px;
  height: auto;
  max-height: 86px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: normal;
  box-shadow: none;
  filter: brightness(1.08) saturate(1.08) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
  transform: scale(1.68);
  transform-origin: left center;
  transition: width 180ms ease, height 180ms ease, transform 180ms ease, filter 180ms ease;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small,
.nav-links a,
.hero-stats span,
.card-label,
.card-details span,
.benefit-card p,
.destination-panel li,
.spotlight-grid p,
.footer,
label {
  color: rgba(255, 253, 249, 0.78);
}

.hero .lead,
.subhero .lead {
  color: rgba(255, 253, 249, 0.84);
}

.section .lead,
.contact .form-note,
.auth-card .form-note,
.portal-card .lead {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.nav-links a:hover {
  background: rgba(78, 215, 241, 0.16);
  box-shadow: 0 10px 24px rgba(4, 10, 14, 0.26);
}

.topbar .button-ghost {
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.topbar .button-ghost:hover {
  background: rgba(78, 215, 241, 0.2);
  box-shadow: 0 14px 28px rgba(4, 10, 14, 0.3);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(145deg, #4ed7f1, #3cb8d1);
  color: #0f1c20;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(15, 28, 32, 0.18);
}

.button-dark {
  color: var(--text);
  border-color: rgba(15, 43, 34, 0.14);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(87, 73, 61, 0.18);
}

.hero .button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 28px rgba(4, 10, 14, 0.24);
}

.hero .button-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 34px rgba(4, 10, 14, 0.3);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  padding: 64px 0 28px;
}

.hero-grid-mahindra {
  align-items: center;
}

.hero-grid-single {
  grid-template-columns: 1fr;
  max-width: 980px;
  padding-bottom: 26px;
}

.hero-home-copy {
  max-width: 860px;
}

.hero-home-copy h1 {
  max-width: none;
}

.hero-home-copy .eyebrow {
  opacity: 0;
  animation: heroTextReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
}

.hero-title-display {
  position: relative;
}

.hero-title-display span {
  display: inline-block;
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 222, 0.98) 24%, rgba(255, 255, 255, 1) 44%, rgba(233, 247, 255, 0.98) 62%, rgba(255, 255, 255, 0.98) 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 14px 30px rgba(4, 10, 14, 0.24));
  opacity: 0;
  animation:
    heroTextReveal 1100ms cubic-bezier(0.22, 1, 0.36, 1) 260ms forwards,
    heroTextSheen 8.5s ease-in-out 1.4s infinite;
}

.subhero-copy {
  padding: 56px 0 24px;
  max-width: 820px;
}

.subhero-copy h1 {
  max-width: 12ch;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: #ddb974;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
  max-width: 10ch;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.7rem;
}

.lead {
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 22px 0 0;
}

.hero-tagline {
  max-width: 18ch;
  margin-top: 16px;
  font-family: "Satisfy", "Roboto", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: rgba(255, 251, 245, 0.98);
  text-shadow: 0 10px 24px rgba(4, 10, 14, 0.28);
}

.hero-tagline span {
  display: inline-block;
  opacity: 0;
  animation:
    heroTextRevealSoft 1100ms cubic-bezier(0.22, 1, 0.36, 1) 520ms forwards,
    heroTaglineFloat 7.5s ease-in-out 1.9s infinite;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.center-actions {
  justify-content: center;
}

.pill-row,
.terrain-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-row span,
.terrain-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 253, 249, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
}

.terrain-row {
  margin: 10px 0 28px;
}

.terrain-row span,
.terrain-row-light span {
  background: rgba(193, 139, 51, 0.09);
  border-color: rgba(15, 43, 34, 0.08);
  color: var(--text);
}

.hero-stats {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats li,
.hero-card,
.benefit-card,
.destination-panel,
.spotlight-grid article,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(12px);
}

.hero-stats li {
  padding: 18px;
  border-radius: 20px;
}

.hero-stats strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--white);
}

.hero-card {
  padding: 28px;
  border-radius: 28px;
  align-self: end;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.hero-visual-section {
  padding-top: 24px;
}

.hero-visual-showcase {
  max-width: 1040px;
  margin: 0 auto;
}

.hero-visual-showcase .photo-copy p {
  color: rgba(255, 253, 249, 0.94);
  text-shadow: 0 10px 22px rgba(4, 10, 14, 0.42);
}

.hero-visual-showcase .photo-copy strong {
  color: var(--white);
  text-shadow: 0 14px 28px rgba(4, 10, 14, 0.48);
}

.hero-visual-showcase .hero-photo::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(9, 21, 17, 0.14), rgba(9, 21, 17, 0.84)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 22%);
}

.hero-photo,
.destination-spot {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-photo::before,
.destination-spot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(9, 21, 17, 0.06), rgba(9, 21, 17, 0.72)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 26%);
}

.hero-photo-main {
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(102, 162, 172, 0.22), rgba(15, 43, 34, 0.2)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1200&q=80") center 58%/cover;
}

.hero-photo-two {
  background:
    linear-gradient(135deg, rgba(219, 184, 122, 0.18), rgba(15, 43, 34, 0.22)),
    url("https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=800&q=80") center/cover;
}

.hero-photo-three {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(15, 43, 34, 0.24)),
    url("https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=800&q=80") center/cover;
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.photo-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.photo-copy p {
  margin: 0 0 8px;
  color: rgba(255, 253, 249, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.photo-copy strong {
  color: var(--white);
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.card-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.hero-card p {
  line-height: 1.7;
}

.card-details {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.card-details div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.card-details span {
  display: block;
  margin-bottom: 4px;
}

.card-details strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.section {
  padding: 84px 24px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.welcome-section {
  padding-top: 92px;
}

.welcome-heading {
  max-width: 960px;
  margin-bottom: 24px;
}

.welcome-heading h2 {
  max-width: 14ch;
  text-wrap: balance;
}

.welcome-panel {
  max-width: 1020px;
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(15, 28, 32, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 251, 246, 0.84));
  box-shadow: 0 20px 40px rgba(15, 43, 34, 0.08);
}

.welcome-copy {
  display: grid;
  gap: 16px;
  max-width: 74ch;
}

.welcome-copy p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.85;
}

.section .eyebrow,
.section p,
.section li,
.section label,
.form-note {
  color: var(--muted);
}

.intro-grid,
.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.brand-story-section .section-heading {
  max-width: 860px;
}

.intro-card {
  padding: 28px 30px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 241, 0.82));
  border: 1px solid rgba(15, 28, 32, 0.08);
  box-shadow: 0 18px 36px rgba(6, 18, 24, 0.08);
  backdrop-filter: blur(10px);
}

.intro-card p {
  margin: 0;
}

.brand-story-highlight {
  max-width: 980px;
  margin-top: 22px;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(8, 24, 32, 0.84), rgba(12, 35, 45, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 44px rgba(6, 18, 24, 0.18);
}

.brand-story-highlight p {
  margin: 0;
  max-width: 36ch;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.45;
  font-weight: 700;
  color: rgba(255, 253, 249, 0.96);
}

.story-grid,
.values-grid,
.package-grid,
.state-directory-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.state-directory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.intro-grid p,
.contact-copy p,
.benefit-card p,
.destination-panel li,
.spotlight-grid p,
label,
.form-note {
  font-size: 1rem;
  line-height: 1.8;
}

.form-feedback {
  min-height: 1.5em;
  margin: -4px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 600;
  color: var(--muted);
}

.form-feedback[data-tone="success"] {
  color: var(--accent-dark);
}

.form-feedback[data-tone="error"] {
  color: #a14d4d;
}

.benefit-grid,
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid-featured {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
}

.membership-benefits {
  margin-top: 22px;
}

.benefit-card,
.destination-panel,
.spotlight-grid article,
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.benefit-card,
.spotlight-grid article {
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-large {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(242, 229, 207, 0.92)),
    var(--card);
}

.story-card,
.package-card,
.state-card,
.cta-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 26px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.state-directory-group + .state-directory-group {
  margin-top: 34px;
}

.state-directory-group h3 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.state-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 255, 0.84)),
    var(--card);
  border-radius: 22px;
}

.state-card.state-card-has-image {
  background:
    linear-gradient(180deg, rgba(5, 20, 28, 0.18), rgba(5, 20, 28, 0.82)),
    var(--state-card-image) center/cover no-repeat;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 36px rgba(6, 18, 24, 0.18);
}

.state-card h3 {
  margin: 10px 0 14px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.state-card.state-card-has-image h3 {
  color: rgba(255, 253, 249, 0.98);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.state-card.state-card-has-image .eyebrow {
  color: rgba(255, 231, 180, 0.92);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
}

.state-destination-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.state-destination-list li {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 28, 32, 0.06);
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.state-card.state-card-has-image .state-destination-list li {
  background: rgba(7, 22, 30, 0.42);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(4px);
}

.state-itinerary {
  margin: 16px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

.state-card.state-card-has-image .state-itinerary {
  color: rgba(255, 253, 249, 0.9);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.state-card-actions {
  margin-top: 16px;
}

.state-inquire-button {
  min-height: 40px;
  padding: 0 18px;
}

.state-card.state-card-has-image .state-inquire-button {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.lead-small {
  max-width: 58rem;
  font-size: 1rem;
}

.stay-options-title {
  max-width: 17ch;
}

.stay-options-title span {
  color: var(--accent-dark);
}

.state-directory-toolbar {
  display: grid;
  grid-template-columns: 1.45fr minmax(240px, 320px);
  gap: 16px;
  align-items: start;
  margin: 26px 0 16px;
}

.state-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.state-filter-chip {
  appearance: none;
  border: 1px solid rgba(15, 28, 32, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.state-filter-chip:hover,
.state-filter-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(30, 162, 189, 0.3);
  box-shadow: 0 14px 24px rgba(30, 162, 189, 0.08);
  outline: none;
}

.state-filter-chip.is-active {
  background: linear-gradient(135deg, rgba(78, 215, 241, 0.18), rgba(255, 255, 255, 0.9));
  border-color: rgba(30, 162, 189, 0.34);
  color: var(--accent-dark);
}

.state-search {
  display: block;
}

.state-search input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 28, 32, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  box-shadow: 0 12px 24px rgba(6, 18, 24, 0.05);
}

.state-search input::placeholder {
  color: rgba(15, 28, 32, 0.42);
}

.state-search input:focus {
  outline: none;
  border-color: rgba(30, 162, 189, 0.34);
  box-shadow: 0 16px 28px rgba(30, 162, 189, 0.08);
}

.state-filter-summary {
  margin: 0 0 24px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--muted);
}

.story-card > * {
  position: relative;
  z-index: 1;
}

.story-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 148px;
  height: 148px;
  z-index: 0;
  pointer-events: none;
  background: url("about-card-watermark.png") center/contain no-repeat;
  opacity: 0.085;
  filter: saturate(1.02);
}

.story-card-vision {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 238, 0.94));
  border-color: rgba(255, 122, 63, 0.2);
  box-shadow: 0 18px 36px rgba(255, 122, 63, 0.08);
}

.story-card-mission {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 249, 255, 0.94));
  border-color: rgba(78, 173, 255, 0.2);
  box-shadow: 0 18px 36px rgba(78, 173, 255, 0.08);
}

.story-card-core {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 255, 242, 0.94));
  border-color: rgba(94, 242, 116, 0.2);
  box-shadow: 0 18px 36px rgba(94, 242, 116, 0.08);
}

.story-card-vision .eyebrow {
  color: #ff7a3f;
}

.story-card-mission .eyebrow {
  color: #4eadff;
}

.story-card-core .eyebrow {
  color: #5ef274;
}

.visual-intro {
  padding-top: 56px;
  padding-bottom: 12px;
}

.visual-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.visual-intro-grid-wide {
  grid-template-columns: 1.3fr 0.9fr;
}

.visual-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(15, 43, 34, 0.08);
  box-shadow: 0 20px 40px rgba(15, 43, 34, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
    linear-gradient(180deg, rgba(9, 21, 17, 0.08), rgba(9, 21, 17, 0.76));
}

.visual-card > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.visual-card h3 {
  color: var(--white);
}

.visual-card .eyebrow {
  color: rgba(255, 253, 249, 0.82);
}

.visual-card-family {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.08), rgba(193, 139, 51, 0.12)),
    url("https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.visual-card-resort {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.1), rgba(193, 139, 51, 0.12)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.visual-card-office {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.12), rgba(193, 139, 51, 0.1)),
    url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.visual-card-destination {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.08), rgba(193, 139, 51, 0.12)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.package-image {
  min-height: 210px;
  margin: -6px -6px 20px;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 -80px 100px rgba(15, 43, 34, 0.12);
}

.package-image-goa {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.1), rgba(193, 139, 51, 0.08)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80");
}

.package-image-rajasthan {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.1), rgba(193, 139, 51, 0.08)),
    url("https://images.unsplash.com/photo-1477587458883-47145ed94245?auto=format&fit=crop&w=1200&q=80");
}

.package-image-kerala {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.08), rgba(193, 139, 51, 0.08)),
    url("https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?auto=format&fit=crop&w=1200&q=80");
}

.package-image-dubai {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.08), rgba(193, 139, 51, 0.08)),
    url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1200&q=80");
}

.package-image-europe {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.1), rgba(193, 139, 51, 0.08)),
    url("https://images.unsplash.com/photo-1491557345352-5929e343eb89?auto=format&fit=crop&w=1200&q=80");
}

.package-image-singapore {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.08), rgba(193, 139, 51, 0.08)),
    url("https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=1200&q=80");
}

.package-image-three-star {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.1), rgba(193, 139, 51, 0.08)),
    url("https://images.unsplash.com/photo-1522798514-97ceb8c4f1c8?auto=format&fit=crop&w=1200&q=80");
}

.package-image-four-star {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.08), rgba(193, 139, 51, 0.08)),
    url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?auto=format&fit=crop&w=1200&q=80");
}

.package-image-resorts {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.08), rgba(193, 139, 51, 0.08)),
    url("https://images.unsplash.com/photo-1573843981267-be1999ff37cd?auto=format&fit=crop&w=1200&q=80");
}

.package-feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.package-feature-list li {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 28, 32, 0.06);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.destination-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 248, 237, 0.42));
  backdrop-filter: blur(6px);
}

.destination-spot {
  display: flex;
  align-items: end;
  min-height: 280px;
}

.destination-spot > div {
  position: relative;
  z-index: 1;
  padding: 22px;
  color: var(--white);
}

.destination-spot h3 {
  margin-bottom: 8px;
}

.destination-spot p {
  margin: 0;
  color: rgba(255, 253, 249, 0.86);
}

.destination-sundarbans {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.16), rgba(15, 43, 34, 0.3)),
    url("https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.destination-kashmir {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.18), rgba(15, 43, 34, 0.28)),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.destination-bali {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.12), rgba(15, 43, 34, 0.26)),
    url("https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.destination-dubai {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.12), rgba(15, 43, 34, 0.24)),
    url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.destination-panel {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(183, 131, 49, 0.1), rgba(255, 250, 242, 0.82)),
    var(--card);
}

.destination-panel ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 10px;
}

.destination-panel li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.56);
  border-radius: 14px;
}

.spotlight-grid article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 22px;
  background: rgba(183, 131, 49, 0.16);
  color: var(--accent-dark);
  font-weight: 800;
}

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

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-dark);
  font-weight: 800;
}

.package-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(193, 139, 51, 0.15);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.membership-band {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.72), rgba(245, 235, 217, 0.96));
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(15, 28, 32, 0.08);
  box-shadow: 0 22px 38px rgba(30, 162, 189, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 200ms ease;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 144px;
  height: 144px;
  z-index: 0;
  pointer-events: none;
  background: url("about-card-watermark.png") center/contain no-repeat;
  opacity: 0.06;
}

.plan-card.featured-plan {
  background:
    linear-gradient(180deg, rgba(78, 215, 241, 0.12), rgba(255, 255, 255, 0.92));
  border-color: rgba(30, 162, 189, 0.32);
  box-shadow: 0 26px 48px rgba(30, 162, 189, 0.16);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(193, 139, 51, 0.14);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-emi {
  margin: 10px 0 0;
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.plan-actions {
  margin-top: 20px;
}

.gallery-grid,
.testimonial-grid,
.package-detail-grid,
.perk-grid {
  display: grid;
  gap: 18px;
}

.gallery-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
}

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

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

.member-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.package-detail-grid {
  grid-template-columns: 1.35fr 0.75fr;
  align-items: start;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(15, 43, 34, 0.08);
  box-shadow: 0 20px 40px rgba(15, 43, 34, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.perk-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(15, 43, 34, 0.08);
  box-shadow: 0 20px 40px rgba(15, 43, 34, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.perk-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%),
    linear-gradient(180deg, rgba(9, 21, 17, 0.06), rgba(9, 21, 17, 0.84));
}

.perk-card > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.perk-card h3,
.perk-card p,
.perk-card .eyebrow {
  color: var(--white);
}

.perk-card p:last-child {
  margin: 12px 0 0;
  color: rgba(255, 253, 249, 0.88);
}

.perk-card-gym {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.14), rgba(15, 43, 34, 0.2)),
    url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.perk-card-movie {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.12), rgba(15, 43, 34, 0.2)),
    url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.perk-card-dinner {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.12), rgba(15, 43, 34, 0.2)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 32%),
    linear-gradient(180deg, rgba(9, 21, 17, 0.1), rgba(9, 21, 17, 0.8));
}

.gallery-card > div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

.gallery-card h3,
.gallery-card .eyebrow {
  color: var(--white);
}

.member-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(15, 43, 34, 0.08);
  box-shadow: 0 20px 40px rgba(15, 43, 34, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.member-card-large {
  min-height: 420px;
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(180deg, rgba(9, 21, 17, 0.1), rgba(9, 21, 17, 0.82));
}

.member-card > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.member-card h3,
.member-card p,
.member-card .eyebrow {
  color: var(--white);
}

.member-card p:last-child {
  margin: 12px 0 0;
  color: rgba(255, 253, 249, 0.86);
}

.member-card-family {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.12), rgba(15, 43, 34, 0.18)),
    url("member-photo-5-opt.jpeg") center 24% / cover no-repeat;
}

.member-card-couple {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.12), rgba(15, 43, 34, 0.18)),
    url("member-photo-1-opt.jpeg") center 22% / cover no-repeat;
}

.member-card-citybreak {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.12), rgba(15, 43, 34, 0.18)),
    url("member-photo-4-opt.jpeg") center 18% / cover no-repeat;
}

.trust-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(15, 43, 34, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: rgba(78, 215, 241, 0.14);
  color: var(--accent-dark);
  font-weight: 800;
}

.gallery-card-beach {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.08), rgba(193, 139, 51, 0.12)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.gallery-card-forest {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.1), rgba(193, 139, 51, 0.08)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.gallery-card-city {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.08), rgba(193, 139, 51, 0.1)),
    url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.gallery-card-mountain {
  background:
    linear-gradient(135deg, rgba(15, 43, 34, 0.08), rgba(193, 139, 51, 0.08)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.testimonial-card,
.detail-sidebar,
.detail-copy {
  padding: 26px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
}

.safe-pay-grid,
.faq-chat-layout {
  display: grid;
  gap: 18px;
}

.safe-pay-grid {
  grid-template-columns: 1fr 1fr;
}

.safe-pay-card,
.faq-chat-card,
.faq-suggestions {
  padding: 26px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
}

.safe-pay-highlight {
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.96), rgba(247, 235, 209, 0.96));
}

.faq-chat-layout {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.faq-chat-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.faq-chat-header h3,
.faq-suggestions h3 {
  margin-bottom: 8px;
}

.faq-chat-header p {
  margin: 0;
  color: var(--muted);
}

.faq-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(18, 54, 41, 0.08);
  color: var(--bg-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-messages {
  display: grid;
  gap: 12px;
  min-height: 260px;
  max-height: 420px;
  overflow-y: auto;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(15, 43, 34, 0.08);
}

.chat-bubble {
  max-width: 85%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.7;
}

.chat-bubble-user {
  margin-left: auto;
  background: rgba(18, 54, 41, 0.12);
  color: var(--text);
}

.chat-bubble-bot {
  background: rgba(193, 139, 51, 0.14);
  color: var(--text);
}

.faq-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 16px;
}

.faq-chip-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.faq-chip {
  text-align: left;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 43, 34, 0.08);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 43, 34, 0.1);
}

.faq-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 8px;
}

.faq-widget-launch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(8, 24, 32, 0.96), rgba(16, 44, 54, 0.92));
  color: var(--white);
  font: inherit;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: grab;
  box-shadow: 0 18px 34px rgba(6, 18, 24, 0.24);
  backdrop-filter: blur(12px);
  user-select: none;
  touch-action: none;
  white-space: nowrap;
}

.faq-widget-dragging .faq-widget-launch {
  cursor: grabbing;
  box-shadow: 0 26px 46px rgba(6, 18, 24, 0.34);
}

.faq-widget-launch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(145deg, #6fe6fc, #4ed7f1);
  box-shadow: 0 0 0 3px rgba(78, 215, 241, 0.14);
}

.faq-widget-panel {
  width: min(318px, calc(100vw - 24px));
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 251, 246, 0.98);
  border: 1px solid rgba(15, 28, 32, 0.1);
  box-shadow: 0 28px 60px rgba(6, 18, 24, 0.24);
}

.faq-widget-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.faq-widget-top h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
  line-height: 1.05;
}

.faq-widget-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.faq-widget-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-widget-close {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(15, 28, 32, 0.12);
  background: rgba(15, 28, 32, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(6, 18, 24, 0.08);
}

.faq-widget-close span {
  display: inline-block;
  transform: translateY(-1px);
}

.faq-widget-close:hover {
  background: rgba(15, 28, 32, 0.12);
}

.faq-widget-panel .chat-messages {
  min-height: 156px;
  max-height: 230px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-widget-panel .chat-bubble {
  max-width: 88%;
  padding: 10px 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq-widget-panel .faq-chat-form {
  margin-top: 10px;
}

.faq-widget-panel .faq-chip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.faq-widget-panel .faq-chip {
  padding: 9px 10px;
  font-size: 0.82rem;
  border-radius: 12px;
}

.faq-widget[hidden] {
  display: none;
}

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

.testimonial-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.testimonial-photo {
  position: relative;
  min-height: 190px;
  margin: -26px -26px 22px;
  background-position: center;
  background-size: cover;
}

.testimonial-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(180deg, rgba(9, 21, 17, 0.08), rgba(9, 21, 17, 0.66));
}

.testimonial-photo span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.testimonial-photo-family {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.12), rgba(15, 43, 34, 0.18)),
    url("member-photo-3-opt.jpeg");
  background-position: center 18%;
}

.testimonial-photo-couple {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.12), rgba(15, 43, 34, 0.18)),
    url("member-photo-2-opt.jpeg");
  background-position: center 20%;
}

.testimonial-photo-member {
  background-image:
    linear-gradient(135deg, rgba(15, 43, 34, 0.12), rgba(15, 43, 34, 0.18)),
    url("member-photo-6-opt.jpeg");
  background-position: center 18%;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0 0 20px;
}

.testimonial-name {
  margin: 0;
  font-weight: 800;
  color: var(--text);
}

.testimonial-meta {
  margin: 6px 0 0;
  color: var(--muted);
}

.package-hero-image {
  min-height: 360px;
  border-radius: 24px;
  margin-bottom: 18px;
  background-size: cover;
  background-position: center;
}

.detail-copy h2,
.detail-copy h3,
.detail-sidebar h3 {
  margin-bottom: 14px;
}

.plan-key {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--accent-dark);
  font-weight: 800;
}

.feature-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
}

.contact {
  align-items: start;
}

.auth-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.auth-layout-single {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-inline: auto;
}

.auth-layout-single .auth-card {
  padding: 24px;
  border-radius: 24px;
}

.auth-layout-single .auth-form {
  gap: 12px;
  margin-top: 18px;
}

.auth-layout-single .auth-note {
  margin-top: 16px;
  padding: 16px 18px;
}

.auth-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(6, 18, 24, 0.08);
}

.auth-card-plain {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.auth-card > .eyebrow {
  color: var(--accent-dark);
}

.auth-card h3 {
  margin-bottom: 14px;
}

.auth-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.auth-card-dark {
  background: linear-gradient(145deg, rgba(8, 24, 32, 0.9), rgba(10, 31, 41, 0.84));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 44px rgba(6, 18, 24, 0.22);
}

.auth-card-dark h3,
.auth-card-dark label,
.auth-card-dark strong {
  color: var(--white);
}

.auth-card-dark > p,
.auth-card-dark .form-note,
.auth-card-dark .form-feedback {
  color: rgba(255, 253, 249, 0.82);
}

.auth-card-dark > .eyebrow {
  color: #ddb974;
}

.auth-card-dark input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.auth-card-dark input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.auth-card-dark input:focus {
  outline: 2px solid rgba(78, 215, 241, 0.26);
  border-color: rgba(78, 215, 241, 0.44);
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.auth-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-note p {
  margin: 8px 0 0;
  color: rgba(255, 253, 249, 0.8);
  line-height: 1.7;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.portal-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(6, 18, 24, 0.08);
}

.portal-card-highlight {
  background: linear-gradient(145deg, rgba(8, 24, 32, 0.9), rgba(10, 31, 41, 0.82));
  border-color: rgba(255, 255, 255, 0.1);
}

.portal-card-highlight h2,
.portal-card-highlight .eyebrow,
.portal-card-highlight .portal-lead {
  color: var(--white);
}

.portal-lead {
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 34ch;
}

.portal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

:is(
  .welcome-panel,
  .intro-card,
  .brand-story-highlight,
  .benefit-card,
  .destination-panel,
  .spotlight-grid article,
  .story-card,
  .package-card,
  .state-card,
  .cta-panel,
  .plan-card,
  .trust-card,
  .testimonial-card,
  .detail-sidebar,
  .detail-copy,
  .safe-pay-card,
  .faq-chat-card,
  .faq-suggestions,
  .auth-card,
  .portal-card,
  .contact-form
) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    var(--shadow-card-3d),
    0 18px 32px var(--box-3d-accent, rgba(78, 215, 241, 0.07));
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

:is(
  .welcome-panel,
  .intro-card,
  .brand-story-highlight,
  .benefit-card,
  .destination-panel,
  .spotlight-grid article,
  .story-card,
  .package-card,
  .state-card,
  .cta-panel,
  .plan-card,
  .trust-card,
  .testimonial-card,
  .detail-sidebar,
  .detail-copy,
  .safe-pay-card,
  .faq-chat-card,
  .faq-suggestions,
  .auth-card,
  .portal-card,
  .contact-form
)::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.42), transparent 36%),
    linear-gradient(180deg, transparent 64%, rgba(8, 24, 32, 0.05));
  opacity: 0.72;
}

:is(
  .welcome-panel,
  .intro-card,
  .brand-story-highlight,
  .benefit-card,
  .destination-panel,
  .spotlight-grid article,
  .story-card,
  .package-card,
  .state-card,
  .cta-panel,
  .plan-card,
  .trust-card,
  .testimonial-card,
  .detail-sidebar,
  .detail-copy,
  .safe-pay-card,
  .faq-chat-card,
  .faq-suggestions,
  .auth-card,
  .portal-card,
  .contact-form
) > * {
  position: relative;
  z-index: 1;
}

.story-card-vision {
  --box-3d-accent: rgba(255, 122, 63, 0.09);
}

.story-card-mission {
  --box-3d-accent: rgba(78, 173, 255, 0.1);
}

.story-card-core {
  --box-3d-accent: rgba(94, 242, 116, 0.1);
}

.plan-card.featured-plan,
.auth-card-dark,
.portal-card-highlight {
  --box-3d-accent: rgba(78, 215, 241, 0.12);
}

.brand-story-highlight::before,
.auth-card-dark::before,
.portal-card-highlight::before {
  opacity: 0.26;
}

.portal-detail-list {
  display: grid;
  gap: 14px;
}

.portal-detail-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 28, 32, 0.08);
}

.contact-copy {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(6, 18, 24, 0.08);
}

.contact .contact-copy p {
  color: var(--muted);
}

.contact-intro h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.15rem);
  line-height: 1.05;
  max-width: 10ch;
}

.contact-intro p:last-child {
  max-width: 54ch;
  margin-top: 18px;
}

.contact-details {
  margin-top: 28px;
}

.contact-detail-list {
  display: grid;
  gap: 14px;
}

.contact-detail-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 28, 32, 0.08);
}

.contact-detail-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail-value {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.contact .contact-detail-value,
.contact-details-dark .contact-detail-value {
  color: var(--text);
}

.contact-detail-value a {
  color: var(--text);
  font-weight: 700;
}

.contact-phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.contact-divider {
  color: rgba(44, 74, 86, 0.38);
  margin: 0 8px;
}

.contact-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.contact-details-dark p,
.form-note-dark {
  color: var(--muted);
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 54, 41, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(183, 131, 49, 0.35);
  border-color: rgba(183, 131, 49, 0.55);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 8px 24px 28px;
  color: var(--muted);
}

.footer-nav-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 28, 32, 0.08);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  flex: 0 1 920px;
}

.footer-socials {
  display: none;
}

.footer > p {
  order: 2;
  margin: 0;
  max-width: none;
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(15, 28, 32, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0;
  line-height: 1;
  overflow: hidden;
  text-indent: -9999px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-button::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateZ(0);
}

.social-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(6, 18, 24, 0.1);
}

.social-button-facebook {
  border-color: rgba(24, 119, 242, 0.18);
  background: linear-gradient(145deg, rgba(24, 119, 242, 0.1), rgba(255, 255, 255, 0.82));
  color: #1877f2;
}

.social-button-facebook::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.5 8.8V6.8c0-.53.43-.96.96-.96H17V2.5h-3.1A4.9 4.9 0 0 0 9 7.4v1.4H6v3.6h3V21h3.8v-8.6h3.1l.6-3.6h-3.7Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.5 8.8V6.8c0-.53.43-.96.96-.96H17V2.5h-3.1A4.9 4.9 0 0 0 9 7.4v1.4H6v3.6h3V21h3.8v-8.6h3.1l.6-3.6h-3.7Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-button-instagram {
  border-color: rgba(225, 48, 108, 0.16);
  background: linear-gradient(145deg, rgba(225, 48, 108, 0.08), rgba(255, 255, 255, 0.82));
  color: #e1306c;
}

.social-button-instagram::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.2 3h9.6A4.2 4.2 0 0 1 21 7.2v9.6a4.2 4.2 0 0 1-4.2 4.2H7.2A4.2 4.2 0 0 1 3 16.8V7.2A4.2 4.2 0 0 1 7.2 3Zm0 1.8A2.4 2.4 0 0 0 4.8 7.2v9.6a2.4 2.4 0 0 0 2.4 2.4h9.6a2.4 2.4 0 0 0 2.4-2.4V7.2a2.4 2.4 0 0 0-2.4-2.4H7.2Zm10.05 1.35a1.05 1.05 0 1 1 0 2.1 1.05 1.05 0 0 1 0-2.1ZM12 7.8A4.2 4.2 0 1 1 7.8 12 4.2 4.2 0 0 1 12 7.8Zm0 1.8A2.4 2.4 0 1 0 14.4 12 2.4 2.4 0 0 0 12 9.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.2 3h9.6A4.2 4.2 0 0 1 21 7.2v9.6a4.2 4.2 0 0 1-4.2 4.2H7.2A4.2 4.2 0 0 1 3 16.8V7.2A4.2 4.2 0 0 1 7.2 3Zm0 1.8A2.4 2.4 0 0 0 4.8 7.2v9.6a2.4 2.4 0 0 0 2.4 2.4h9.6a2.4 2.4 0 0 0 2.4-2.4V7.2a2.4 2.4 0 0 0-2.4-2.4H7.2Zm10.05 1.35a1.05 1.05 0 1 1 0 2.1 1.05 1.05 0 0 1 0-2.1ZM12 7.8A4.2 4.2 0 1 1 7.8 12 4.2 4.2 0 0 1 12 7.8Zm0 1.8A2.4 2.4 0 1 0 14.4 12 2.4 2.4 0 0 0 12 9.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.floating-socials {
  position: fixed;
  top: 52%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 44;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 8px 7px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 250, 253, 0.76)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 20px 34px rgba(4, 10, 14, 0.16),
    0 0 0 1px rgba(78, 215, 241, 0.06);
  backdrop-filter: blur(12px);
}

.floating-socials-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-socials .social-button {
  position: relative;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 12px 20px rgba(4, 10, 14, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  background-clip: padding-box;
}

.floating-socials .social-button::before {
  width: 17px;
  height: 17px;
}

.floating-socials .social-button:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 20px 32px rgba(4, 10, 14, 0.22),
    0 0 0 4px rgba(255, 255, 255, 0.18);
}

.floating-socials .social-button-facebook {
  background: linear-gradient(145deg, #2d7eff, #1460d8);
  border-color: rgba(24, 119, 242, 0.34);
  color: #ffffff;
}

.floating-socials .social-button-instagram {
  background:
    linear-gradient(145deg, #ff7a18, #ff2f92 48%, #a33cff 100%);
  border-color: rgba(225, 48, 108, 0.3);
  color: #ffffff;
}

:is(
  .welcome-panel,
  .intro-card,
  .brand-story-highlight,
  .benefit-card,
  .destination-panel,
  .spotlight-grid article,
  .story-card,
  .package-card,
  .state-card,
  .cta-panel,
  .plan-card,
  .trust-card,
  .testimonial-card,
  .detail-sidebar,
  .detail-copy,
  .safe-pay-card,
  .faq-chat-card,
  .faq-suggestions,
  .auth-card,
  .portal-card,
  .contact-form
):hover {
  transform: perspective(1200px) translate3d(0, -8px, 0) rotateX(4deg);
  border-color: rgba(78, 215, 241, 0.2);
  box-shadow:
    var(--shadow-card-3d-hover),
    0 24px 44px var(--box-3d-accent, rgba(78, 215, 241, 0.12));
}

.member-card:hover,
.perk-card:hover,
.hero-photo:hover,
.destination-spot:hover,
.visual-card:hover,
.gallery-card:hover,
.faq-chip:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(30, 162, 189, 0.14);
}

@keyframes ambientFloat {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  50% {
    transform: translate3d(2%, 2%, 0) scale(1.06);
  }

  100% {
    transform: translate3d(-1%, 3%, 0) scale(1.02);
  }
}

@keyframes backgroundGridFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }

  100% {
    transform: translate3d(-6px, 4px, 0);
  }
}

@keyframes heroGlowShift {
  0% {
    transform: translate3d(-1%, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(2%, -2%, 0) scale(1.04);
  }

  100% {
    transform: translate3d(-2%, 2%, 0) scale(1.02);
  }
}

@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroTextRevealSoft {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) rotate(-1.2deg);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes heroTextSheen {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroTaglineFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -3px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes visualDrift {
  0% {
    background-position: center;
  }

  50% {
    background-position: 52% 48%;
  }

  100% {
    background-position: 48% 52%;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .contact,
  .auth-layout,
  .portal-grid,
  .story-grid,
  .values-grid,
  .package-grid,
  .state-directory-grid,
  .plan-grid,
  .gallery-grid,
  .perk-grid,
  .testimonial-grid,
  .package-detail-grid,
  .safe-pay-grid,
  .faq-chat-layout,
  .visual-intro-grid,
  .benefit-grid,
  .spotlight-grid,
  .destination-columns,
  .destination-grid {
    grid-template-columns: 1fr;
  }

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

  .benefit-grid,
  .spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-showcase,
  .trust-grid,
  .values-grid,
  .package-grid,
  .state-directory-grid,
  .plan-grid,
  .spotlight-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .state-directory-toolbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(1180px, calc(100% - 16px));
    margin: 8px auto;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(7, 20, 26, 0.26), rgba(255, 251, 246, 0.16) 18%, rgba(255, 248, 241, 0.24) 48%, rgba(255, 248, 241, 0.3)),
      url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1100&q=72") center/cover no-repeat;
    box-shadow: 0 18px 34px rgba(6, 18, 24, 0.22);
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(78, 215, 241, 0.16), transparent 24%),
      radial-gradient(circle at bottom right, rgba(221, 185, 116, 0.14), transparent 28%),
      linear-gradient(180deg, rgba(6, 18, 24, 0.58), rgba(6, 18, 24, 0.82)),
      url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1100&q=72") center/cover no-repeat;
  }

  body::before,
  body::after,
  .site-shell::before,
  .hero::after,
  .subhero::after {
    display: none;
  }

  .hero,
  .subhero {
    background:
      linear-gradient(135deg, rgba(4, 10, 14, 0.76), rgba(6, 18, 24, 0.68)),
      url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1100&q=72") center/cover no-repeat;
  }

  .hero-title-display span {
    animation: heroTextReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
    background-size: 100% 100%;
  }

  .hero-tagline span {
    animation: heroTextRevealSoft 1000ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards;
  }

  .hero-stats li,
  .hero-card,
  .benefit-card,
  .destination-panel,
  .spotlight-grid article,
  .contact-form,
  .intro-card,
  .safe-pay-card,
  .faq-chat-card,
  .faq-suggestions,
  .testimonial-photo span,
  .faq-widget-launch,
  .faq-widget-panel,
  .floating-socials,
  .state-card.state-card-has-image .state-destination-list li {
    backdrop-filter: none;
  }

  .hero-photo,
  .destination-spot,
  .benefit-card,
  .spotlight-grid article,
  .story-card,
  .package-card,
  .state-card,
  .plan-card,
  .trust-card,
  .testimonial-card,
  .auth-card,
  .portal-card,
  .contact-form,
  .faq-chip,
  .button {
    transition: none;
  }

  .hero-photo,
  .destination-spot,
  .story-card,
  .package-card,
  .state-card,
  .plan-card,
  .trust-card,
  .testimonial-card,
  .auth-card,
  .portal-card,
  .contact-form {
    box-shadow: 0 14px 24px rgba(6, 18, 24, 0.1);
  }

  .hero,
  .section,
  .subhero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .welcome-panel {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .intro-card,
  .auth-card,
  .brand-story-highlight {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .topbar {
    flex-wrap: wrap;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .brand {
    padding-left: 0;
  }

  .brand-logo {
    width: 168px;
    max-height: 56px;
    transform: scale(1.24);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .topbar .button-ghost {
    justify-content: center;
    width: 100%;
  }

  .hero-grid {
    padding-top: 40px;
  }

  .hero-grid-single {
    max-width: none;
    padding-bottom: 8px;
  }

  .hero-home-copy {
    max-width: none;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.6rem, 11vw, 4.2rem);
    line-height: 1.06;
  }

  .subhero-copy h1,
  .welcome-heading h2,
  .contact-intro h2 {
    max-width: none;
  }

  .contact-phone-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-tagline {
    max-width: 18ch;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .hero-visual-section {
    padding-top: 8px;
  }

  .hero-visual-showcase {
    max-width: none;
  }

  .hero-photo-main {
    background:
      linear-gradient(135deg, rgba(102, 162, 172, 0.22), rgba(15, 43, 34, 0.2)),
      url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=900&q=72") center 58%/cover;
  }

  .hero-photo-two {
    background:
      linear-gradient(135deg, rgba(219, 184, 122, 0.18), rgba(15, 43, 34, 0.22)),
      url("https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=780&q=72") center/cover;
  }

  .hero-photo-three {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(15, 43, 34, 0.24)),
      url("https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=780&q=72") center/cover;
  }

  .faq-widget {
    right: 10px;
    bottom: 10px;
    left: 12px;
  }

  .faq-widget-launch {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .faq-widget-panel {
    width: 100%;
    padding: 13px;
    border-radius: 18px;
  }

  .faq-widget-panel .faq-chip-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .spotlight-grid,
  .values-grid,
  .package-grid,
  .state-directory-grid,
  .plan-grid,
  .member-showcase,
  .trust-grid,
  .gallery-grid,
  .perk-grid,
  .testimonial-grid,
  .package-detail-grid,
  .safe-pay-grid,
  .faq-chat-layout,
  .visual-intro-grid,
  .spotlight-grid-three {
    grid-template-columns: 1fr;
  }

  .member-card-large {
    min-height: 320px;
  }

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

  .destination-panel ul {
    grid-template-columns: 1fr;
  }

  .state-filter-chips {
    gap: 8px;
  }

  .state-filter-chip {
    padding: 9px 14px;
    font-size: 0.9rem;
  }

  .footer {
    align-items: center;
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-nav-group {
    justify-content: center;
    gap: 14px;
  }

  .footer-links {
    flex: 0 1 100%;
    justify-content: center;
    gap: 14px 16px;
  }

  .footer-socials {
    justify-content: center;
  }

  .floating-socials {
    top: auto;
    right: 12px;
    bottom: 78px;
    transform: none;
    padding: 7px 6px;
  }

  .floating-socials .social-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }

  .floating-socials .social-button::before {
    width: 15px;
    height: 15px;
  }

  .footer > p {
    text-align: center;
    white-space: normal;
  }
}

@media (hover: none) and (pointer: coarse) {
  :is(
    .welcome-panel,
    .intro-card,
    .brand-story-highlight,
    .benefit-card,
    .destination-panel,
    .spotlight-grid article,
    .story-card,
    .package-card,
    .state-card,
    .cta-panel,
    .plan-card,
    .trust-card,
    .testimonial-card,
    .detail-sidebar,
    .detail-copy,
    .safe-pay-card,
    .faq-chat-card,
    .faq-suggestions,
  .auth-card,
  .portal-card,
  .contact-form
  ):hover,
  .member-card:hover,
  .perk-card:hover,
  .hero-photo:hover,
  .destination-spot:hover,
  .visual-card:hover,
  .gallery-card:hover,
  .faq-chip:hover {
    transform: none;
  }
}

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

  body::before,
  body::after,
  .hero::after,
  .subhero::after,
  .hero-photo-main,
  .hero-photo-two,
  .hero-photo-three,
  .hero-home-copy .eyebrow,
  .hero-title-display span,
  .hero-tagline span {
    animation: none;
  }

  .button,
  .welcome-panel,
  .intro-card,
  .brand-story-highlight,
  .benefit-card,
  .destination-panel,
  .spotlight-grid article,
  .story-card,
  .package-card,
  .state-card,
  .cta-panel,
  .trust-card,
  .testimonial-card,
  .detail-sidebar,
  .detail-copy,
  .safe-pay-card,
  .faq-chat-card,
  .faq-suggestions,
  .auth-card,
  .portal-card,
  .contact-form,
  .hero-photo,
  .destination-spot,
  .visual-card,
  .plan-card {
    transition: none;
  }
}
