/* ============================================================
   RETAIL TEMPLATE — Clean Editorial Design System
   Light / cream base. Brand color used as accent only.
   All color variables overridden at runtime by config-loader.js
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   DESIGN TOKENS — LIGHT by default (NO dark fallbacks)
   config-loader.js overrides these at runtime
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-void:     #ffffff;
  --bg-deep:     #fafaf8;
  --bg-surface:  #f4f2ee;
  --bg-raised:   #e8e5df;

  /* Brand accent (overridden by config) */
  --gold:        #C8A84B;
  --gold-bright: #dfc068;
  --gold-dark:   #a88930;
  --gold-grad:   linear-gradient(135deg, #a88930 0%, #C8A84B 50%, #dfc068 100%);
  --gold-glow:   0 4px 20px rgba(200,168,75,0.25);

  /* Text */
  --fg:          #1a1a1a;
  --white-text:  #1a1a1a;
  --cream:       #6b5a2a;
  --muted:       #6c6c6c;
  --dim:         #a0a0a0;

  /* Legacy aliases (needed by config-loader + other pages) */
  --black:       #1a1a1a;
  --black-soft:  #2d2d2d;
  --gold-light:  #dfc068;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --gray-light:  #f4f2ee;
  --gray:        #6c6c6c;
  --red:         #c0392b;
  --text:        #1a1a1a;

  /* Shadows — light on white */
  --shadow-sm:   0 1px 6px rgba(0,0,0,0.06), 0 2px 14px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(200,168,75,0.3);

  /* Shape */
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.2s ease;
}

/* ============================================================
   DARK THEME — applied when body has .theme-dark class
   ============================================================ */
body.theme-dark {
  --bg-void:    #090909;
  --bg-deep:    #111111;
  --bg-surface: #191919;
  --bg-raised:  #242424;
  --fg:         #ede9e2;
  --white-text: #ede9e2;
  --cream:      #c9b88a;
  --muted:      #888888;
  --dim:        #575757;
  --text:       #ede9e2;
  --white:      #ede9e2;
  --black:      #111111;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.5);
  --shadow-md:  0 6px 28px rgba(0,0,0,0.6);
  --shadow-lg:  0 12px 50px rgba(0,0,0,0.75);
}
body.theme-dark .announcement-bar { background: var(--bg-raised); border-bottom: 1px solid rgba(200,168,75,0.18); }
body.theme-dark .announcement-bar .marquee-item { color: var(--gold); }
body.theme-dark .header { background: rgba(9,9,9,0.96); border-bottom-color: rgba(255,255,255,0.07); }
body.theme-dark .trust-bar { background: var(--bg-surface); }
body.theme-dark .trust-text strong { color: var(--white-text); }
body.theme-dark .trust-text span { color: var(--muted); }
body.theme-dark .trust-item { border-right-color: rgba(255,255,255,0.08); }
body.theme-dark .deal-card { background: var(--bg-surface); border-color: rgba(255,255,255,0.07); }
body.theme-dark .review-card { background: var(--bg-surface); border-color: rgba(255,255,255,0.07); }
body.theme-dark .pkg-card { background: var(--bg-surface); border-color: rgba(255,255,255,0.07); }
body.theme-dark .google-badge { background: var(--bg-surface); border-color: rgba(255,255,255,0.1); }
body.theme-dark .vacation-card { background: var(--bg-surface); border-color: rgba(255,255,255,0.08); }
body.theme-dark .vc-option { background: var(--bg-raised); border-color: rgba(255,255,255,0.06); }
body.theme-dark .vp-option { background: var(--bg-raised); border-color: rgba(255,255,255,0.07); color: var(--white-text); }
body.theme-dark .nav { background: var(--bg-void); }
body.theme-dark .btn-outline { color: var(--white-text); border-color: rgba(255,255,255,0.25); }
body.theme-dark .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
body.theme-dark .hero-visual { background: var(--bg-surface); }
body.theme-dark .footer { background: var(--bg-surface); }
body.theme-dark .info-block { border-bottom-color: var(--bg-raised); }
body.theme-dark .map-container { border-color: rgba(255,255,255,0.07); }

