/* Final spacing override for mobile View Details content */
@media (max-width: 768px) {
  .landing-detail-body {
    padding: 1.22rem 1.08rem calc(5.1rem + env(safe-area-inset-bottom, 0)) !important;
    gap: 1.02rem !important;
  }

  .landing-detail-type {
    margin: 0 0 0.3rem !important;
    padding: 0.28rem 0.62rem !important;
  }

  .landing-detail-title {
    margin: 0 0 0.44rem !important;
    line-height: 1.32 !important;
  }

  .landing-detail-desc {
    margin: 0 0 0.7rem !important;
    line-height: 1.64 !important;
  }

  .landing-detail-specs {
    margin: 0.12rem 0 0.48rem !important;
    gap: 0.68rem !important;
  }

  .landing-detail-spec {
    min-height: 44px !important;
    padding: 0.45rem 0.66rem !important;
  }

  .landing-detail-meta-row {
    margin: 0.12rem 0 0.42rem !important;
    gap: 0.58rem !important;
  }

  .landing-detail-amenities {
    margin: 0.12rem 0 0.52rem !important;
    gap: 0.56rem !important;
  }

  .landing-detail-amenity {
    padding: 0.42rem 0.66rem !important;
  }
}
/* ==========================================================================
   Lei's Resort — Landing page (same font & palette as admin, premium UI/UX)
   ========================================================================== */

:root {
  --lp-font:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --lp-dark: #0f2744;
  --lp-dark-soft: #1a3a5c;
  --lp-gold: #c9a24f;
  --lp-gold-hover: #b8923f;
  --lp-gold-soft: rgba(201, 162, 79, 0.15);
  --lp-text: #1f2937;
  --lp-text-muted: #6b7280;
  --lp-white: #ffffff;
  --lp-bg: #f8fafc;
  --lp-bg-alt: #f1f5f9;
  --lp-border: rgba(0, 0, 0, 0.08);
  --lp-shadow-sm: 0 1px 3px rgba(15, 39, 68, 0.06);
  --lp-shadow: 0 4px 20px rgba(15, 39, 68, 0.08);
  --lp-shadow-lg: 0 12px 40px rgba(15, 39, 68, 0.12);
  --lp-radius: 12px;
  --lp-radius-sm: 8px;
  --lp-transition: 0.2s ease;
  --lp-header-h: 72px;

  /* Header palette: initial (over hero) vs scrolled — clear behavioral design */
  --header-initial-bg: transparent;
  --header-initial-text: #ffffff;
  --header-initial-text-secondary: rgba(255, 255, 255, 0.82);
  --header-initial-accent: rgba(255, 255, 255, 0.65);
  --header-initial-btn-bg: rgba(255, 255, 255, 0.12);
  --header-initial-btn-border: rgba(255, 255, 255, 0.9);
  --header-initial-btn-text: #ffffff;

  --header-scrolled-bg: #ffffff;
  --header-scrolled-text: var(--lp-dark);
  --header-scrolled-text-muted: var(--lp-text-muted);
  --header-scrolled-accent: var(--lp-dark);
  --header-scrolled-btn-bg: var(--lp-dark);
  --header-scrolled-btn-text: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--lp-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--lp-text);
  background: var(--lp-white);
  -webkit-font-smoothing: antialiased;
}

.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ----- Header: initial = light on hero, scrolled = dark on white — clear UI/UX behavior ----- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--header-initial-bg);
  border-bottom: 1px solid transparent;
  padding: 1rem 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  transition:
    background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: background, border-bottom, box-shadow;
}

.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--header-scrolled-bg);
  box-shadow: 0 1px 3px rgba(15, 39, 68, 0.06);
  border-bottom: 1px solid var(--lp-border);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.nav .brand {
  grid-column: 1;
  justify-self: start;
}

.nav .nav-menu-wrapper {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-width: 0;
}

.nav .desktop-login,
.nav .nav-toggle {
  grid-column: 3;
  justify-self: end;
}

/* Initial: primary text white, readable over any hero */
/* Logo frame matches reserve.php (.reserve-header-logo-link + .reserve-header-logo) */
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: var(--lp-font);
  color: var(--header-initial-text);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 6px 16px rgba(2, 12, 26, 0.28);
  transition:
    color var(--lp-transition),
    opacity var(--lp-transition),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.brand:hover {
  opacity: 0.95;
  color: var(--header-initial-text);
}

.brand img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* Scrolled: primary text dark, eyebrow = accent for brand warmth */
.header.scrolled .brand,
.header.scrolled .brand {
  color: var(--header-scrolled-text);
  text-shadow: none;
}

.header.scrolled .brand:hover {
  color: var(--header-scrolled-text);
}

.header.scrolled .brand {
  border-color: rgba(15, 39, 68, 0.2);
  box-shadow: 0 5px 14px rgba(15, 39, 68, 0.16);
}

.header.scrolled .brand img {
  box-shadow: none;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

/* Initial: nav links light, hover/active = single accent */
.nav-links a {
  color: var(--header-initial-text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: color var(--lp-transition);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.nav-links a:hover {
  color: var(--header-initial-accent);
}

.nav-links a.active {
  color: var(--header-initial-accent);
  font-weight: 700;
}

/* Scrolled: muted default, hover = accent, active = primary text */
.header.scrolled .nav-links a {
  color: var(--header-scrolled-text-muted);
  text-shadow: none;
}

.header.scrolled .nav-links a:hover {
  color: var(--header-scrolled-accent);
}

.header.scrolled .nav-links a.active {
  color: var(--header-scrolled-text);
  font-weight: 700;
}

.header.scrolled .nav-links a.active:hover {
  color: var(--header-scrolled-text);
}

.mobile-login {
  display: none;
}

.nav-backdrop {
  display: none;
}

.nav-sidebar-header {
  display: none;
}

.nav-sidebar-menu-label {
  display: none;
}

.nav-sidebar-footer {
  display: none;
}

.desktop-login {
  display: inline-flex;
}

/* Initial: soft outline CTA so it’s visible but not heavy */
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background: var(--header-initial-btn-bg);
  border: 1px solid var(--header-initial-btn-border);
  border-radius: var(--lp-radius-sm);
  color: var(--header-initial-btn-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--lp-transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.4s ease;
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--header-initial-btn-border);
  color: var(--header-initial-btn-text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.login-btn:hover::before {
  left: 100%;
}

.login-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Scrolled: solid CTA for clear primary action */
.header.scrolled .login-btn {
  background: var(--header-scrolled-btn-bg);
  border-color: var(--header-scrolled-btn-bg);
  color: var(--header-scrolled-btn-text);
}

.header.scrolled .login-btn:hover {
  background: var(--lp-dark-soft);
  border-color: var(--lp-dark-soft);
  color: var(--header-scrolled-btn-text);
  box-shadow: 0 4px 12px rgba(15, 39, 68, 0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}

.nav-toggle:hover {
  background: transparent;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--header-initial-text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  display: block;
  margin: 0;
  transform-origin: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -11px;
  margin-top: -1px;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  transform-origin: center center;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(0) scaleX(0);
  transform-origin: center center;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  transform-origin: center center;
}

.header.scrolled .nav-toggle span {
  background: var(--header-scrolled-text);
}

/* ----- Hero (carousel + overlay list) ----- */
.landing-hero {
  padding-top: var(--lp-header-h);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-white);
  text-align: center;
  overflow: hidden;
  --hero-transition: 1.1s cubic-bezier(0.25, 0.1, 0.25, 1);
  --hero-bg-zoom-duration: 16s;
}

.landing-hero-carousel {
  position: absolute;
  inset: 0;
}

.landing-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--hero-transition),
    visibility 0s linear var(--hero-transition);
  will-change: opacity;
}

.landing-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  z-index: 1;
  will-change: auto;
}

.landing-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--lp-dark);
  transform: scale(1.04);
  transition: transform var(--hero-bg-zoom-duration)
    cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.landing-hero-slide.is-active .landing-hero-slide-bg {
  transform: scale(1);
  will-change: auto;
}

.landing-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 39, 68, 0.35) 0%,
    rgba(15, 39, 68, 0.6) 50%,
    rgba(15, 39, 68, 0.85) 100%
  );
  pointer-events: none;
}

/* Picker overlay list — same width as header (max 1200px, centered), scrollbar hidden */
.landing-hero-picker {
  position: absolute;
  left: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  right: auto;
  top: 0;
  bottom: 0;
  height: 100%;
  transform: none;
  z-index: 10;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.landing-hero-picker-arrow {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: none;
  color: var(--lp-white);
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.landing-hero-picker-arrow:hover {
  color: var(--lp-gold);
  opacity: 0.95;
}

.landing-hero-picker-arrow:active {
  transform: scale(0.95);
}

.landing-hero-picker-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
}

.landing-hero-picker-prev {
  margin-right: 0;
  margin-bottom: 0.35rem;
}

.landing-hero-picker-next {
  margin-left: 0;
  margin-top: 0.35rem;
}

.landing-hero-picker-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  max-height: min(72vh, 540px);
  max-width: none;
  flex: none;
  min-width: auto;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: y mandatory;
  scroll-padding-block: 0.5rem;
}

.landing-hero-picker-inner::-webkit-scrollbar {
  display: none;
}

.landing-hero-picker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 72px;
  max-width: 82px;
  padding: 0.4rem;
  border: none;
  border-radius: 10px;
  background: rgba(15, 39, 68, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--lp-white);
  font-family: var(--lp-font);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  opacity: 0.88;
}

@media (max-width: 1024px) {
  .landing-hero-picker {
    left: 0;
    right: 0;
    top: auto;
    bottom: 1.5rem;
    height: auto;
    transform: none;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    flex-direction: row;
    align-items: center;
  }

  .landing-hero-picker-prev {
    margin-right: 0.5rem;
    margin-bottom: 0;
  }

  .landing-hero-picker-next {
    margin-left: 0.5rem;
    margin-top: 0;
  }

  .landing-hero-picker-inner {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem 0.75rem;
    max-height: none;
    max-width: 100%;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
  }
}