/* Light theme — same as :root (safety re-apply) */
body.theme-light {
  --bg-void:    #ffffff;
  --bg-deep:    #fafaf8;
  --bg-surface: #f4f2ee;
  --bg-raised:  #e8e5df;
  --fg:         #1a1a1a;
  --white-text: #1a1a1a;
  --muted:      #6c6c6c;
  --dim:        #a0a0a0;
  --text:       #1a1a1a;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer-sweep {
  0%   { left: -120%; }
  100% { left: 120%; }
}
@keyframes price-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 22px rgba(200,168,75,0.3); }
  50%       { box-shadow: 0 4px 38px rgba(200,168,75,0.6); }
}

/* ============================================================
   BASE TYPOGRAPHY
   ============================================================ */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--fg);
  background: var(--bg-void);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.12;
  color: var(--fg);
}

/* Price display style (Bebas Neue) */
.price-display {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 0.02em;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container   { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white-text); }

.section        { padding: 100px 28px; background: var(--bg-void); }
.section-alt    { padding: 100px 28px; background: var(--bg-deep); }
.section-accent { padding: 100px 28px; background: var(--bg-surface); }
/* Legacy aliases */
.section-light  { padding: 100px 28px; background: var(--bg-surface); }
.section-dark   { padding: 100px 28px; background: var(--bg-void); }

.gold-word { color: var(--gold); }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 56px;
  max-width: 520px;
  line-height: 1.75;
  font-weight: 400;
}
.section-subtitle.centered { margin-left: auto; margin-right: auto; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }
.reveal-d5 { transition-delay: 0.35s; }
.reveal-d6 { transition-delay: 0.42s; }

/* Shimmer price (kept for deals pages compatibility) */
.shimmer-price {
  background: linear-gradient(90deg,
    var(--gold-dark) 0%, var(--gold-bright) 25%,
    #fff8e0 50%, var(--gold-bright) 75%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: price-shimmer 3s linear infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  left: -120%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
}
.btn:hover::after { animation: shimmer-sweep 0.5s ease forwards; }

/* Primary — filled gold */
.btn-gold {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Secondary — outline */
.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: rgba(0,0,0,0.18);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Ghost — no border, text only */
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.04em;
}
.btn-ghost:hover { color: var(--gold); }

/* Sizes */
.btn-lg { padding: 16px 40px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* Legacy dark button (other pages use this) */
.btn-black {
  background: var(--fg);
  color: var(--bg-void);
  border-color: var(--fg);
}
.btn-black:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-1px);
}
body.theme-dark .btn-black {
  background: var(--bg-raised);
  color: var(--gold);
  border-color: var(--gold);
}
body.theme-dark .btn-black:hover {
  background: var(--gold);
  color: #080808;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

/* ============================================================
   ANNOUNCEMENT BAR / MARQUEE
   ============================================================ */
.announcement-bar {
  background: var(--fg);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.announcement-bar:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 36px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.marquee-dot {
  color: var(--gold);
  font-size: 0.55rem;
  opacity: 0.8;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  flex-shrink: 0;
}
.logo-mark .lm-main {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.logo-mark .lm-sub {
  font-size: 0.45rem;
  color: rgba(255,255,255,0.65);
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .lname {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}
.logo-text .lsub {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
}

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}
.nav a:hover { color: var(--fg); background: var(--bg-surface); }
.nav a.active { color: var(--gold); }

.nav-call {
  background: var(--gold) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}
.nav-call:hover {
  background: var(--gold-dark) !important;
  color: #fff !important;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 7px;
  cursor: pointer;
  padding: 9px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.22s ease;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-close { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  overflow: hidden;
  position: relative;
  background: var(--bg-void);
}
.hero-inner { display: contents; }

/* Left: editorial text */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px max(64px, calc((100vw - 1120px) / 2 + 28px));
  gap: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 400px;
  font-weight: 400;
}

.hero-includes {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 36px;
}
.hero-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}
.hero-includes li i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Right: visual/promo panel */
.hero-visual {
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(200,168,75,0.07);
  pointer-events: none;
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(200,168,75,0.05);
  pointer-events: none;
}

.hero-visual-content { position: relative; z-index: 1; width: 100%; max-width: 380px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}

/* Promo card (right panel) — id: vc-options filled by config-loader */
.vacation-card-wrapper { width: 100%; }
.vacation-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.vc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 18px;
}
.vacation-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--fg);
  font-family: 'Playfair Display', serif;
}
.vc-threshold {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}
.vc-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.vc-option {
  background: var(--bg-surface);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg);
  border: 1px solid var(--bg-raised);
}
.vc-fine { font-size: 0.76rem; color: var(--dim); }