.landing-hero-picker-item:hover {
  background: rgba(15, 39, 68, 0.82);
  transform: translateY(-3px);
  border-color: rgba(201, 162, 79, 0.5);
  opacity: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.landing-hero-picker-item.is-active {
  background: rgba(201, 162, 79, 0.22);
  border-color: var(--lp-gold);
  box-shadow:
    0 0 0 2px rgba(201, 162, 79, 0.35),
    0 4px 20px rgba(0, 0, 0, 0.3);
  min-width: 100px;
  max-width: 108px;
  padding: 0.5rem;
  opacity: 1;
  transform: translateY(-2px);
}

.landing-hero-picker-item.is-active .landing-hero-picker-thumb {
  width: 92px;
  height: 72px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.landing-hero-picker-item:focus-visible {
  outline: 2px solid var(--lp-gold);
  outline-offset: 2px;
}

.landing-hero-picker-thumb {
  width: 64px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: var(--lp-dark-soft);
  transition: box-shadow 0.3s ease;
}

.landing-hero-picker-name {
  display: none;
}

.landing-hero-picker-type {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero-picker-inner {
    scroll-behavior: auto;
  }
  .landing-hero-picker-item,
  .landing-hero-picker-thumb {
    transition-duration: 0.1s;
  }
}

/* Hero content — professional detail card */
.landing-hero-content {
  position: relative;
  z-index: 5;
  max-width: 720px;
  padding: 0 1.5rem;
}

.landing-hero-detail {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--hero-transition),
    visibility 0s linear var(--hero-transition);
  pointer-events: none;
}

.landing-hero-detail.is-active {
  position: relative;
  left: 0;
  transform: none;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  pointer-events: auto;
}

/* Detail block: no background — content over hero only */
.landing-hero-detail-card {
  position: relative;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.landing-hero-detail-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  gap: 0;
  padding-bottom: 1rem;
}

.landing-hero-detail-type-row {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  width: max-content;
  max-width: 100%;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.82rem 0.42rem 0.46rem;
  background: linear-gradient(
    135deg,
    rgba(8, 20, 36, 0.64) 0%,
    rgba(12, 33, 58, 0.52) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.landing-hero-detail-type-row .landing-hero-fav {
  position: relative;
  top: auto;
  right: auto;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.landing-hero-detail-type-row .landing-hero-fav .landing-card-fav-outline svg,
.landing-hero-detail-type-row .landing-hero-fav .landing-card-fav-filled svg {
  width: 15px;
  height: 15px;
}

.landing-hero-detail-type-row .landing-hero-fav:hover {
  background: rgba(255, 255, 255, 0.24);
  color: var(--lp-gold);
  transform: scale(1.03);
}

.landing-hero-detail-type-row .landing-hero-detail-type {
  margin: 0;
  padding: 0.02rem 0.28rem 0 0.06rem;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
}

/* Type pill: glassmorphism badge — clear hierarchy, works on any hero image */
.landing-hero-detail-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8e6b0;
  margin-bottom: 0;
  padding: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  box-shadow: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.landing-hero-detail-type-icon {
  display: none;
}

.landing-hero-detail-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--lp-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}

/* Specs: flex horizontal, wrap when needed so long content stays clean */
.landing-hero-detail-specs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
  max-width: 100%;
}

.landing-hero-spec {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.landing-hero-spec:not(:last-child) {
  padding-right: 1.25rem;
  margin-right: 0.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.landing-hero-spec-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--lp-gold);
}

.landing-hero-spec-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.landing-hero-spec.landing-hero-spec-price {
  color: var(--lp-white);
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.landing-hero-spec.landing-hero-spec-price .landing-hero-spec-icon {
  color: var(--lp-gold);
}

/* Description — clamp lines so long content stays clean */
.landing-hero-detail-desc {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 100%;
  width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: center;
}

/* Amenities — wrap cleanly, limit height if many */
.landing-hero-detail-amenities {
  margin-bottom: 1.25rem;
  width: 100%;
  max-width: 100%;
}

.landing-hero-detail-amenities.is-single {
  align-self: flex-start;
}

.landing-hero-amenities-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.landing-hero-amenities-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  max-width: 100%;
}

.landing-hero-amenity {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.1875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.landing-hero-amenity:not(:last-child)::after {
  content: "·";
  margin-left: 0.5rem;
  margin-right: 0.2rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.landing-hero-amenity-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.landing-hero-amenity-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.landing-hero-actions .landing-btn {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

.landing-hero-actions .landing-btn-lg {
  padding: 0.9375rem 1.875rem;
  font-size: 1.0625rem;
}

/* ----- Hero: larger sizes on desktop ----- */
@media (min-width: 1025px) {
  .landing-hero-content {
    max-width: 920px;
    padding: 0 2rem;
  }

  .landing-hero-detail-type-row {
    margin-bottom: 1.25rem;
    padding: 0.65em 1.25em 0.65em 0.85em;
  }

  .landing-hero-detail-type-row .landing-hero-detail-type,
  .landing-hero-detail-type {
    font-size: 1.0625rem;
  }

  .landing-hero-detail-title {
    margin: 0 0 1.75rem;
    font-size: clamp(2.75rem, 5vw, 4.25rem);
  }

  .landing-hero-detail-specs {
    gap: 1rem 2rem;
    margin-bottom: 1.75rem;
  }

  .landing-hero-spec {
    font-size: 1.35rem;
    gap: 0.6rem;
  }

  .landing-hero-spec-icon {
    width: 32px;
    height: 32px;
  }

  .landing-hero-spec-icon svg {
    width: 28px;
    height: 28px;
  }

  .landing-hero-detail-desc {
    margin: 0 0 1.75rem;
    font-size: 1.35rem;
    line-height: 1.6;
    width: 100%;
    max-width: 800px;
  }

  .landing-hero-detail-amenities {
    margin-bottom: 1.75rem;
  }

  .landing-hero-amenities-label {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }

  .landing-hero-amenity {
    font-size: 1.25rem;
  }

  .landing-hero-amenity-icon svg {
    width: 22px;
    height: 22px;
  }

  .landing-hero-actions {
    padding-top: 2rem;
    gap: 1.25rem;
  }

  .landing-hero-actions .landing-btn {
    font-size: 1.125rem;
    padding: 0.875rem 1.75rem;
  }

  .landing-hero-actions .landing-btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1875rem;
  }
}

/* ----- Buttons ----- */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--lp-font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--lp-radius-sm);
  transition:
    background var(--lp-transition),
    color var(--lp-transition),
    transform var(--lp-transition),
    box-shadow var(--lp-transition);
  cursor: pointer;
  border: none;
}

.landing-btn-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.landing-btn-icon svg {
  width: 1.15em;
  height: 1.15em;
  stroke: currentColor;
}

.landing-btn-primary {
  background: var(--lp-gold);
  color: var(--lp-dark);
  box-shadow: 0 2px 8px rgba(201, 162, 79, 0.35);
}

.landing-btn-primary:hover {
  background: var(--lp-gold-hover);
  color: var(--lp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201, 162, 79, 0.4);
}

.landing-btn-outline {
  background: transparent;
  color: var(--lp-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.landing-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--lp-white);
  color: var(--lp-white);
}

.landing-btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* ----- Sections ----- */
.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Scroll-triggered smooth animations */
:root {
  --animate-duration: 0.6s;
  --animate-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.landing-section {
  padding: 5rem 0;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--animate-duration) var(--animate-ease),
    transform var(--animate-duration) var(--animate-ease);
}

.landing-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-section .landing-section-header {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--animate-duration) var(--animate-ease),
    transform var(--animate-duration) var(--animate-ease);
  transition-delay: 0.08s;
}

.landing-section.is-visible .landing-section-header {
  opacity: 1;
  transform: translateY(0);
}

.landing-section .landing-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--animate-duration) var(--animate-ease),
    transform var(--animate-duration) var(--animate-ease);
}

.landing-section.is-visible .landing-card {
  opacity: 1;
  transform: translateY(0);
}

.landing-section.is-visible .landing-card:nth-child(1) {
  transition-delay: 0.12s;
}
.landing-section.is-visible .landing-card:nth-child(2) {
  transition-delay: 0.18s;
}
.landing-section.is-visible .landing-card:nth-child(3) {
  transition-delay: 0.24s;
}
.landing-section.is-visible .landing-card:nth-child(4) {
  transition-delay: 0.3s;
}
.landing-section.is-visible .landing-card:nth-child(5) {
  transition-delay: 0.36s;
}
.landing-section.is-visible .landing-card:nth-child(6) {
  transition-delay: 0.42s;
}

.landing-section:nth-child(even) {
  background: var(--lp-bg);
}

/* ----- Section header (premium) ----- */
.landing-section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 0.5rem 2.75rem;
  position: relative;
}

.landing-section-header::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 1.5rem auto 0;
  background: var(--lp-gold);
  border-radius: 2px;
  opacity: 0.9;
}

.landing-section-label {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-gold);
  background: var(--lp-gold-soft);
  border-radius: 100px;
  text-align: center;
}

.landing-section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--lp-dark);
  letter-spacing: -0.04em;
  text-align: center;
}

.landing-section-lead {
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--lp-dark-soft);
  text-align: center;
  max-width: 520px;
  font-weight: 500;
}

.landing-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  text-align: center;
  color: var(--lp-text-muted);
  font-size: 1rem;
  margin: 0;
}

.landing-empty-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--lp-gold);
  opacity: 0.8;
}

.landing-empty-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

/* ----- About (premium) ----- */
.landing-about {
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-white) 100%);
  overflow: hidden;
}

.landing-about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.landing-about-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  background: var(--lp-gold);
}

.landing-about-bg-shape-1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -120px;
}

.landing-about-bg-shape-2 {
  width: 320px;
  height: 320px;
  bottom: -80px;
  left: -80px;
}

.landing-about-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1rem, 2.4vw, 1.6rem);
  border: 1px solid rgba(15, 39, 68, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(15, 39, 68, 0.1);
  backdrop-filter: blur(3px);
}

.landing-about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center;
  margin-bottom: 2.1rem;
}

.landing-about-col {
  min-width: 0;
}

.landing-about-header {
  position: relative;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 2rem;
}

.landing-about-header::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 1.5rem auto 0;
  background: var(--lp-gold);
  border-radius: 2px;
  opacity: 0.9;
}

.landing-about-label {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-gold);
  background: var(--lp-gold-soft);
  border-radius: 100px;
  text-align: center;
}

.landing-about-title {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--lp-dark);
  letter-spacing: -0.04em;
}

.landing-about-lead {
  margin: 0 auto;
  max-width: 48ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--lp-dark-soft);
  font-weight: 500;
}

.landing-about-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.48rem;
  margin-top: 0.95rem;
}

.landing-about-mini-img {
  width: 100%;
  height: 108px;
  border-radius: 9px;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 4px 12px rgba(15, 39, 68, 0.1);
  background: #edf1e8;
}

.landing-about-mini-img--left {
  object-position: left center;
}

.landing-about-mini-img--center {
  object-position: center center;
}

.landing-about-mini-img--right {
  object-position: right center;
}

.landing-about-media {
  margin: 0;
  width: 100%;
  max-width: none;
  border-radius: 18px;
  overflow: hidden;
  padding: 0.55rem;
  border: 1px solid rgba(15, 39, 68, 0.1);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 39, 68, 0.1);
  position: relative;
}

.landing-about-media-img {
  display: block;
  width: 100%;
  height: clamp(260px, 48vw, 420px);
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: #edf1e8;
}

.landing-about-media::after {
  content: none;
}

.landing-about-media-caption {
  display: block;
  margin: 0.7rem 0.35rem 0.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lp-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .landing-about-card {
    border-radius: 14px;
    padding: 0.85rem;
  }

  .landing-about-split {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.4rem;
  }

  .landing-about-header {
    text-align: center;
    padding-bottom: 1.35rem;
  }

  .landing-about-header::after {
    margin: 1.2rem auto 0;
  }

  .landing-about-lead {
    margin: 0 auto;
    max-width: 42ch;
  }

  .landing-about-media {
    margin: 0 auto;
    border-radius: 12px;
    padding: 0.38rem;
  }

  .landing-about-media-img {
    height: auto;
    min-height: 200px;
    border-radius: 10px;
  }

  .landing-about-media-caption {
    margin: 0.58rem 0.25rem 0.1rem;
    font-size: 0.76rem;
    text-align: center;
  }

  .landing-about-cta {
    padding-top: 1rem;
  }

  .landing-about-mini-gallery {
    margin-top: 0.75rem;
    gap: 0.4rem;
  }

  .landing-about-mini-img {
    height: 84px;
    border-radius: 8px;
  }
}

.landing-about-cta {
  text-align: center;
  padding: 1.3rem 0.15rem 0.1rem;
  background: transparent;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(15, 39, 68, 0.1);
  box-shadow: none;
  max-width: none;
  margin: 0;
  transition:
    box-shadow var(--lp-transition),
    border-color var(--lp-transition);
}

.landing-about-cta:hover {
  box-shadow: none;
  border-color: rgba(15, 39, 68, 0.16);
}

.landing-about-cta-text {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--lp-dark-soft);
  font-weight: 500;
}

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

.landing-about-contact-btn {
  flex: 1 1 0;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lp-dark);
  background: var(--lp-gold);
  border: none;
  border-radius: var(--lp-radius-sm);
  text-decoration: none;
  transition:
    background var(--lp-transition),
    color var(--lp-transition),
    transform var(--lp-transition),
    box-shadow var(--lp-transition);
}

.landing-about-contact-btn:hover {
  background: var(--lp-gold-hover);
  color: var(--lp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 79, 0.4);
}

.landing-about-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landing-about-contact-icon svg {
  width: 18px;
  height: 18px;
}

/* ----- Grid & Cards ----- */
.landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.landing-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow);
  border: 1px solid var(--lp-border);
  transition:
    transform var(--lp-transition),
    box-shadow var(--lp-transition);
  display: flex;
  flex-direction: column;
}

.landing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.landing-card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--lp-bg-alt);
  overflow: hidden;
  cursor: pointer;
}

.landing-card-carousel {
  position: absolute;
  inset: 0;
}

.landing-card-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.landing-card-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.landing-card-carousel-slide .landing-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.landing-card-image-wrap:hover
  .landing-card-carousel-slide.is-active
  .landing-card-image {
  transform: scale(1.03);
}

.landing-card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.landing-card-image-wrap:hover::after {
  opacity: 1;
}

.landing-card-image-wrap.is-unavailable {
  cursor: default;
}

.landing-card-image-wrap.is-unavailable:hover
  .landing-card-carousel-slide.is-active
  .landing-card-image {
  transform: none;
}

.landing-card-image-wrap.is-unavailable:hover::after {
  opacity: 0;
}

.landing-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.landing-card-overlay-text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.landing-card-fav {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition:
    background var(--lp-transition),
    color var(--lp-transition),
    transform var(--lp-transition);
}

.landing-card-fav:hover {
  background: rgba(0, 0, 0, 0.7);
  color: var(--lp-gold);
  transform: scale(1.05);
}

.landing-card-fav:focus-visible {
  outline: 2px solid var(--lp-gold);
  outline-offset: 2px;
}

.landing-card-fav .landing-card-fav-outline,
.landing-card-fav .landing-card-fav-filled {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
}

.landing-card-fav .landing-card-fav-outline svg,
.landing-card-fav .landing-card-fav-filled svg {
  width: 18px;
  height: 18px;
}

.landing-card-fav-count {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.8),
    0 1px 2px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.landing-card-fav .landing-card-fav-filled {
  opacity: 0;
  color: var(--lp-gold);
}

.landing-card-fav.is-faved .landing-card-fav-outline {
  opacity: 0;
}

.landing-card-fav.is-faved .landing-card-fav-filled {
  opacity: 1;
}

.landing-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-text-muted);
  opacity: 0.5;
}

.landing-card-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: currentColor;
}

.landing-card-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: linear-gradient(
    180deg,
    rgba(12, 19, 36, 0.9),
    rgba(8, 13, 28, 0.76)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
  color: var(--lp-white);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6px;
}

.landing-card-badge-promo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  min-width: 156px;
  padding: 0.42rem 0.62rem;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(12, 19, 36, 0.9),
    rgba(8, 13, 28, 0.76)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

.landing-card-badge-normal {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.12rem;
  min-width: 156px;
  padding: 0.42rem 0.62rem;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(12, 19, 36, 0.9),
    rgba(8, 13, 28, 0.76)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

.landing-price-normal-label {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.landing-price-normal-label::before {
  content: "";
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--lp-gold, #c9a24f);
  box-shadow: 0 0 0 2px rgba(201, 162, 79, 0.2);
  flex-shrink: 0;
}

.landing-price-normal-value {
  font-size: 0.98rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.landing-price-discounted-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  width: 100%;
}

.landing-promo-percent {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #fb7185);
}

.landing-price-original {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  letter-spacing: 0.01em;
}

.landing-price-note {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.landing-price-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  width: 100%;
}

.landing-price-countdown-mini {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.16rem;
  width: 100%;
  margin-top: 0.08rem;
  padding: 0.28rem 0.32rem;
  border-radius: 9px;
  background: rgba(8, 19, 36, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.landing-price-countdown-mini-label {
  display: block;
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.landing-price-countdown-mini-time {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.16rem;
  width: 100%;
}

.landing-price-countdown-mini-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-height: 30px;
  padding: 0.14rem 0.08rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.landing-price-countdown-mini-value {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--lp-gold, #c9a24f);
}

.landing-price-countdown-mini-unit {
  display: block;
  font-size: 0.34rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.landing-price-countdown-mini-status {
  display: block;
  padding: 0.28rem 0.22rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.landing-price-discounted {
  font-size: 0.98rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.landing-price-discount-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #fb7185);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-price-discount-chip svg {
  width: 0.72em;
  height: 0.72em;
  flex-shrink: 0;
  stroke: currentColor;
}

@media (max-width: 768px) {
  .landing-card-badge-promo {
    min-width: 142px;
    padding: 0.38rem 0.55rem;
    gap: 0.08rem;
  }

  .landing-card-badge-normal {
    min-width: 142px;
    padding: 0.38rem 0.55rem;
    gap: 0.08rem;
  }

  .landing-price-normal-label {
    font-size: 0.54rem;
  }

  .landing-price-normal-value {
    font-size: 0.88rem;
  }

  .landing-price-discounted {
    font-size: 0.88rem;
  }

  .landing-price-original {
    font-size: 0.66rem;
  }

  .landing-price-note {
    font-size: 0.54rem;
  }

  .landing-price-meta-row {
    gap: 0.35rem;
  }

  .landing-price-discount-chip {
    font-size: 0.56rem;
    padding: 0.14rem 0.36rem;
  }
}

.landing-promo-chip {
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.82);
}

.landing-card-badge-avail {
  bottom: auto;
  left: auto;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(22, 163, 74, 0.95);
  color: #fff;
}

.landing-card-badge-avail svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.landing-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.landing-card-cta-fully-reserved {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #b45309;
  background: rgba(180, 83, 9, 0.12);
  border-radius: 6px;
  text-align: center;
}

.landing-card-cta-fully-reserved-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.landing-card-cta-fully-reserved-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.landing-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lp-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.landing-card-metas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}

.landing-card-metas .landing-card-meta {
  margin: 0;
}

.landing-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--lp-gold);
  font-weight: 600;
}

.landing-card-meta-avail-row .landing-card-meta-avail-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.landing-card-meta-avail-row .landing-card-meta-avail-icon svg {
  width: 1em;
  height: 1em;
}

.landing-card-meta-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.landing-card-meta-icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
}

.landing-card-desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--lp-text-muted);
  line-height: 1.5;
  flex: 1;
}

.landing-card-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 39, 68, 0.2);
  width: 100%;
}

.landing-card-actions .landing-card-btn {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  white-space: nowrap;
}

.landing-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0;
  width: 100%;
  min-height: 44px;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  line-height: 1;
  font-family: var(--lp-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--lp-dark);
  background: var(--lp-gold);
  border-radius: var(--lp-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--lp-transition),
    transform var(--lp-transition),
    box-shadow var(--lp-transition),
    border-color var(--lp-transition),
    color var(--lp-transition);
}

.landing-card-btn-details {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow: 0 1px 4px rgba(17, 17, 17, 0.08);
}

.landing-card-btn-details:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.2);
}

.landing-card-btn-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.landing-card-btn-icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
}

.landing-card-btn:hover {
  background: var(--lp-gold-hover);
  color: var(--lp-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(201, 162, 79, 0.35);
}

.landing-card-btn.landing-card-btn-details:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.2);
}

.landing-card-btn.landing-card-btn-details:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
}

.landing-card-btn.landing-card-btn-details:hover .landing-card-btn-icon {
  transform: translateX(1px);
}

.landing-card-btn.landing-card-btn-details .landing-card-btn-icon {
  transition: transform var(--lp-transition);
}

/* ----- CTA ----- */
.landing-cta {
  padding: 4rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--lp-dark) 0%,
    var(--lp-dark-soft) 100%
  );
  color: var(--lp-white);
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--animate-duration) var(--animate-ease),
    transform var(--animate-duration) var(--animate-ease);
}

.landing-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-cta .landing-container {
  max-width: 560px;
}

.landing-cta-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--lp-gold);
}

.landing-cta-icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
}

.landing-cta-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.landing-cta-text {
  margin: 0 0 0;
  font-size: 1rem;
  opacity: 0.9;
}

.landing-cta-divider {
  width: 80px;
  height: 2px;
  margin: 1.5rem auto 1.5rem;
  background: rgba(255, 255, 255, 0.9);
}

.landing-cta .landing-btn-primary {
  background: var(--lp-gold);
  color: var(--lp-dark);
}

.landing-cta .landing-btn-primary:hover {
  background: var(--lp-gold-hover);
  color: var(--lp-dark);
}

/* ----- Feedback section (contained card) ----- */
.landing-feedback {
  background: var(--lp-bg);
}

.landing-feedback .landing-container {
  max-width: 1200px;
}

.landing-feedback-header.landing-section-header {
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
}

.landing-feedback-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.landing-section .landing-feedback-shell {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--animate-duration) var(--animate-ease),
    transform var(--animate-duration) var(--animate-ease);
  transition-delay: 0.1s;
}

.landing-section.is-visible .landing-feedback-shell {
  opacity: 1;
  transform: translateY(0);
}

.landing-feedback-card {
  position: relative;
  background: var(--lp-white);
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  overflow: visible;
}

.landing-feedback-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--lp-gold) 0%,
    rgba(201, 162, 79, 0.45) 55%,
    rgba(15, 39, 68, 0.12) 100%
  );
}

.landing-feedback-form {
  margin: 0;
  padding: 1.65rem 1.75rem 1.5rem;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.landing-feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.35rem;
}

.landing-feedback-field--full {
  grid-column: 1 / -1;
}

.landing-feedback-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.landing-feedback-field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #9a3412;
}