/* Legacy hero elements (other pages compatibility) */
.hero-glow { display: none; }
.hero-trust { display: none; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--fg);
  padding: 32px 28px;
}

.trust-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }

.trust-icon { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }
.trust-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  font-family: 'DM Sans', sans-serif;
}
.trust-text span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   PRODUCTS / DEALS GRID
   ============================================================ */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.deal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.deal-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.deal-img {
  position: relative;
  height: 240px;
  background: var(--bg-surface);
  overflow: hidden;
}
.deal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.deal-card:hover .deal-img img { transform: scale(1.04); }

.no-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  gap: 10px;
}
.no-img-placeholder i { font-size: 2.5rem; }
.no-img-placeholder p { font-size: 0.8rem; }

.sale-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 4px;
  z-index: 2;
}

.financing-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* deal-info is what main.js renders into */
.deal-info {
  padding: 20px 22px 24px;
}
.deal-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
  line-height: 1.35;
}
/* Legacy alias */
.deal-body { padding: 20px 22px 24px; }
.deal-body h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--fg); margin-bottom: 6px; }
.deal-meta { font-size: 0.8rem; color: var(--dim); margin-bottom: 12px; }

.deal-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.deal-price .was,
.was {
  font-size: 0.86rem;
  color: var(--dim);
  text-decoration: line-through;
}
.deal-price .now,
.now {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--fg);
}

/* ── Home page deal tabs ──────────────────────────────────── */
.deals-tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--bg-raised);
  padding-bottom: 0;
}
.deals-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.deals-tab:hover { color: var(--fg); }
.deals-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.deals-tab i { font-size: 0.8rem; }