.landing-feedback-field label,
.landing-feedback-label-row {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-dark);
}

.landing-feedback-req {
  color: var(--lp-text-muted);
  font-weight: 600;
}

.landing-feedback-opt {
  font-weight: 500;
  color: var(--lp-text-muted);
}

.landing-feedback-input,
.landing-feedback-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.95rem;
  font-family: var(--lp-font);
  font-size: 0.9375rem;
  color: var(--lp-text);
  background: var(--lp-bg);
  border: 1px solid rgba(15, 39, 68, 0.1);
  border-radius: var(--lp-radius-sm);
  transition:
    border-color var(--lp-transition),
    box-shadow var(--lp-transition),
    background var(--lp-transition);
}

.landing-feedback-input:focus,
.landing-feedback-textarea:focus {
  outline: none;
  background: var(--lp-white);
  border-color: var(--lp-dark-soft);
  box-shadow: 0 0 0 3px var(--lp-gold-soft);
}

.landing-feedback-input.is-invalid,
.landing-feedback-textarea.is-invalid {
  border-color: #b45309;
  box-shadow: 0 0 0 2px rgba(180, 83, 9, 0.2);
}

.landing-feedback-input.is-invalid:focus,
.landing-feedback-textarea.is-invalid:focus {
  border-color: #9a3412;
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.18);
}

.landing-feedback-select.is-invalid {
  border-color: #b45309;
  box-shadow: 0 0 0 2px rgba(180, 83, 9, 0.2);
}

.landing-feedback-select.is-invalid:focus {
  border-color: #9a3412;
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.18);
}

.landing-feedback-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}

.landing-feedback-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a3a5c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  padding-right: 2.25rem;
}

.landing-feedback-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  padding: 0.35rem 0 0.15rem;
}

.landing-feedback-star {
  cursor: pointer;
  margin: 0;
  line-height: 1;
}

.landing-feedback-star input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.landing-feedback-star-ui {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  color: rgba(15, 39, 68, 0.2);
  transition: color var(--lp-transition), transform 0.15s ease;
}

.landing-feedback-star:hover .landing-feedback-star-ui,
.landing-feedback-star input:focus + .landing-feedback-star-ui {
  color: var(--lp-gold);
  transform: scale(1.08);
}

.landing-feedback-stars[data-rating="1"]
  .landing-feedback-star:nth-child(1)
  .landing-feedback-star-ui,
.landing-feedback-stars[data-rating="2"]
  .landing-feedback-star:nth-child(-n + 2)
  .landing-feedback-star-ui,
.landing-feedback-stars[data-rating="3"]
  .landing-feedback-star:nth-child(-n + 3)
  .landing-feedback-star-ui,
.landing-feedback-stars[data-rating="4"]
  .landing-feedback-star:nth-child(-n + 4)
  .landing-feedback-star-ui,
.landing-feedback-stars[data-rating="5"]
  .landing-feedback-star:nth-child(-n + 5)
  .landing-feedback-star-ui {
  color: var(--lp-gold);
}

.landing-feedback-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

.landing-feedback-status {
  min-height: 1.35rem;
  margin: 1.1rem 0 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  border-radius: var(--lp-radius-sm);
  background: transparent;
}

.landing-feedback-status:not(:empty) {
  background: var(--lp-bg-alt);
  border: 1px solid rgba(15, 39, 68, 0.06);
}

.landing-feedback-status.is-error {
  color: #9a3412;
  background: rgba(180, 83, 9, 0.08);
  border-color: rgba(180, 83, 9, 0.2);
}

.landing-feedback-status.is-success {
  color: var(--lp-dark-soft);
  background: var(--lp-gold-soft);
  border-color: rgba(201, 162, 79, 0.35);
}

.landing-feedback-actions {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(15, 39, 68, 0.08);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.landing-feedback-submit {
  min-width: 11rem;
  justify-content: center;
}

.landing-feedback-form.is-busy .landing-feedback-actions button {
  opacity: 0.7;
  pointer-events: none;
}

/* ----- Feedback submit: success / error overlay ----- */
body.landing-feedback-result-open {
  overflow: hidden;
}

.landing-feedback-result-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.landing-feedback-result-overlay[hidden] {
  display: flex !important;
}

.landing-feedback-result-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.landing-feedback-result-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 38, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.landing-feedback-result-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  animation: landing-feedback-result-pop 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes landing-feedback-result-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-feedback-result-overlay {
    transition: none;
  }

  .landing-feedback-result-panel {
    animation: none;
  }
}

.landing-feedback-result-card {
  position: relative;
  margin: 0 auto;
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  background: var(--lp-white);
  border-radius: var(--lp-radius, 16px);
  box-shadow:
    0 0 0 1px rgba(15, 39, 68, 0.06),
    0 24px 48px rgba(15, 23, 42, 0.14),
    0 8px 16px rgba(15, 23, 42, 0.06);
  border-top: 4px solid var(--lp-gold);
}

.landing-feedback-result-card--error {
  border-top-color: rgba(185, 28, 28, 0.55);
}

.landing-feedback-result-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.landing-feedback-result-icon {
  display: none;
  width: 4.5rem;
  height: 4.5rem;
  color: var(--lp-dark-soft);
}

.landing-feedback-result-icon svg {
  width: 100%;
  height: 100%;
}

.landing-feedback-result-card--success .landing-feedback-result-icon--success {
  display: block;
  color: #15803d;
}

.landing-feedback-result-card--error .landing-feedback-result-icon--error {
  display: block;
  color: #b91c1c;
}

.landing-feedback-result-title {
  margin: 0 0 0.5rem;
  font-family: var(--lp-font);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--lp-dark);
}

.landing-feedback-result-card--error .landing-feedback-result-title {
  color: #7f1d1d;
}

.landing-feedback-result-desc {
  margin: 0 0 1.5rem;
  font-family: var(--lp-font);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--lp-text-muted);
}

.landing-feedback-result-card--error .landing-feedback-result-desc {
  color: #991b1b;
}

.landing-feedback-result-dismiss {
  width: 100%;
  min-height: 2.75rem;
  justify-content: center;
}

@media (max-width: 480px) {
  .landing-feedback-result-card {
    padding: 1.65rem 1.35rem 1.5rem;
  }

  .landing-feedback-result-title {
    font-size: 1.2rem;
  }
}

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

@media (max-width: 640px) {
  .landing-feedback-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .landing-feedback-form {
    padding: 1.25rem 1.15rem 1.15rem;
  }

  .landing-feedback-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-feedback-submit {
    min-width: 0;
    width: 100%;
  }

  .landing-feedback-shell {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}

/* ----- FAQ section: accordion, clean & flexible ----- */
.landing-faq .landing-container {
  max-width: 720px;
}

.landing-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-faq-item {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  box-shadow: var(--lp-shadow-sm);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.landing-faq-item:hover {
  border-color: rgba(201, 162, 79, 0.3);
  box-shadow: 0 2px 12px rgba(15, 39, 68, 0.08);
}

.landing-faq-item[open] {
  border-color: rgba(201, 162, 79, 0.45);
  box-shadow: 0 4px 20px rgba(15, 39, 68, 0.1);
}

.landing-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--lp-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-dark);
  text-align: left;
  cursor: pointer;
  border: none;
  background: none;
  list-style: none;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.landing-faq-question::-webkit-details-marker {
  display: none;
}

.landing-faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2744' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    center / contain no-repeat;
  opacity: 0.6;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.landing-faq-item[open] .landing-faq-question::after {
  transform: rotate(180deg);
  opacity: 1;
}

.landing-faq-question:hover {
  color: var(--lp-gold);
}

.landing-faq-answer {
  padding: 0 1.25rem 1.25rem;
}

.landing-faq-answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--lp-text-muted);
}

.landing-faq-answer a {
  color: var(--lp-gold);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.landing-faq-answer a:hover {
  color: var(--lp-gold-hover);
  border-bottom-color: var(--lp-gold-hover);
}

.landing-section.landing-faq .landing-faq-list {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--animate-duration) var(--animate-ease),
    transform var(--animate-duration) var(--animate-ease);
  transition-delay: 0.12s;
}

.landing-section.landing-faq.is-visible .landing-faq-list {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .landing-faq-question {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }
  .landing-faq-answer {
    padding: 0 1rem 1rem;
  }
  .landing-faq-answer p {
    font-size: 0.875rem;
  }
}

/* About section: animate header and content */
.landing-about .landing-about-header {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--animate-duration) var(--animate-ease),
    transform var(--animate-duration) var(--animate-ease);
  transition-delay: 0.08s;
}

.landing-section.landing-about.is-visible .landing-about-header {
  opacity: 1;
  transform: translateY(0);
}

.landing-about .landing-about-cta {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--animate-duration) var(--animate-ease),
    transform var(--animate-duration) var(--animate-ease);
  transition-delay: 0.18s;
}

.landing-about .landing-about-media {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--animate-duration) var(--animate-ease),
    transform var(--animate-duration) var(--animate-ease);
  transition-delay: 0.12s;
}

.landing-section.landing-about.is-visible .landing-about-media {
  opacity: 1;
  transform: translateY(0);
}

.landing-section.landing-about.is-visible .landing-about-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Footer ----- */
.landing-footer {
  padding: 3.25rem 0 2rem;
  background:
    radial-gradient(
      1100px 380px at 15% -25%,
      rgba(201, 162, 79, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 320px at 95% -30%,
      rgba(88, 128, 178, 0.2),
      transparent 62%
    ),
    linear-gradient(180deg, #0b1f37 0%, #08182a 100%);
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--animate-duration) var(--animate-ease),
    transform var(--animate-duration) var(--animate-ease);
}

.landing-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-footer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.landing-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem 2.75rem;
  align-items: start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-footer-about {
  min-width: 0;
}

.landing-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

/* Same logo treatment as reserve.php */
.landing-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 6px 16px rgba(2, 12, 26, 0.28);
  flex-shrink: 0;
}

.nav-sidebar-header .landing-logo-frame {
  border-color: rgba(15, 39, 68, 0.16);
  box-shadow: 0 4px 12px rgba(15, 39, 68, 0.14);
}

.landing-footer-logo,
.nav-sidebar-logo,
.landing-logo-frame img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 0;
  border: none;
  background: transparent;
}

.landing-footer-nav {
  min-width: 0;
}

.landing-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.landing-footer-links li {
  margin: 0;
  padding: 0;
}

.landing-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.915rem;
  font-weight: 500;
  padding: 0.22rem 0;
  transition:
    color var(--lp-transition),
    transform var(--lp-transition);
}

.landing-footer-links a:hover {
  color: var(--lp-gold);
  transform: translateX(2px);
}

.landing-footer-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.landing-footer-icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
}

.landing-footer-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-white);
  letter-spacing: -0.02em;
}

.landing-footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}

.landing-footer-heading {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-footer-cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.landing-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    transform var(--lp-transition),
    box-shadow var(--lp-transition),
    border-color var(--lp-transition),
    background-color var(--lp-transition);
}

.landing-footer-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.48);
}

.landing-footer-cta--primary {
  border-color: transparent;
  color: #09203a;
  background: linear-gradient(135deg, #f2d393, #c9a24f);
  box-shadow: 0 8px 18px rgba(9, 19, 33, 0.28);
}

.landing-footer-cta--primary:hover {
  box-shadow: 0 10px 20px rgba(9, 19, 33, 0.34);
}

.landing-footer-bottom {
  padding-top: 1.25rem;
  display: flex;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.landing-footer-copy {
  margin: 0;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.68);
}

.landing-footer-credit {
  margin: 0;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 960px) {
  .landing-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.5rem;
    justify-items: center;
  }

  .landing-footer-about {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .landing-footer-brand {
    justify-content: center;
    width: 100%;
  }

  .landing-footer-cta-row {
    justify-content: center;
  }

  .landing-footer-nav--explore {
    grid-column: 1;
    width: 100%;
    text-align: center;
  }

  .landing-footer-nav--quick {
    grid-column: 2;
    width: 100%;
    text-align: center;
  }

  .landing-footer-heading {
    text-align: center;
  }

  .landing-footer-links {
    align-items: center;
    width: 100%;
  }

  .landing-footer-links a {
    justify-content: center;
  }

  .landing-footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .landing-footer {
    padding: 2.75rem 0 max(1.5rem, env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
  }

  .landing-footer-wrap {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  }

  /* Match tablet: brand full width, then two link columns (readable, tappable). */
  .landing-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.35rem;
    padding-bottom: 1.5rem;
  }

  .landing-footer-about {
    grid-column: 1 / -1;
  }

  .landing-footer-nav--explore {
    grid-column: 1;
  }

  .landing-footer-nav--quick {
    grid-column: 2;
  }

  .landing-footer-heading {
    margin-bottom: 0.5rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
  }

  .landing-footer-links {
    gap: 0.2rem;
    align-items: center;
  }

  .landing-footer-links a {
    display: flex;
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
    box-sizing: border-box;
    font-size: 0.88rem;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }

  .landing-footer-links a:hover {
    transform: none;
  }

  .landing-footer-links a:active {
    background-color: rgba(255, 255, 255, 0.07);
  }

  .landing-footer-cta-row {
    flex-direction: column;
    align-items: center;
    margin-top: 1.1rem;
  }

  .landing-footer-cta {
    width: 100%;
    max-width: 18rem;
    justify-content: center;
    min-height: 44px;
  }

  .landing-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    padding-top: 1.1rem;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .landing-footer {
    padding: 2.4rem 0 max(1.35rem, env(safe-area-inset-bottom, 0px));
  }

  .landing-footer-wrap {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  }

  /* One column of links: easier to scan on narrow phones. */
  .landing-footer-main {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .landing-footer-nav--explore,
  .landing-footer-nav--quick {
    grid-column: 1 / -1;
  }

  .landing-footer-nav--quick .landing-footer-heading {
    margin-top: 0.15rem;
  }

  .landing-footer-name {
    font-size: 1.08rem;
  }

  .landing-footer-links a {
    font-size: 0.9rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 22rem;
  }

  .landing-footer-tagline {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .landing-footer-copy,
  .landing-footer-credit {
    font-size: 0.74rem;
  }

  .brand img,
  .landing-logo-frame img,
  .landing-footer-logo,
  .nav-sidebar-logo {
    width: 34px;
    height: 34px;
  }
}

/* ----- Mobile nav ----- */
@media (max-width: 1024px) {
  .nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: unset;
  }

  .nav .brand {
    grid-column: unset;
    justify-self: unset;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .nav .nav-menu-wrapper {
    grid-column: unset;
    justify-self: unset;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(360px, 88vw);
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0.85rem 0.95rem 1.1rem;
    background: var(--lp-white);
    border-left: 1px solid var(--lp-border);
    box-shadow: -12px 0 30px rgba(15, 39, 68, 0.18);
    gap: 0;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 0.26s ease,
      opacity 0.2s ease,
      visibility 0.2s ease;
    z-index: 1001;
    -webkit-overflow-scrolling: touch;
  }

  @supports not (height: 100dvh) {
    .nav .nav-menu-wrapper {
      height: 100vh;
      max-height: 100vh;
    }
  }

  .nav-sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.68rem;
    padding: 0.15rem 0.35rem 0.8rem;
    margin-bottom: 0.45rem;
    border-bottom: 1px solid var(--lp-border);
  }

  .nav-sidebar-header-text {
    min-width: 0;
    flex: 1 1 auto;
  }

  .nav-sidebar-resort-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--lp-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .nav-sidebar-close {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border: 1px solid rgba(15, 39, 68, 0.14);
    border-radius: 10px;
    background: #fff;
    color: var(--lp-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .nav-sidebar-close:hover {
    background: rgba(15, 39, 68, 0.06);
    border-color: rgba(15, 39, 68, 0.24);
  }

  .nav-sidebar-close span {
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 500;
  }

  .nav-sidebar-menu-label {
    display: block;
    margin: 0 0.4rem 0.45rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--lp-text-muted);
  }

  .nav-menu-wrapper.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(15, 39, 68, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
    z-index: 1000;
    display: block;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Keep header appearance unchanged while sidebar is open. */

  .nav .desktop-login,
  .nav .nav-toggle {
    grid-column: unset;
    justify-self: unset;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links li {
    margin: 0;
    padding: 0;
  }

  .nav-menu-wrapper .nav-links a {
    display: flex;
    align-items: center;
    color: var(--lp-text);
    text-shadow: none;
    padding: 0.78rem 0.72rem;
    border-bottom: 1px solid rgba(15, 39, 68, 0.08);
    font-size: 0.93rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 10px;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease;
  }

  .nav-menu-wrapper .nav-links a:hover {
    color: var(--lp-dark);
    background: rgba(15, 39, 68, 0.04);
    border-bottom-color: rgba(15, 39, 68, 0.12);
  }

  .nav-menu-wrapper .nav-links a.active {
    color: var(--lp-dark);
    font-weight: 700;
    background: rgba(15, 39, 68, 0.08);
    border-bottom-color: transparent;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .desktop-login {
    display: none !important;
  }

  .mobile-login {
    display: list-item;
  }

  .nav-sidebar-footer {
    display: block;
    margin-top: auto;
    padding: 0.72rem 0.35rem calc(0.4rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(15, 39, 68, 0.12);
    background: #ffffff;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
  }

  .nav-sidebar-footer-login {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--lp-dark);
    border-color: var(--lp-dark);
    color: #ffffff !important;
    box-sizing: border-box;
    border-radius: 10px;
  }

  .nav-sidebar-footer-login:hover {
    background: var(--lp-dark-soft);
    border-color: var(--lp-dark-soft);
    color: #ffffff !important;
  }

  .landing-about-label {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    padding: 0.3rem 0.72rem;
  }

  .landing-about-title {
    font-size: clamp(1.55rem, 4.8vw, 2rem);
    line-height: 1.2;
  }

  .landing-about-lead {
    font-size: 0.95rem;
    line-height: 1.58;
    max-width: 46ch;
  }

  .nav-toggle {
    display: flex;
  }

  .landing-section {
    padding: 3rem 0;
  }

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

  /* Hero section — mobile/tablet: clean layout, proper padding */
  .landing-hero {
    min-height: calc(100vh - var(--lp-header-h));
    padding: 2rem 1.25rem 5rem;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .landing-hero-content {
    padding: 0 1rem;
    max-width: 100%;
    width: 100%;
    margin-top: 0.5rem;
    box-sizing: border-box;
  }

  .landing-hero-detail-card-inner {
    min-height: auto;
    padding: 0 0.5rem;
    gap: 0;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }

  .landing-hero-detail-type {
    font-size: 0.8125rem;
    margin-bottom: 0.85rem;
    letter-spacing: 0.1em;
    padding: 0.45em 1.1em;
  }

  .landing-hero-detail-type-icon {
    display: inline-flex;
  }

  .landing-hero-detail-type-icon svg {
    width: 16px;
    height: 16px;
  }

  .landing-hero-detail-title {
    font-size: clamp(2.1rem, 6vw, 2.75rem);
    line-height: 1.2;
    margin: 0 0 1.15rem;
    padding: 0 0.5rem;
  }

  .landing-hero-detail-specs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1.15rem;
    margin-bottom: 1.25rem;
  }

  .landing-hero-spec {
    font-size: 1.0625rem;
  }

  .landing-hero-spec:not(:last-child) {
    padding-right: 1rem;
    margin-right: 0;
  }

  .landing-hero-spec-icon {
    width: 24px;
    height: 24px;
  }

  .landing-hero-spec-icon svg {
    width: 22px;
    height: 22px;
  }

  .landing-hero-detail-desc {
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0 0 1.15rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .landing-hero-detail-amenities {
    margin-bottom: 1.25rem;
    width: 100%;
  }

  .landing-hero-amenities-label {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .landing-hero-amenities-list {
    justify-content: center;
    gap: 0.2rem 0.5rem;
  }

  .landing-hero-amenity {
    font-size: 1rem;
  }

  .landing-hero-amenity-icon svg {
    width: 16px;
    height: 16px;
  }

  .landing-hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
  }

  .landing-hero-actions .landing-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }

  /* Picker: full width, no arrows — consistent padding with hero content */
  .landing-hero-picker {
    left: 0;
    right: 0;
    width: 100%;
    bottom: 1rem;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .landing-hero-picker-prev,
  .landing-hero-picker-next {
    display: none;
  }

  .landing-hero-picker-inner {
    justify-content: flex-start;
    padding: 0.35rem 0;
    min-width: 0;
    flex: 1;
  }

  .landing-hero-picker-item {
    min-width: 72px;
    max-width: 82px;
    padding: 0.4rem 0.35rem;
  }

  .landing-hero-picker-thumb {
    width: 64px;
    height: 50px;
  }

  .landing-hero-picker-item.is-active .landing-hero-picker-thumb {
    width: 80px;
    height: 62px;
  }

  .landing-hero-picker-item.is-active {
    min-width: 88px;
    max-width: 96px;
  }
}

/* ----- Small mobile: hero padding + reduced fonts ----- */
@media (max-width: 480px) {
  .landing-hero {
    padding: 2rem 1rem 4.5rem;
  }

  .landing-hero-content {
    padding: 0 0.75rem;
  }

  .landing-hero-detail-card-inner {
    padding: 0 0.35rem;
  }

  .landing-hero-picker {
    padding: 0 0.75rem;
    bottom: 0.75rem;
  }

  .landing-hero-detail-type {
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
    padding: 0.35em 0.9em;
    letter-spacing: 0.08em;
  }

  .landing-hero-detail-type-icon svg {
    width: 14px;
    height: 14px;
  }

  .landing-hero-detail-title {
    font-size: clamp(1.85rem, 5.5vw, 2.25rem);
    line-height: 1.22;
    margin: 0 0 0.85rem;
    padding: 0 0.35rem;
  }

  .landing-hero-detail-specs {
    gap: 0.4rem 0.85rem;
    margin-bottom: 0.9rem;
  }

  .landing-hero-spec {
    font-size: 0.9375rem;
  }

  .landing-hero-spec-icon {
    width: 20px;
    height: 20px;
  }

  .landing-hero-spec-icon svg {
    width: 18px;
    height: 18px;
  }

  .landing-hero-detail-desc {
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0 0 0.85rem;
  }

  .landing-hero-detail-amenities {
    margin-bottom: 0.9rem;
  }

  .landing-hero-amenities-label {
    font-size: 0.6875rem;
    margin-bottom: 0.3rem;
  }

  .landing-hero-amenity {
    font-size: 0.9375rem;
  }

  .landing-hero-amenity-icon svg {
    width: 14px;
    height: 14px;
  }

  .landing-hero-actions {
    margin-top: 0.75rem;
    padding-top: 1rem;
    gap: 0.6rem;
  }

  .landing-hero-actions .landing-btn {
    padding: 0.65rem 0.875rem;
    font-size: 0.875rem;
  }
}

/* ----- 375×667 and similar: keep hero detail clean, proper padding ----- */
@media (max-width: 400px) {
  .landing-hero {
    padding: 2rem 0.75rem 4.5rem;
  }

  .landing-hero-content {
    padding: 0 0.75rem;
    max-width: 100%;
  }

  .landing-hero-detail-card-inner {
    padding: 0 0.35rem;
  }

  .landing-hero-detail-type-row {
    margin-bottom: 0.65rem;
    padding: 0.4em 0.75em 0.4em 0.5em;
    max-width: calc(100vw - 1.5rem);
  }

  .landing-hero-detail-type-row .landing-hero-detail-type,
  .landing-hero-detail-type {
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    padding: 0.3em 0.7em;
  }

  .landing-hero-detail-title {
    font-size: clamp(1.65rem, 5.5vw, 2rem);
    margin: 0 0 0.65rem;
    padding: 0 0.25rem;
    -webkit-line-clamp: 2;
  }

  .landing-hero-detail-specs {
    gap: 0.35rem 0.65rem;
    margin-bottom: 0.65rem;
  }

  .landing-hero-spec {
    font-size: 0.8125rem;
  }

  .landing-hero-spec:not(:last-child) {
    padding-right: 0.65rem;
  }

  .landing-hero-spec-icon {
    width: 18px;
    height: 18px;
  }

  .landing-hero-spec-icon svg {
    width: 16px;
    height: 16px;
  }

  .landing-hero-detail-desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0 0 0.65rem;
    padding: 0 0.25rem;
    width: 100%;
    max-width: 100%;
    -webkit-line-clamp: 3;
  }

  .landing-hero-detail-amenities {
    margin-bottom: 0.65rem;
  }

  .landing-hero-amenities-label {
    font-size: 0.625rem;
    margin-bottom: 0.25rem;
  }

  .landing-hero-amenity {
    font-size: 0.8125rem;
  }

  .landing-hero-amenity-icon svg {
    width: 12px;
    height: 12px;
  }

  .landing-hero-actions {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    gap: 0.5rem;
  }

  .landing-hero-actions .landing-btn {
    padding: 0.55rem 0.75rem;
    font-size: 0.8125rem;
  }

  .landing-hero-picker {
    padding: 0 0.75rem;
    bottom: 0.75rem;
  }

  .landing-hero-picker-item {
    min-width: 60px;
    max-width: 70px;
    padding: 0.3rem 0.25rem;
  }

  .landing-hero-picker-thumb {
    width: 52px;
    height: 42px;
  }

  .landing-hero-picker-item.is-active .landing-hero-picker-thumb {
    width: 68px;
    height: 54px;
  }

  .landing-hero-picker-item.is-active {
    min-width: 74px;
    max-width: 82px;
  }
}

/* ----- 375×667 short viewport: fit hero without excess scroll ----- */
@media (max-width: 400px) and (max-height: 700px) {
  .landing-hero {
    min-height: calc(100vh - var(--lp-header-h));
    padding: 2rem 0.75rem 4rem;
    align-items: center;
  }

  .landing-hero-detail-title {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
    margin: 0 0 0.5rem;
  }

  .landing-hero-detail-specs {
    margin-bottom: 0.5rem;
  }

  .landing-hero-detail-desc {
    margin: 0 0 0.5rem;
    -webkit-line-clamp: 2;
  }

  .landing-hero-detail-amenities {
    margin-bottom: 0.5rem;
  }

  .landing-hero-amenities-list {
    gap: 0.15rem 0.4rem;
  }

  .landing-hero-actions {
    margin-top: 0.4rem;
    padding-top: 0.6rem;
  }
}

/* ----- iPad: 2 cards per row, hero adjusted for tablet ----- */
@media (min-width: 769px) and (max-width: 1024px) {
  .landing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .landing-hero {
    padding: 2rem 1.5rem 4.5rem;
    min-height: calc(100vh - var(--lp-header-h));
  }

  .landing-hero-content {
    max-width: 560px;
    padding: 0 1rem;
    margin-top: 0;
  }

  .landing-hero-detail-type {
    font-size: 0.875rem;
    margin-bottom: 0.9rem;
    padding: 0.5em 1.25em;
  }

  .landing-hero-detail-title {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    margin: 0 0 1.5rem;
  }

  .landing-hero-detail-specs {
    gap: 1rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .landing-hero-spec {
    font-size: 1.125rem;
  }

  .landing-hero-detail-desc {
    font-size: 1.125rem;
    margin: 0 0 1.25rem;
  }

  .landing-hero-detail-amenities {
    margin-bottom: 1.5rem;
  }

  .landing-hero-amenities-label {
    font-size: 0.8125rem;
  }

  .landing-hero-amenity {
    font-size: 1.0625rem;
  }

  .landing-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.75rem;
    margin-top: auto;
    width: 100%;
  }

  .landing-hero-actions .landing-btn {
    width: auto;
    min-width: 10rem;
  }

  .landing-hero-picker {
    bottom: 1rem;
    padding: 0 1rem;
  }
}

/* ----- View Details modal ----- */
.landing-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.landing-detail-modal[hidden] {
  display: flex !important;
}

.landing-detail-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.landing-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.landing-detail-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  max-height: 90vh;
  background: var(--lp-white);
  border-radius: 16px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  animation: landing-detail-enter 0.3s ease;
}

@keyframes landing-detail-enter {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.landing-detail-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--lp-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.landing-detail-close:hover {
  background: #fff;
  transform: scale(1.05);
}

.landing-detail-close:focus-visible {
  outline: 2px solid var(--lp-gold);
  outline-offset: 2px;
}

.landing-detail-close svg {
  width: 20px;
  height: 20px;
}

.landing-detail-gallery {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--lp-bg-alt);
  border-right: 1px solid var(--lp-border);
  padding: 0.7rem 0.7rem 0.6rem;
  gap: 0.55rem;
}

.landing-detail-main-wrap {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  max-height: 460px;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
  background: #e8ebf0;
  border: 1px solid rgba(15, 39, 68, 0.1);
}

.landing-detail-main-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.landing-detail-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: var(--lp-text-muted, #64748b);
  opacity: 0.55;
}

.landing-detail-placeholder svg {
  width: 72px;
  height: 72px;
  stroke: currentColor;
}

.landing-detail-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.1rem 0.2rem 0.2rem;
  border-top: 1px solid rgba(15, 39, 68, 0.12);
  background: rgba(255, 255, 255, 0.78);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.landing-detail-thumbs::-webkit-scrollbar {
  display: none;
}

.landing-detail-thumbs:empty {
  display: none;
}

.landing-detail-thumb {
  flex-shrink: 0;
  width: 72px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  scroll-snap-align: start;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.landing-detail-thumb:hover,
.landing-detail-thumb.is-active {
  border-color: var(--lp-gold);
  opacity: 1;
}

.landing-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-detail-body {
  padding: 1.5rem 1.5rem 1.75rem;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
}

.landing-detail-type {
  display: inline-block;
  width: fit-content;
  padding: 0.3rem 0.62rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lp-gold);
  background: rgba(184, 134, 11, 0.12);
  border-radius: 6px;
}

.landing-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-dark);
  margin: 0;
  line-height: 1.25;
}

.landing-detail-desc {
  font-size: 0.9375rem;
  color: var(--lp-text);
  line-height: 1.55;
  margin: 0;
}

.landing-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0;
}

.landing-detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.landing-detail-meta-row .landing-detail-spec#landing-detail-spec-bed {
  display: none;
}

.landing-detail-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: #f8f9fc;
  border: 1px solid rgba(15, 39, 68, 0.08);
  font-size: 0.875rem;
  color: var(--lp-text);
}