/* ── Deals page filter bar ───────────────────────────────── */
.catalog-filter-bar {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--bg-raised);
  padding: 14px 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.cfb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cfb-status {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.cfb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  background: var(--bg-void);
  border: 1px solid var(--bg-raised);
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--transition);
}
.cfb-btn:hover { border-color: var(--gold); color: var(--fg); }
.cfb-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.cfb-btn i { font-size: 0.75rem; }
.cfb-count {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Category section ────────────────────────────────────── */
.cat-section { margin-bottom: 64px; }
.cat-count {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 8px;
}

/* ── "Available to Order" badge ──────────────────────────── */
.to-order-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.to-order-tag i { font-size: 0.7rem; color: var(--muted); }

.in-store-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.in-store-tag i { font-size: 0.7rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 0;
}

.why-card { text-align: left; }
.why-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,168,75,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

/* Featured single review */
.featured-review {
  max-width: 740px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.featured-review::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  color: var(--gold);
  opacity: 0.1;
  position: absolute;
  top: -12px;
  left: 36px;
  line-height: 1;
  pointer-events: none;
}

.review-stars { color: #F4B400; font-size: 1rem; letter-spacing: 3px; margin-bottom: 18px; }
.review-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.75;
  margin-bottom: 28px;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-author-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
}
.review-author-info span { font-size: 0.8rem; color: var(--dim); }

/* Review cards (rendered by config-loader into #reviews-grid) */
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.rc-stars { color: #F4B400; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.rc-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.rc-author { display: flex; align-items: center; gap: 11px; }
.rc-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.rc-name strong { display: block; font-size: 0.86rem; font-weight: 600; color: var(--fg); font-family: 'DM Sans', sans-serif; }
.rc-name span { font-size: 0.76rem; color: var(--dim); }

/* Google badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 40px;
  padding: 7px 18px;
  margin-bottom: 20px;
}
.google-badge .fab.fa-google { color: #4285F4; font-size: 0.95rem; }
.gb-label { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.gb-stars { color: #F4B400; font-size: 0.85rem; }
.gb-score { font-size: 0.85rem; font-weight: 700; color: var(--fg); }

/* ============================================================
   PACKAGES (simplified — filled by config-loader #packages-grid)
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.pkg-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pkg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pkg-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.pkg-price { font-size: 1.8rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; margin-bottom: 4px; }
.pkg-original { font-size: 0.86rem; color: var(--dim); text-decoration: line-through; margin-bottom: 14px; }
.pkg-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* Hero package section (kept for config compat) */
.hero-package { display: none; }

/* ============================================================
   PROMO / VACATION BANNER (filled by config-loader: #vp-options)
   ============================================================ */
.vacation-promo {
  padding: 72px 28px;
  background: var(--bg-surface);
  text-align: center;
}
.vp-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}
.vp-option {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 40px;
  padding: 11px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.vp-sub { font-size: 0.98rem; color: var(--muted); margin-bottom: 8px; }
.vp-fine { font-size: 0.8rem; color: var(--dim); margin-top: 6px; }

/* ============================================================
   FINANCING (filled by config-loader: #finance-grid)
   ============================================================ */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.finance-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.finance-card i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.finance-card-name { font-size: 0.92rem; font-weight: 600; color: var(--fg); display: block; margin-bottom: 3px; }
.finance-card-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; display: block; }
.finance-apply-btn {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.finance-apply-btn:hover { border-bottom-color: var(--gold); color: var(--gold-dark); }

.layaway-bar {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: left;
}
.layaway-bar h4 { font-family: 'DM Sans', sans-serif; font-size: 0.98rem; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.layaway-bar p { font-size: 0.86rem; color: var(--muted); }

/* ============================================================
   STORE INFO + MAP
   ============================================================ */
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.info-block {
  padding: 18px 0;
  border-bottom: 1px solid var(--bg-surface);
}
.info-block:last-of-type { border-bottom: none; }
.ib-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  display: block;
}
.ib-value {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}
.ib-value a { color: var(--fg); font-weight: 500; transition: color var(--transition); }
.ib-value a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 5px 0; font-size: 0.88rem; color: var(--muted); }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--fg); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.07);
  height: 420px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