.landing-detail-spec.hidden {
  display: none;
}

.landing-detail-spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--lp-gold);
  flex-shrink: 0;
}

.landing-detail-spec-icon svg {
  width: 18px;
  height: 18px;
}

.landing-detail-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
}

.landing-detail-amenities:empty {
  display: none;
}

.landing-detail-promo {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.62rem 0.72rem;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 247, 230, 0.88),
    rgba(255, 243, 218, 0.7)
  );
  border: 1px solid rgba(184, 134, 11, 0.28);
}

.landing-detail-promo.hidden {
  display: none;
}

.landing-detail-promo-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #8a6512;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.landing-detail-promo-desc {
  font-size: 0.84rem;
  line-height: 1.45;
  color: #5b4a23;
}

.landing-detail-promo-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  width: fit-content;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  background: rgba(138, 101, 18, 0.12);
}

.landing-detail-promo-countdown-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a6512;
}

.landing-detail-promo-countdown-time {
  font-size: 0.76rem;
  font-weight: 800;
  color: #5b4a23;
}

.landing-detail-amenity {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  font-size: 0.8125rem;
  color: var(--lp-text);
  background: #f4f6fa;
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: 6px;
}

.landing-detail-amenity svg {
  width: 14px;
  height: 14px;
  color: var(--lp-gold);
  flex-shrink: 0;
}

.landing-detail-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--lp-border);
  margin-top: auto;
}

.landing-detail-price {
  width: 100%;
}

.landing-detail-price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0.28rem 0.44rem;
  width: 100%;
  padding: 0.74rem 0.8rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(15, 39, 68, 0.12);
  color: #1f2937;
  box-shadow: 0 6px 16px rgba(15, 39, 68, 0.08);
}

.landing-detail-price-now {
  grid-column: 1;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: #0f172a;
}

.landing-detail-price-discount {
  grid-column: 2;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.14rem 0.4rem;
  border-radius: 999px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(185, 28, 28, 0.24);
  white-space: nowrap;
  box-shadow: none;
}

.landing-detail-price-discount svg {
  width: 0.72em;
  height: 0.72em;
  flex-shrink: 0;
}

.landing-detail-price-was {
  grid-column: 1;
  font-size: 0.74rem;
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-thickness: 1.2px;
  text-decoration-color: #9ca3af;
}

.landing-detail-price-title {
  grid-column: 1 / -1;
  font-size: 0.62rem;
  color: #8a6512;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: normal;
  font-weight: 600;
}

.landing-detail-price-desc {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #475569;
}

.landing-detail-price-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.56rem;
  margin-top: 0.12rem;
  padding-top: 0.28rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.landing-detail-price-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.landing-detail-price-info .landing-detail-price-title {
  grid-column: unset;
}

.landing-detail-price-info .landing-detail-price-desc {
  grid-column: unset;
}

.landing-detail-price-countdown {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.22rem;
  min-width: 196px;
  padding: 0.34rem 0.42rem;
  border-radius: 10px;
  background: var(--lp-dark, #0f2744);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  text-align: center;
}

.landing-detail-price-countdown-label {
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.landing-detail-price-countdown-time {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.22rem;
  width: 100%;
}

.landing-detail-price-count-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  min-height: 46px;
  padding: 0.22rem 0.14rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.landing-detail-price-count-value {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--lp-gold, #c9a24f);
}

.landing-detail-price-count-unit {
  display: block;
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.landing-detail-price-countdown-status {
  grid-column: 1 / -1;
  display: block;
  padding: 0.36rem 0.26rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.landing-detail-price-card--regular {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.22rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.landing-detail-price-card--regular .landing-detail-price-title {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: #64748b;
  font-weight: 600;
}

.landing-detail-price-card--regular .landing-detail-price-now {
  font-size: 1.18rem;
  color: #0f172a;
}

.landing-detail-price-card--regular .landing-detail-price-desc {
  font-size: 0.72rem;
  color: #64748b;
}

.landing-detail-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

@media (max-width: 480px) {
  .landing-detail-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }
  .landing-detail-title {
    font-size: 1.25rem;
  }
  .landing-detail-footer {
    gap: 0.75rem;
  }
  .landing-detail-price {
    width: 100%;
  }
  .landing-detail-price-card {
    width: 100%;
  }
  .landing-detail-price-now {
    font-size: 1.08rem;
  }
  .landing-detail-price-discount {
    font-size: 0.56rem;
    padding: 0.16rem 0.4rem;
  }
  .landing-detail-price-was {
    font-size: 0.72rem;
  }
  .landing-detail-price-title {
    font-size: 0.58rem;
  }
  .landing-detail-price-desc {
    font-size: 0.66rem;
  }
  .landing-detail-price-bottom {
    gap: 0.5rem;
  }
  .landing-detail-price-countdown {
    min-width: 188px;
    padding: 0.34rem 0.4rem;
  }
  .landing-detail-price-countdown-label {
    font-size: 0.48rem;
  }
  .landing-detail-price-count-segment {
    min-height: 48px;
    padding: 0.22rem 0.14rem;
  }
  .landing-detail-price-count-value {
    font-size: 0.98rem;
  }
  .landing-detail-price-count-unit {
    font-size: 0.43rem;
  }
  .landing-detail-reserve {
    justify-content: center;
  }
}

@media (max-width: 920px) {
  .landing-detail-modal {
    align-items: flex-end;
    padding: 0;
  }

  .landing-detail-panel {
    max-width: 100%;
    width: 100%;
    max-height: none;
    display: flex;
    flex-direction: column;
    border-radius: 16px 16px 0 0;
  }

  .landing-detail-gallery {
    border-right: none;
    padding: 0.55rem 0.55rem 0.45rem;
    gap: 0.45rem;
  }

  .landing-detail-main-wrap {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .landing-detail-thumbs {
    border-top: none;
    background: transparent;
    padding: 0.05rem 0.1rem 0.1rem;
  }

  .landing-detail-thumb {
    width: 64px;
  }

  .landing-detail-body {
    padding: 1rem 1rem 1.1rem;
  }

  .landing-detail-footer {
    position: static;
    bottom: auto;
    z-index: auto;
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 0.8rem;
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .landing-detail-price-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .landing-detail-price-info {
    width: 100%;
  }

  .landing-detail-price-countdown {
    width: 100%;
    min-width: 0;
  }

  .landing-detail-close {
    top: 0.55rem;
    right: 0.55rem;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .landing-detail-main-wrap {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .landing-detail-thumbs {
    padding: 0.45rem 0.75rem;
    gap: 0.45rem;
  }

  .landing-detail-thumb {
    width: 58px;
  }

  .landing-detail-body {
    padding: 0.95rem 0.9rem 1rem;
  }

  .landing-detail-type {
    margin: 0;
  }

  .landing-detail-title {
    font-size: 1.12rem;
    margin: 0;
  }

  .landing-detail-desc {
    font-size: 0.86rem;
    line-height: 1.45;
    margin: 0;
  }

  .landing-detail-specs {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 0;
  }

  .landing-detail-amenities {
    gap: 0.4rem;
    margin: 0;
  }

  .landing-detail-promo {
    padding: 0.55rem 0.6rem;
    gap: 0.3rem;
  }

  .landing-detail-promo-title {
    font-size: 0.74rem;
  }

  .landing-detail-promo-desc {
    font-size: 0.78rem;
  }

  .landing-detail-promo-countdown-label {
    font-size: 0.62rem;
  }

  .landing-detail-promo-countdown-time {
    font-size: 0.7rem;
  }

  .landing-detail-amenity {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
  }

  .landing-detail-footer {
    gap: 0.65rem;
    margin-top: 0.5rem;
    padding-top: 0.7rem;
  }
}

/* View Details modal spacing polish for iPad/mobile */
@media (max-width: 1024px) {
  .landing-detail-body {
    padding: 1.35rem 1.3rem calc(1.35rem + env(safe-area-inset-bottom, 0));
    gap: 1rem;
  }

  .landing-detail-type {
    margin-bottom: 0.18rem;
  }

  .landing-detail-title {
    margin: 0.15rem 0 0.34rem;
    line-height: 1.3;
  }

  .landing-detail-desc {
    margin: 0 0 0.5rem;
    line-height: 1.62;
  }

  .landing-detail-specs {
    gap: 0.72rem;
    margin: 0.12rem 0 0.32rem;
  }

  .landing-detail-meta-row {
    gap: 0.6rem;
    margin: 0.16rem 0 0.28rem;
  }

  .landing-detail-amenities {
    gap: 0.55rem;
    margin: 0.12rem 0 0.32rem;
  }

  .landing-detail-amenity {
    padding: 0.42rem 0.68rem;
  }

  .landing-detail-promo {
    margin-top: 0.22rem;
    padding: 0.72rem 0.82rem;
    gap: 0.42rem;
  }

  .landing-detail-footer {
    margin-top: 0.95rem;
    padding-top: 0.9rem;
  }
}

@media (max-width: 768px) {
  .landing-detail-body {
    padding: 1.2rem 1.1rem calc(1.2rem + env(safe-area-inset-bottom, 0));
    gap: 0.9rem;
  }

  .landing-detail-title {
    margin-bottom: 0.28rem;
  }

  .landing-detail-desc {
    margin-bottom: 0.42rem;
  }
}

/* Unified modal behavior for iPad/mobile scrolling */
@media (max-width: 1024px) {
  .landing-detail-modal {
    align-items: stretch;
    justify-content: center;
    padding: 0;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .landing-detail-panel {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    border-radius: 16px 16px 0 0;
    display: block;
    overflow: visible;
  }

  .landing-detail-gallery {
    border-right: none;
    flex-shrink: 0;
    min-height: 0;
  }

  .landing-detail-main-wrap {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .landing-detail-body {
    flex: none;
    display: block;
    min-height: 0;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 1.1rem 1.1rem calc(5rem + env(safe-area-inset-bottom, 0));
    gap: 0.78rem;
  }

  .landing-detail-title {
    margin: 0.08rem 0 0.16rem;
    line-height: 1.26;
  }

  .landing-detail-desc {
    margin: 0 0 0.24rem;
    line-height: 1.5;
  }

  .landing-detail-type {
    margin: 0;
    padding: 0.28rem 0.56rem;
  }

  .landing-detail-specs {
    gap: 0.54rem;
    margin: 0;
  }

  .landing-detail-meta-row {
    gap: 0.45rem;
    margin-top: 0.08rem;
    margin-bottom: 0.06rem;
  }

  .landing-detail-amenities {
    gap: 0.42rem;
    margin: 0.02rem 0 0;
  }

  .landing-detail-promo {
    margin-top: 0.08rem;
    padding: 0.58rem 0.66rem;
    gap: 0.3rem;
  }

  .landing-detail-footer {
    position: sticky;
    bottom: 0;
    z-index: 6;
    margin-top: 0.68rem;
    flex-shrink: 0;
    padding-top: 0.7rem;
    padding-bottom: calc(0.4rem + env(safe-area-inset-bottom, 0));
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(15, 39, 68, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    gap: 0.62rem;
  }

  .landing-detail-price-card {
    padding: 0.66rem 0.7rem;
    gap: 0.24rem 0.4rem;
  }

  .landing-detail-price-bottom {
    padding-top: 0.22rem;
  }
}

@media (max-width: 768px) {
  .landing-detail-body {
    padding: 1rem 0.95rem calc(4.8rem + env(safe-area-inset-bottom, 0));
    gap: 0.66rem;
  }

  .landing-detail-type {
    padding: 0.24rem 0.5rem;
    font-size: 0.7rem;
  }

  .landing-detail-title {
    margin: 0.06rem 0 0.12rem;
    font-size: 1.16rem;
  }

  .landing-detail-desc {
    margin: 0 0 0.18rem;
    line-height: 1.46;
  }

  .landing-detail-footer {
    margin-top: 0.55rem;
    padding-top: 0.62rem;
    gap: 0.56rem;
  }

  .landing-detail-specs {
    grid-template-columns: 1fr;
    gap: 0.46rem;
    margin: 0;
  }

  .landing-detail-meta-row {
    gap: 0.38rem;
    margin-top: 0.04rem;
    margin-bottom: 0.04rem;
  }

  .landing-detail-spec,
  .landing-detail-amenity {
    padding: 0.3rem 0.48rem;
  }

  .landing-detail-promo {
    padding: 0.52rem 0.58rem;
    gap: 0.26rem;
  }

  .landing-detail-price-card {
    padding: 0.6rem 0.62rem;
  }

  .landing-detail-price-bottom {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.38rem;
  }

  .landing-detail-price-info {
    flex: 1;
    min-width: 0;
  }

  .landing-detail-price-countdown {
    flex: 0 0 150px;
    min-width: 150px;
    width: auto;
    padding: 0.28rem 0.32rem;
    gap: 0.18rem;
    border-radius: 9px;
  }

  .landing-detail-price-countdown-label {
    font-size: 0.42rem;
    letter-spacing: 0.08em;
  }

  .landing-detail-price-countdown-time {
    gap: 0.16rem;
  }

  .landing-detail-price-count-segment {
    min-height: 36px;
    padding: 0.16rem 0.08rem;
    gap: 0.12rem;
    border-radius: 6px;
  }

  .landing-detail-price-count-value {
    font-size: 0.8rem;
  }

  .landing-detail-price-count-unit {
    font-size: 0.32rem;
    letter-spacing: 0.08em;
  }

  .landing-detail-thumb {
    width: 62px;
  }

  .landing-detail-amenity {
    font-size: 0.77rem;
    padding: 0.32rem 0.5rem;
  }

  .landing-detail-close {
    top: 0.55rem;
    right: 0.55rem;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .landing-detail-body {
    padding: 0.92rem 0.86rem calc(0.96rem + env(safe-area-inset-bottom, 0));
    gap: 0.58rem;
  }

  .landing-detail-title {
    margin: 0.04rem 0 0.1rem;
    font-size: 1.08rem;
  }

  .landing-detail-desc {
    margin: 0 0 0.16rem;
    font-size: 0.84rem;
    line-height: 1.44;
  }

  .landing-detail-meta-row {
    gap: 0.34rem;
  }

  .landing-detail-price-bottom {
    gap: 0.32rem;
  }

  .landing-detail-price-countdown {
    flex-basis: 134px;
    min-width: 134px;
    padding: 0.24rem 0.28rem;
  }

  .landing-detail-price-count-segment {
    min-height: 32px;
    padding: 0.14rem 0.06rem;
  }

  .landing-detail-price-count-value {
    font-size: 0.72rem;
  }

  .landing-detail-price-count-unit {
    font-size: 0.28rem;
  }
}

@media (min-width: 769px) {
  .landing-detail-meta-row .landing-detail-specs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
  }

  .landing-detail-meta-row .landing-detail-spec {
    min-height: auto;
    padding: 0.32rem 0.52rem;
    border-radius: 999px;
    background: #f7f8fb;
  }

  .landing-detail-meta-row .landing-detail-amenities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
  }

  .landing-detail-meta-row .landing-detail-amenity {
    padding: 0.32rem 0.52rem;
    border-radius: 999px;
  }
}

@media (max-width: 1024px) {
  .landing-detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.42rem;
    overflow: visible;
    padding-bottom: 0.1rem;
  }

  .landing-detail-meta-row .landing-detail-specs,
  .landing-detail-meta-row .landing-detail-amenities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.42rem;
    margin: 0;
  }

  .landing-detail-meta-row .landing-detail-spec,
  .landing-detail-meta-row .landing-detail-amenity {
    flex: 0 0 auto;
    min-height: auto;
    padding: 0.3rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
  }
}

/* Keep promo summary side-by-side on all iPad sizes */
@media (min-width: 768px) and (max-width: 1024px) {
  .landing-detail-price-bottom {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .landing-detail-price-info {
    flex: 1;
    width: auto;
  }

  .landing-detail-price-countdown {
    width: auto;
    min-width: 186px;
  }
}

/* ----- Card image preview lightbox ----- */
.landing-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.landing-lightbox[hidden] {
  display: flex !important;
}

.landing-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.landing-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.landing-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.landing-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.landing-lightbox-close:focus-visible {
  outline: 2px solid var(--lp-gold);
  outline-offset: 2px;
}

.landing-lightbox-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 1100px);
  max-width: 1100px;
  max-height: min(82vh, 760px);
  padding: 0.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-lightbox-img {
  width: 100%;
  max-width: 100%;
  max-height: min(76vh, 700px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #0f172a;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  animation: landing-lightbox-fade 0.25s ease;
}

@keyframes landing-lightbox-fade {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.landing-lightbox-prev,
.landing-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.landing-lightbox-prev:hover,
.landing-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.landing-lightbox-prev {
  left: -56px;
}
.landing-lightbox-next {
  right: -56px;
}

.landing-lightbox-caption {
  position: relative;
  z-index: 2;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
  max-width: 32rem;
}

.landing-lightbox-counter {
  position: relative;
  z-index: 2;
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .landing-lightbox {
    padding: 1rem;
  }

  .landing-lightbox-content {
    width: 100%;
    max-height: 74vh;
    padding: 0.35rem;
    border-radius: 12px;
  }

  .landing-lightbox-img {
    max-height: 68vh;
    border-radius: 8px;
  }

  .landing-lightbox-prev {
    left: 0.5rem;
  }
  .landing-lightbox-next {
    right: 0.5rem;
  }
  .landing-lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* ==========================================================================
   Cookie consent bar (landing palette; floating card — no full-width strip)
   ========================================================================== */

.landing-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9997;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0.75rem max(1rem, env(safe-area-inset-right, 0px))
    calc(0.75rem + env(safe-area-inset-bottom, 0))
    max(1rem, env(safe-area-inset-left, 0px));
  pointer-events: none;
  background: transparent;
  border-top: none;
  font-family: var(--lp-font);
}

.landing-cookie-banner[hidden] {
  display: none !important;
}

.landing-cookie-inner {
  pointer-events: auto;
  box-sizing: border-box;
  width: 100%;
  max-width: min(40rem, calc(100vw - 2rem));
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.1rem;
  padding: 1.15rem 1.35rem;
  background: var(--lp-white);
  border: 1px solid rgba(15, 39, 68, 0.12);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-lg);
  font-family: var(--lp-font);
}

.landing-cookie-copy {
  flex: 0 0 auto;
  min-width: 0;
}

.landing-cookie-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--lp-text);
}

.landing-cookie-text strong {
  font-weight: 600;
  color: var(--lp-dark);
}

.landing-cookie-link {
  color: var(--lp-dark-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.2rem;
  transition: color var(--lp-transition);
}

.landing-cookie-link:hover {
  color: var(--lp-dark);
}

.landing-cookie-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.65rem;
  flex-shrink: 0;
}

.landing-cookie-btn {
  min-height: 46px;
  padding: 0.55rem 1.2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  border-radius: var(--lp-radius-sm);
  box-shadow: none;
  transform: none;
  transition:
    background 0.1s ease,
    border-color 0.1s ease,
    color 0.1s ease;
}

.landing-cookie-banner .landing-cookie-btn.landing-btn {
  font-family: inherit;
  border-style: solid;
  border-width: 1px;
}

.landing-cookie-banner .landing-btn-outline {
  color: var(--lp-dark);
  background: var(--lp-white);
  border-color: rgba(15, 39, 68, 0.22);
  box-shadow: var(--lp-shadow-sm);
}

.landing-cookie-banner .landing-btn-outline:hover {
  background: var(--lp-bg-alt);
  border-color: var(--lp-dark-soft);
  color: var(--lp-dark);
  transform: none;
  box-shadow: var(--lp-shadow-sm);
}

.landing-cookie-banner .landing-btn-primary {
  color: var(--lp-white);
  background: var(--lp-dark);
  border-color: var(--lp-dark);
  box-shadow: 0 2px 8px rgba(15, 39, 68, 0.22);
}

.landing-cookie-banner .landing-btn-primary:hover {
  background: var(--lp-dark-soft);
  border-color: var(--lp-dark-soft);
  color: var(--lp-white);
  transform: none;
  box-shadow: 0 4px 14px rgba(15, 39, 68, 0.18);
}

.landing-cookie-banner .landing-cookie-btn:focus {
  outline: none;
}

.landing-cookie-banner .landing-cookie-btn:focus-visible {
  box-shadow:
    0 0 0 1px var(--lp-white),
    0 0 0 3px var(--lp-dark-soft);
}

body.landing-cookie-banner-open {
  padding-bottom: calc(12rem + env(safe-area-inset-bottom, 0));
}

/* Tablet & iPad (portrait/landscape up to 1024px) */
@media (max-width: 1024px) {
  .landing-cookie-banner {
    justify-content: center;
    padding: 0.65rem max(1rem, env(safe-area-inset-right, 0px))
      calc(0.65rem + env(safe-area-inset-bottom, 0))
      max(1rem, env(safe-area-inset-left, 0px));
  }

  .landing-cookie-inner {
    max-width: min(36rem, calc(100vw - 2rem));
    padding: 1.05rem 1.2rem;
    gap: 1rem;
  }

  .landing-cookie-text {
    font-size: 0.90625rem;
    line-height: 1.56;
  }

  .landing-cookie-btn {
    min-height: 44px;
    padding: 0.5rem 1.1rem;
    font-size: 0.90625rem;
  }

  body.landing-cookie-banner-open {
    padding-bottom: calc(11.5rem + env(safe-area-inset-bottom, 0));
  }
}

/* iPad / tablet: two buttons in a row when there is room */
@media (min-width: 768px) and (max-width: 1024px) {
  .landing-cookie-inner {
    max-width: min(38rem, calc(100vw - 2.25rem));
  }

  .landing-cookie-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }

  .landing-cookie-actions .landing-cookie-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  body.landing-cookie-banner-open {
    padding-bottom: calc(10rem + env(safe-area-inset-bottom, 0));
  }
}

/* Desktop: cookie CTAs in one row */
@media (min-width: 1025px) {
  .landing-cookie-inner {
    max-width: min(42rem, calc(100vw - 3rem));
  }

  .landing-cookie-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .landing-cookie-actions .landing-cookie-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  body.landing-cookie-banner-open {
    padding-bottom: calc(10rem + env(safe-area-inset-bottom, 0));
  }
}

/* Phones & small tablets (≤768px) — center card */
@media (max-width: 768px) {
  .landing-cookie-banner {
    justify-content: center;
    padding: 0.5rem max(0.65rem, env(safe-area-inset-right, 0px))
      calc(0.5rem + env(safe-area-inset-bottom, 0))
      max(0.65rem, env(safe-area-inset-left, 0px));
  }

  .landing-cookie-inner {
    max-width: min(28rem, calc(100vw - 1.35rem));
    padding: 1rem 1.1rem;
    gap: 0.95rem;
    border-radius: var(--lp-radius-sm);
  }

  .landing-cookie-text {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .landing-cookie-link {
    margin-left: 0.12rem;
  }

  .landing-cookie-actions {
    gap: 0.55rem;
  }

  .landing-cookie-btn {
    min-height: 48px;
    padding: 0.5rem 1.05rem;
    font-size: 0.875rem;
    line-height: normal;
  }

  body.landing-cookie-banner-open {
    padding-bottom: calc(13rem + env(safe-area-inset-bottom, 0));
  }
}

/* ≤768px: stack buttons (override iPad row when narrow) */
@media (max-width: 767px) {
  .landing-cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-cookie-actions .landing-cookie-btn {
    flex: none;
    width: 100%;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .landing-cookie-banner {
    justify-content: center;
    padding: 0.45rem max(0.5rem, env(safe-area-inset-right, 0px))
      calc(0.45rem + env(safe-area-inset-bottom, 0))
      max(0.5rem, env(safe-area-inset-left, 0px));
  }

  .landing-cookie-inner {
    max-width: calc(100vw - 1rem);
    padding: 0.9rem 0.95rem;
    gap: 0.8rem;
  }

  .landing-cookie-text {
    font-size: 0.84375rem;
    line-height: 1.5;
  }

  .landing-cookie-btn {
    min-height: 48px;
    font-size: 0.84375rem;
  }

  body.landing-cookie-banner-open {
    padding-bottom: calc(13.5rem + env(safe-area-inset-bottom, 0));
  }
}

/* Very small widths (e.g. 320px) */
@media (max-width: 360px) {
  .landing-cookie-inner {
    padding: 0.82rem 0.85rem;
  }

  .landing-cookie-text {
    font-size: 0.8125rem;
  }

  .landing-cookie-btn {
    min-height: 46px;
    font-size: 0.8125rem;
  }
}