.lang-note { font-size: 0.84rem; color: var(--dim); margin-top: 18px; font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111111;
  color: rgba(255,255,255,0.6);
  padding: 72px 28px 32px;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about p {
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-top: 18px;
  max-width: 300px;
}
/* Override logo colors in footer */
.footer .logo .lname { color: #fff; }
.footer .logo .lsub { color: rgba(255,255,255,0.45); }
.footer .logo-mark { background: var(--gold); }

.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: #fff; }

.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p { font-size: 0.86rem; line-height: 2; color: rgba(255,255,255,0.5); }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-langs { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.footer-lang-tag {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 20px;
}

.footer-bottom {
  max-width: 1120px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   FLOATING CALL BUTTON (mobile)
   ============================================================ */
.float-call {
  display: none;
  position: fixed;
  bottom: 22px;
  right: 18px;
  z-index: 999;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 13px 22px;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(200,168,75,0.45);
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.04em;
  font-family: 'DM Sans', sans-serif;
}
.float-call:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(200,168,75,0.55); }

/* ============================================================
   SKIP LINK (accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--gold);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-size: 0.88rem;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 60px 28px 48px;
    max-width: 100%;
    order: 1;
  }
  .hero-visual {
    min-height: 320px;
    order: 2;
    padding: 40px 28px;
  }
  .hero h1 { font-size: clamp(2.6rem, 8vw, 3.6rem); }
  .hero-visual::before, .hero-visual::after { display: none; }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .trust-item {
    padding: 18px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .trust-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom: none; }

  .deals-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .store-grid { grid-template-columns: 1fr; gap: 48px; }
  .map-container { height: 320px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  /* Mobile nav: full-screen overlay */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: var(--bg-void);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 28px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    font-size: 1.05rem;
    padding: 14px 16px;
    color: var(--fg);
    border-radius: 8px;
  }
  .nav-call {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }
  .nav-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--fg);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: color var(--transition);
  }
  .nav-close:hover { color: var(--gold); }

  .menu-toggle { display: flex; }

  .deals-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn { text-align: center; justify-content: center; }

  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item {
    border-right: none;
    border-left: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 20px;
  }
  .trust-item:last-child { border-bottom: none; }

  .featured-review { padding: 32px 24px; }
  .featured-review::before { font-size: 5rem; left: 20px; }
  .review-text { font-size: 1rem; }

  .section, .section-alt, .section-accent,
  .section-light, .section-dark { padding: 64px 20px; }

  .float-call { display: flex; }
}

@media (min-width: 641px) {
  .menu-toggle { display: none; }
}

/* ============================================================
   DYNAMIC ANIMATIONS — loaded by js/animations.js
   ============================================================ */

/* ── Hero entrance: triggered by body.hero-loaded ─────────── */

/* Eyebrow slides up from below */
.hero-eyebrow {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease 0.05s, transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94) 0.05s;
}
body.hero-loaded .hero-eyebrow { opacity: 1; transform: translateY(0); }

/* Masked headline reveal — each line clips upward */
.h1-line {
  display: block;
  overflow: hidden;
  /* Slight extra height so descenders aren't cut */
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.h1-reveal {
  display: block;
  transform: translateY(108%);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.18s,
    opacity   0.01s linear 0.18s;
}
body.hero-loaded .h1-reveal { transform: translateY(0); opacity: 1; }
.h1-line:nth-child(2) .h1-reveal {
  transition-delay: 0.34s;
}

/* Price slides up */
.hero-price {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.62s, transform 0.5s ease 0.62s;
}
body.hero-loaded .hero-price { opacity: 1; transform: translateY(0); }

/* Subtitle */
.hero-sub {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.76s, transform 0.5s ease 0.76s;
}
body.hero-loaded .hero-sub { opacity: 1; transform: translateY(0); }

/* Include items cascade */
.hero-includes {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease 0.9s, transform 0.45s ease 0.9s;
}
body.hero-loaded .hero-includes { opacity: 1; transform: translateY(0); }

/* CTA buttons */
.hero-ctas {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease 1.05s, transform 0.45s ease 1.05s;
}
body.hero-loaded .hero-ctas { opacity: 1; transform: translateY(0); }

/* Hero visual panel slides in from right */
.hero-visual {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.8s ease 0.3s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  will-change: transform;
}
body.hero-loaded .hero-visual { opacity: 1; transform: translateX(0); }
/* Parallax overrides transform — set inline by JS, unset opacity override */
body.hero-loaded .hero-visual[style*="translateY"] { opacity: 1; }

/* ── Multi-direction scroll reveals ─────────────────────── */
.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.65s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.65s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.84) translateY(20px);
  transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

.reveal-tilt {
  opacity: 0;
  transform: translateY(44px) rotate(3deg);
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.reveal-tilt.visible { opacity: 1; transform: translateY(0) rotate(0); }

.reveal-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
  transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s ease;
}
.reveal-blur.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* ── Trust bar stagger (JS adds .trust-visible) ──────────── */
.trust-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.trust-item.trust-visible { opacity: 1; transform: translateY(0); }

/* ── Clip-path diagonal divider on trust bar ─────────────── */
.trust-bar {
  position: relative;
  clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%);
  padding-top: 60px;
  margin-top: -28px;
  z-index: 2;
}

/* Reverse diagonal under trust bar into products section */
.trust-bar + .section::before,
.trust-bar + section::before {
  display: none; /* handled by clip-path on trust bar itself */
}

/* ── Section title wipe effect (.title-wipe added by JS) ──── */
.title-wipe {
  position: relative;
  display: inline-block;
}
.title-wipe::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}
.title-wipe.visible::after { width: 100%; }
/* Make section-title work with reveal */
.section-title.reveal.visible.title-wipe::after,
.section-title.reveal-left.visible.title-wipe::after { width: 60px; }

/* ── Floating badge animation ─────────────────────────────── */
@keyframes float-badge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.hero-badge {
  animation: float-badge 3.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

/* ── Announcement bar entrance ───────────────────────────── */
@keyframes bar-slide-down {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
.announcement-bar {
  animation: bar-slide-down 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Header fade in on load ──────────────────────────────── */
@keyframes header-fade {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.header {
  animation: header-fade 0.5s ease 0.08s both;
}

/* ── Deal card — override hover for magnetic JS effect ───── */
.deal-card {
  will-change: transform;
  /* Transition removed in hover — JS takes over for 3D tilt */
}
.deal-card:hover {
  /* JS handles transform — just add subtle glow */
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* ── Why card alternating side reveals (3-col) ───────────── */
.why-grid .why-card:nth-child(3n+1) { transition-delay: 0.0s; }
.why-grid .why-card:nth-child(3n+2) { transition-delay: 0.12s; }
.why-grid .why-card:nth-child(3n+3) { transition-delay: 0.24s; }

/* ── Image zoom on deal card hover ──────────────────────── */
.deal-card:hover .deal-img img {
  transform: scale(1.06);
}

/* ── Gold shimmer sweep on section labels ────────────────── */
@keyframes label-shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.section-label {
  background: linear-gradient(90deg, var(--gold) 20%, #fff8d0 50%, var(--gold) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: label-shine 3s linear infinite;
}

/* ── Counter number styling ──────────────────────────────── */
.trust-stat {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.trust-stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ── Promo card entrance in hero visual ─────────────────── */
@keyframes card-float-in {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.vacation-card {
  animation: card-float-in 0.7s cubic-bezier(0.34, 1.2, 0.64, 1) 0.6s both;
}
body.hero-loaded .vacation-card { animation-play-state: running; }

/* ── Store grid horizontal entrance ─────────────────────── */
.store-grid > .reveal-left,
.store-grid > .reveal-right {
  transition-duration: 0.75s;
}

/* ── Section background texture (subtle) ─────────────────── */
.section-alt {
  position: relative;
}
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(200,168,75,0.04) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(200,168,75,0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Deal card stagger (when loaded by JS) ───────────────── */
.deal-card.reveal-tilt.reveal-d1 { transition-delay: 0s; }
.deal-card.reveal-tilt.reveal-d2 { transition-delay: 0.1s; }
.deal-card.reveal-tilt.reveal-d3 { transition-delay: 0.2s; }
.deal-card.reveal-left.reveal-d1 { transition-delay: 0s; }
.deal-card.reveal-left.reveal-d2 { transition-delay: 0.1s; }
.deal-card.reveal-right.reveal-d1 { transition-delay: 0s; }
.deal-card.reveal-right.reveal-d2 { transition-delay: 0.1s; }

/* ── Responsive: disable parallax shifts on mobile ────────── */
@media (max-width: 960px) {
  .hero-visual {
    transform: none !important;
    opacity: 0;
    transition: opacity 0.6s ease 0.4s !important;
  }
  body.hero-loaded .hero-visual { opacity: 1; }
}

/* ── Reduce motion for accessibility ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .h1-reveal,
  .hero-eyebrow, .hero-price, .hero-sub,
  .hero-includes, .hero-ctas, .hero-visual,
  .reveal, .reveal-left, .reveal-right,
  .reveal-scale, .reveal-tilt, .reveal-blur,
  .trust-item, .vacation-card, .hero-badge {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   PACKAGE PREVIEW CARD (hero right panel)
   ============================================================ */
.pkg-preview-card {
  background: var(--bg-void);
  border: 1px solid var(--bg-raised);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ppc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 0.95rem;
  font-weight: 700;
}
.ppc-header i { font-size: 1rem; }

.ppc-tap-hint {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.75;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}

.ppc-tiers {
  display: flex;
  flex-direction: column;
}

/* Each tier is clickable */
.ppc-tier {
  padding: 14px 20px;
  border-bottom: 1px solid var(--bg-surface);
  cursor: pointer;
  transition: background var(--transition);
  user-select: none;
}
.ppc-tier:last-child { border-bottom: none; }
.ppc-tier:hover { background: var(--bg-deep); }

.ppc-tier--featured {
  background: var(--bg-deep);
  border-left: 3px solid var(--gold);
  padding-left: 17px;
}
.ppc-tier--featured:hover { background: var(--bg-surface); }

/* Top row: info on left, price + chevron on right */
.ppc-tier-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ppc-tier-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.ppc-tier-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ppc-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.ppc-name {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
}

.ppc-desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

.ppc-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* Chevron rotates on open */
.ppc-chevron {
  font-size: 0.72rem;
  color: var(--dim);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}
.ppc-tier.open .ppc-chevron { transform: rotate(180deg); color: var(--gold); }
.ppc-tier:hover .ppc-chevron { color: var(--gold); }

/* Accordion expand panel */
.ppc-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease,
              opacity 0.3s ease;
  padding-top: 0;
  opacity: 0;
}
.ppc-tier.open .ppc-expand {
  max-height: 220px;
  padding-top: 10px;
  opacity: 1;
}
.ppc-expand p {
  font-size: 0.76rem;
  line-height: 1.65;
  color: var(--muted);
  border-top: 1px solid var(--bg-raised);
  padding-top: 10px;
}

.ppc-footer {
  padding: 11px 20px;
  background: var(--bg-surface);
  font-size: 0.74rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ppc-footer i { flex-shrink: 0; }

/* In-stock note under hero sub */
.hero-stock-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   FREE VACATION SECTION
   ============================================================ */
.vacation-section {
  background: var(--fg);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal texture */
.vacation-section::before {
  content: '✈';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-20deg);
  font-size: clamp(160px, 22vw, 280px);
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
}

.vacation-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vac-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.vac-headline {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.vac-headline em {
  font-style: italic;
  color: var(--gold);
}

.vac-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  max-width: 420px;
}

.vac-fine {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* Destination pills (populated by config-loader vp-options) */
#vp-options .vp-option {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  color: #fff;
}
#vp-options .vp-option .vpo-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
#vp-options .vp-option p {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.vac-destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.vac-qualifier {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.vac-qualifier i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.vac-qualifier strong { color: #fff; }

/* Dark theme overrides for vacation section */
body.theme-dark .vacation-section { background: var(--bg-raised); }
body.theme-dark .pkg-preview-card { background: var(--bg-surface); border-color: rgba(255,255,255,0.07); }
body.theme-dark .ppc-tier { border-bottom-color: rgba(255,255,255,0.07); }
body.theme-dark .ppc-tier--featured { background: var(--bg-raised); }
body.theme-dark .ppc-footer { background: var(--bg-raised); }

/* Mobile */
@media (max-width: 768px) {
  .vacation-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .vac-destinations {
    grid-template-columns: repeat(3, 1fr);
  }
  .pkg-preview-card { margin-top: 32px; }
}
