/* ============================================================
   THE ZEN SPA & LOUNGE — Custom CSS (no framework)
   Palette: ivory #F9F6F0 · charcoal #1a1a1a · gold #B8960C
   Fonts: Cormorant Garamond (serif) · DM Sans (sans)
   ============================================================ */

/* ---------- 0. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; font-size: 16px; }
body { overflow-x: clip; font-family: var(--font-sans); color: var(--fg); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- 1. Design tokens ---------- */
:root {
  /* Backgrounds */
  --bg: #F8F4EE;
  --bg-dark: #0A0806;
  --bg-card: #171310;
  --bg-section: #EDE8DF;

  /* Foreground */
  --fg: #1C1714;
  --fg-muted: #6b5e50;

  /* Gold system — warm amber, not olive */
  --gold: #C9952A;
  --gold-light: #E8B84B;
  --gold-dark: #9E7018;
  --gold-dim: rgba(201,149,42,0.12);
  --gold-glow: rgba(201,149,42,0.22);
  --gold-gradient: linear-gradient(135deg, #A87020 0%, #E8B84B 40%, #C9952A 70%, #A87020 100%);

  /* WhatsApp */
  --wa-green: #25D366;
  --wa-green-dark: #1EBE5D;

  /* Borders */
  --border: rgba(0,0,0,0.09);
  --border-light: rgba(255,255,255,0.07);
  --border-gold: rgba(201,149,42,0.2);

  /* Base */
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
  --radius: 0.5rem;
  --radius-full: 9999px;
  --transition: 0.3s ease;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-gold: 0 4px 28px rgba(201,149,42,0.18);
  --container: 1152px;
}

/* ---------- 2. Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); line-height: 1.15; font-weight: 400; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 7vw, 6rem); }
h2 { font-size: clamp(1.9rem, 5vw, 4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
.text-sm  { font-size: 0.875rem; }
.text-xs  { font-size: 0.75rem; }
.text-xl  { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.uppercase { text-transform: uppercase; letter-spacing: 0.15em; }
.italic { font-style: italic; }
.font-serif { font-family: var(--font-serif); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ---------- 3. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container--wide { max-width: 1280px; }
.section { padding: clamp(3.5rem, 7vw, 5rem) 0; scroll-margin-top: 5rem; }
.section--dark { background: var(--bg-dark); color: var(--white); }
.section--alt { background: var(--bg-section); }
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem; font-weight: 600; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}
.btn--pill { border-radius: var(--radius-full); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn--square { border-radius: 0; }
.btn--wa { background: var(--wa-green); color: var(--white); }
.btn--wa:hover { background: var(--wa-green-dark); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-light); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid var(--white); }
.btn--outline:hover { background: var(--white); color: var(--fg); }
.btn--outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: var(--white); }
.btn--ghost { background: transparent; color: var(--fg); }
.btn--ghost:hover { color: var(--gold); }
.btn--full { width: 100%; }
.btn--dark { background: var(--fg); color: var(--white); }
.btn--dark:hover { background: #333; }
.btn--phone { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.12); }
.btn--phone:hover { background: rgba(255,255,255,0.15); }

/* ---------- 5. Badge / Chip ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.9rem; border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
}
.badge--gold { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(184,150,12,0.3); }
.badge--green { background: rgba(37,211,102,0.15); color: var(--wa-green); border: 1px solid rgba(37,211,102,0.3); }
.badge--open { background: rgba(37,211,102,0.15); color: #22c55e; border: 1px solid rgba(37,211,102,0.2); }
.chip {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.65);
}
.chip::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ---------- 6. Announcement Bar ---------- */
.ann-bar {
  background: var(--bg-dark); color: rgba(255,255,255,0.8);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.55rem 1rem; position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.ann-bar a { color: var(--gold); transition: color var(--transition); }
.ann-bar a:hover { color: var(--gold-light); }
.ann-bar__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.ann-bar__phone { display: none; }
@media (min-width: 640px) { .ann-bar__phone { display: inline; color: rgba(255,255,255,0.7); } }

/* ---------- 7. Navbar ---------- */
.navbar {
  position: sticky; top: 28px; z-index: 90; width: 100%;
  background: rgba(13,13,11,0.55); backdrop-filter: blur(8px);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,11,0.95); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 72px; max-width: var(--container); margin: 0 auto;
}
.navbar__logo {
  font-family: var(--font-serif); font-size: 1.4rem; color: var(--white);
  font-weight: 400; letter-spacing: 0.04em; flex-shrink: 0;
}
.navbar__logo span { color: var(--gold); }
.navbar__links { display: none; align-items: center; gap: 2rem; }
.navbar__links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); transition: color var(--transition);
}
.navbar__links a:hover { color: var(--white); }
.navbar__actions { display: none; align-items: center; gap: 1rem; }
.navbar__phone { font-size: 0.8rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.4rem; }
.navbar__reserve { padding: 0.55rem 1.5rem; border-radius: var(--radius-full); font-size: 0.75rem; }
.navbar__hamburger {
  display: flex; flex-direction: column; gap: 5px; padding: 0.5rem;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
  color: var(--white);
}
.navbar__hamburger span {
  display: block; width: 22px; height: 1.5px; background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__hamburger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.is-active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1024px) {
  .navbar__links { display: flex; }
  .navbar__actions { display: flex; }
  .navbar__hamburger { display: none; }
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column;
  background: var(--bg-dark);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--border-light);
}
.mobile-nav__close {
  min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.5rem;
}
.mobile-nav__links { flex: 1; overflow-y: auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav__links a {
  display: flex; align-items: center; min-height: 52px; padding: 0 0.5rem;
  font-size: 1.25rem; font-family: var(--font-serif); color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav__links a:hover { color: var(--gold); padding-left: 1rem; }
.mobile-nav__foot { padding: 1.5rem; border-top: 1px solid var(--border-light); display: flex; flex-direction: column; gap: 0.75rem; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative; min-height: 100dvh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg-dark);
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%); }
.hero__content {
  position: relative; z-index: 10; text-align: center;
  padding: 2rem 1.25rem; max-width: 900px; margin: 0 auto;
}
.hero__badges { display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__title { color: var(--white); margin-bottom: 1.5rem; line-height: 1.1; }
.hero__eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(255,255,255,0.65); margin-bottom: 1.1rem; }
.hero__subtitle { font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero__ctas { display: flex; flex-direction: column; gap: 0.75rem; max-width: 400px; margin: 0 auto; }
.hero__directions { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.hero__directions a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.hero__directions a:hover { color: var(--gold); }
.hero__scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 20;
  min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ---------- 9. Instant Action Block ---------- */
.action-block { background: var(--bg-dark); padding: 1.5rem 0; border-bottom: 1px solid var(--border-light); }
.action-block__label { text-align: center; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 600; margin-bottom: 1.25rem; }
.action-block__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; max-width: 640px; margin: 0 auto; }
.action-block__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.25rem; padding: 0.875rem 0.5rem; border-radius: var(--radius);
  transition: background var(--transition);
}
.action-block__btn span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.action-block__btn svg, .action-block__btn .icon { width: 1.25rem; height: 1.25rem; }
.action-block__btn--wa { background: var(--wa-green); color: var(--white); }
.action-block__btn--wa:hover { background: var(--wa-green-dark); }
.action-block__btn--call { background: rgba(255,255,255,0.08); color: var(--white); }
.action-block__btn--call:hover { background: rgba(255,255,255,0.15); }
.action-block__btn--map { background: rgba(255,255,255,0.08); color: var(--white); }
.action-block__btn--map:hover { background: rgba(255,255,255,0.15); }

/* ---------- 10. Trust Strip ---------- */
.trust-strip { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.trust-strip__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 640px) { .trust-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; padding: 0.5rem; min-width: 0; }
.trust-item__number { font-family: var(--font-serif); font-size: clamp(1.4rem, 4vw, 2rem); color: var(--gold); line-height: 1; margin-bottom: 0.2rem; }
.trust-item__label { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); }

/* ---------- 11. Section header ---------- */
.section-eyebrow { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); display: block; margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-serif); margin-bottom: 1.25rem; }
.section-desc { color: var(--fg-muted); font-size: 1.05rem; line-height: 1.7; max-width: 580px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ---------- 12. Flash Deals ---------- */
.deals-section {
  position: relative; padding: clamp(4rem, 8vw, 6rem) 0; overflow: hidden;
  background: linear-gradient(135deg, #1a1208 0%, #0d0d0b 50%, #1a1208 100%);
}
.deals-section .section-eyebrow { color: var(--gold); }
.deals-section .section-title { color: var(--white); }
.deals-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .deals-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .deals-grid { grid-template-columns: repeat(4, 1fr); } }
.deal-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(184,150,12,0.15);
  border-radius: var(--radius); padding: 1.5rem; position: relative; overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.deal-card:hover { border-color: rgba(184,150,12,0.4); background: rgba(255,255,255,0.06); }
.deal-card__badge { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; display: block; }
.deal-card__title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--white); margin-bottom: 0.4rem; }
.deal-card__desc { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; line-height: 1.5; }
.deal-card__cta { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--wa-green); display: flex; align-items: center; gap: 0.35rem; }
.deal-card__cta:hover { color: var(--wa-green-dark); }
.deal-card__glow { position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(184,150,12,0.08), transparent 60%); pointer-events: none; }

/* ---------- 13. VIP Offer ---------- */
.vip-section { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--bg); }
.vip-card {
  border: 1px solid var(--gold); padding: 3rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(184,150,12,0.04) 0%, transparent 60%);
  max-width: 900px; margin: 0 auto; text-align: center;
}
.vip-card__title { font-family: var(--font-serif); font-size: clamp(1.6rem, 4vw, 3rem); margin-bottom: 1rem; }
.vip-card__offer { font-family: var(--font-serif); font-size: clamp(1.3rem, 3vw, 2rem); color: var(--gold); font-style: italic; margin-bottom: 1.5rem; }
.vip-card__perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.vip-perk { font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 0.35rem; color: var(--fg-muted); }
.vip-perk::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ---------- 14. Treatments ---------- */
.treatments-section { padding: clamp(3.5rem, 7vw, 5rem) 0; background: var(--bg-dark); }
.treatments-section .section-eyebrow { color: var(--gold); }
.treatments-section .section-title { color: var(--white); }
.treatments-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .treatments-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .treatments-grid { grid-template-columns: repeat(3, 1fr); } }
.treatment-card {
  background: var(--bg-card); border-radius: 1rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.treatment-card:hover { border-color: rgba(184,150,12,0.3); box-shadow: 0 8px 32px rgba(184,150,12,0.05); }
.treatment-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; flex-shrink: 0; }
.treatment-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.treatment-card:hover .treatment-card__img img { transform: scale(1.05); }
.treatment-card__img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%, rgba(0,0,0,0.2) 100%); pointer-events: none; }
.treatment-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.6rem; border-radius: 0.3rem; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); }
.treatment-card__duration { position: absolute; bottom: 0.75rem; left: 0.75rem; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); padding: 0.25rem 0.6rem; border-radius: var(--radius-full); font-size: 0.7rem; color: var(--white); font-weight: 500; display: flex; align-items: center; gap: 0.3rem; }
.treatment-card__wa {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  background: rgba(37,211,102,0.9); color: var(--white); font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 0.3rem 0.7rem; border-radius: var(--radius-full);
  transition: background var(--transition);
}
.treatment-card__wa:hover { background: var(--wa-green); }
.treatment-card__body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.treatment-card__name { font-family: var(--font-serif); font-size: 1.15rem; color: var(--white); margin-bottom: 0.5rem; }
.treatment-card__desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.875rem; line-height: 1.6; }
.treatment-card__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.treatment-card__foot { margin-top: auto; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06); }
.treatment-card__actions { display: flex; gap: 0.5rem; }
.tc-action { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; padding: 0.55rem 0.5rem; min-height: 40px; border-radius: var(--radius-full); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.75); transition: background 0.2s, color 0.2s, border-color 0.2s; }
.tc-action--wa { background: #1faa53; border-color: #1faa53; color: #fff; }
.tc-action--wa:hover { background: #23c05f; border-color: #23c05f; color: #fff; }
.tc-action--call:hover { border-color: var(--gold); color: var(--gold); }
.tc-action--map:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- 15. Benefits ---------- */
.benefits-section { padding: clamp(3.5rem, 7vw, 5rem) 0; background: var(--bg-section); }
.benefits-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-item { text-align: center; padding: 2rem 1rem; }
.benefit-item__icon { font-size: 1.75rem; margin-bottom: 0.875rem; }
.benefit-item__title { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 0.5rem; }
.benefit-item__desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

/* ---------- 16. Signature ---------- */
.signature-section { padding: clamp(3.5rem, 7vw, 5rem) 0; background: var(--bg-section); }
.signature-layout { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .signature-layout { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; } }
.signature-img { position: relative; height: 50vh; overflow: hidden; }
@media (min-width: 1024px) { .signature-img { position: sticky; top: 8rem; height: 80vh; } }
.signature-img img { width: 100%; height: 100%; object-fit: cover; }
.signature-list { display: flex; flex-direction: column; }
.signature-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.signature-item:first-child { border-top: 1px solid var(--border); }
.signature-item__num { font-family: var(--font-serif); font-size: 0.75rem; color: var(--gold); margin-bottom: 0.35rem; display: block; }
.signature-item__name { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.4rem; }
.signature-item__desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.signature-item__wa { font-size: 0.75rem; font-weight: 600; color: var(--wa-green); display: flex; align-items: center; gap: 0.35rem; margin-top: 0.75rem; }

/* ---------- 17. Why Us ---------- */
.whyus-section { padding: clamp(3.5rem, 7vw, 5rem) 0; background: var(--bg); }
.whyus-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .whyus-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .whyus-grid { grid-template-columns: repeat(3, 1fr); } }
.whyus-card { padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); transition: border-color var(--transition), box-shadow var(--transition); }
.whyus-card:hover { border-color: rgba(184,150,12,0.3); box-shadow: var(--shadow-md); }
.whyus-card__icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: var(--gold-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.1rem; }
.whyus-card__title { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.5rem; }
.whyus-card__desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.65; }

/* ---------- 18. CTA Bar ---------- */
.cta-bar { background: var(--bg-dark); padding: 3rem 0; text-align: center; }
.cta-bar .section-title { color: var(--white); margin-bottom: 0.5rem; }
.cta-bar p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1rem; }
.cta-bar__btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ---------- 19. Facilities ---------- */
.facilities-section { padding: clamp(3.5rem, 7vw, 5rem) 0; background: var(--bg); }
.facilities-layout { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 1024px) { .facilities-layout { grid-template-columns: 2fr 1fr; } }
.facilities-main { position: relative; overflow: hidden; }
.facilities-main-img { position: relative; overflow: hidden; }
.facilities-main-img img { width: 100%; height: 100%; object-fit: cover; min-height: 350px; transition: transform 0.7s ease; }
.facilities-main-img:hover img { transform: scale(1.03); }
.facilities-main-label { margin-top: 0.75rem; font-family: var(--font-serif); font-size: 0.9rem; }
.facilities-side { display: flex; flex-direction: column; gap: 1.5rem; }
.facilities-side-item { position: relative; overflow: hidden; }
.facilities-side-img { aspect-ratio: 1; overflow: hidden; }
.facilities-side-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.facilities-side-item:hover .facilities-side-img img { transform: scale(1.05); }
.facilities-side-label { margin-top: 0.5rem; font-family: var(--font-serif); font-size: 0.85rem; }
/* Reception real-photo row */
.facilities-reception { border-top: 1px solid var(--border); padding-top: 2.5rem; }
.facilities-reception-header { text-align: center; margin-bottom: 1.75rem; }
.facilities-reception-eyebrow { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.facilities-reception-sub { color: var(--fg-muted); font-size: 0.95rem; max-width: 480px; margin: 0 auto; }
.facilities-reception-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .facilities-reception-grid { grid-template-columns: 1fr; } }
.facilities-reception-item { overflow: hidden; }
.facilities-reception-img { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.facilities-reception-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s ease; }
.facilities-reception-item:hover .facilities-reception-img img { transform: scale(1.04); }

/* ---------- 20. Amenities ---------- */
.amenities-section { padding: clamp(3.5rem, 7vw, 5rem) 0; background: var(--bg-dark); }
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px)  { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
.amenity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.amenity-card:hover {
  border-color: rgba(184,150,12,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.amenity-card__head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}
.amenity-card__icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.amenity-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0;
  line-height: 1.25;
}
.amenity-list { display: flex; flex-direction: column; gap: 0.55rem; }
.amenity-list__item {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}
.amenity-list__check {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ---------- 21. Couples ---------- */
.couples-section { display: flex; flex-direction: column; min-height: 70vh; }
@media (min-width: 1024px) { .couples-section { flex-direction: row; } }
.couples-img { position: relative; height: 50vh; overflow: hidden; flex-shrink: 0; }
@media (min-width: 1024px) { .couples-img { width: 50%; height: auto; } }
.couples-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.couples-content {
  background: var(--bg-section); display: flex; align-items: center; justify-content: center;
  padding: 3rem 1.5rem;
}
@media (min-width: 640px) { .couples-content { padding: 4rem; } }
@media (min-width: 1024px) { .couples-content { width: 50%; padding: 6rem; } }
.couples-inner { max-width: 480px; width: 100%; }
.couples-checklist { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.couples-check { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }
.couples-check-icon { width: 1.25rem; height: 1.25rem; border-radius: 50%; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; font-size: 0.7rem; }

/* ---------- 21. Gallery ---------- */
.gallery-section { padding: clamp(3.5rem, 7vw, 5rem) 0; background: var(--bg); }
.gallery-filters {
  display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.5rem;
  justify-content: flex-start; margin-bottom: 3rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.gallery-filters::-webkit-scrollbar { display: none; }
.gallery-filter {
  flex: none; padding: 0.55rem 1rem; min-height: 44px; font-size: 0.7rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  border: 1px solid var(--border); color: var(--fg-muted); background: transparent;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.gallery-filter.is-active, .gallery-filter:hover { border-color: var(--gold); color: var(--gold); }
.gallery-filter.is-active { background: var(--gold); color: var(--white); }
@media (min-width: 640px) { .gallery-filters { justify-content: center; } }
.gallery-grid { columns: 1; gap: 1.5rem; }
@media (min-width: 640px) { .gallery-grid { columns: 2; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; } }
.gallery-item { break-inside: avoid; margin-bottom: 1.5rem; position: relative; overflow: hidden; cursor: zoom-in; border: 1px solid rgba(0,0,0,0.08); }
.gallery-item img { width: 100%; height: auto; object-fit: cover; transition: transform 0.7s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background var(--transition); display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-item__overlay { background: rgba(0,0,0,0.2); }
.gallery-item__label { opacity: 0; color: var(--white); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; background: rgba(0,0,0,0.4); padding: 0.4rem 1rem; backdrop-filter: blur(4px); transition: opacity var(--transition); }
.gallery-item:hover .gallery-item__label { opacity: 1; }
.gallery-item[style*="display:none"], .gallery-item.hidden { display: none !important; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 100%; max-height: 85vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem; color: var(--white); font-size: 1.5rem;
  min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); border-radius: 50%; transition: background var(--transition);
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--white); background: rgba(255,255,255,0.1); border-radius: 50%;
  transition: background var(--transition);
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.2); }

/* ---------- 22. Reviews ---------- */
.reviews-section { padding: clamp(3.5rem, 7vw, 5rem) 0; background: var(--bg-section); }
.reviews-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--white); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.review-card__stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.review-card__text { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.review-card__author { font-weight: 600; font-size: 0.85rem; color: var(--fg); }
.review-card__date { font-size: 0.7rem; color: var(--fg-muted); margin-top: 0.2rem; }
.reviews-summary { text-align: center; padding: 3rem 0 0; }
.reviews-rating { font-family: var(--font-serif); font-size: 3rem; color: var(--gold); display: block; }
.reviews-count { font-size: 0.8rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- 23. WA Strip ---------- */
.wa-strip { background: var(--wa-green); padding: 2rem 0; text-align: center; }
.wa-strip p { color: var(--white); font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.wa-strip a { background: var(--white); color: var(--wa-green); padding: 0.75rem 2rem; border-radius: var(--radius-full); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; transition: background var(--transition); }
.wa-strip a:hover { background: rgba(255,255,255,0.9); }

/* ---------- 24. Location ---------- */
.location-section { padding: clamp(3.5rem, 7vw, 5rem) 0; background: var(--bg); }
.location-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.location-map { aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--border); }
.location-map iframe { width: 100%; height: 100%; border: none; }
.location-info { display: flex; flex-direction: column; gap: 2rem; }
.location-detail { display: flex; gap: 1rem; align-items: flex-start; }
.location-detail__icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: var(--gold-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 1rem; }
.location-detail__title { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: 0.3rem; }
.location-detail__value { font-size: 0.95rem; color: var(--fg); line-height: 1.5; }

/* ---------- 25. Evening CTA ---------- */
.evening-section {
  background: linear-gradient(135deg, rgba(184,150,12,0.08) 0%, transparent 50%);
  border-top: 1px solid rgba(184,150,12,0.2); border-bottom: 1px solid rgba(184,150,12,0.2);
  padding: 3rem 0; text-align: center;
}
.evening-section h3 { font-family: var(--font-serif); font-size: clamp(1.3rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.evening-section p { color: var(--fg-muted); margin-bottom: 1.5rem; }

/* ---------- 26. How Booking Works ---------- */
.booking-how { padding: 4rem 0; background: var(--bg-section); }
.booking-how__steps { display: grid; gap: 2rem; }
@media (min-width: 640px) { .booking-how__steps { grid-template-columns: repeat(3, 1fr); } }
.how-step { text-align: center; padding: 1.5rem 1rem; }
.how-step__num { font-family: var(--font-serif); font-size: 3rem; color: var(--gold); opacity: 0.5; line-height: 1; margin-bottom: 0.75rem; }
.how-step__title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.4rem; }
.how-step__desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

/* ---------- 27. Booking Form ---------- */
/* ---------- 27. Booking Form ---------- */
.booking-form-section { padding: clamp(3.5rem, 7vw, 5rem) 0; background: var(--bg); }
.booking-form { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

/* Two-section cards */
.bf-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 2rem 1.25rem;
  margin-bottom: 1rem;
}
.bf-section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* Field base */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg-muted); margin-bottom: 0.45rem;
}
.form-required { color: var(--gold); }
.form-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--fg-muted); font-size: 0.75rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-sans); font-size: 0.95rem;
  color: var(--fg); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,149,42,0.13);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* Submit area */
.bf-submit-wrap { margin-top: 0.25rem; }
.bf-submit-btn {
  width: 100%; font-size: 1rem; padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.bf-policy {
  margin-top: 0.9rem; text-align: center;
  font-size: 0.75rem; color: var(--fg-muted); line-height: 1.55;
}

/* Error states */
.form-input.is-error, .form-select.is-error, .form-textarea.is-error {
  border-color: #e05252; box-shadow: 0 0 0 3px rgba(224,82,82,0.12);
}
.form-error {
  display: block; margin-top: 0.375rem; font-size: 0.78rem;
  color: #e05252; font-family: var(--font-sans);
}
/* Disabled submit state */
.booking-form [type="submit"]:disabled {
  opacity: 0.7; cursor: not-allowed; pointer-events: none;
}

/* ---------- 28. FAQ ---------- */
.faq-section { padding: clamp(3.5rem, 7vw, 5rem) 0; background: var(--bg-section); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; width: 100%; text-align: left; gap: 1rem;
  font-size: 1rem; font-weight: 500; color: var(--fg);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question.is-open { color: var(--gold); }
.faq-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding-bottom: 1.25rem; font-size: 0.9rem; color: var(--fg-muted); line-height: 1.75; }

/* ---------- 29. Final CTA ---------- */
.final-cta {
  position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg-dark);
}
.final-cta__bg { position: absolute; inset: 0; }
.final-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.final-cta__content { position: relative; z-index: 10; text-align: center; padding: 2rem 1.25rem; max-width: 800px; margin: 0 auto; }
.final-cta__content h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta__content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ---------- 30. Footer ---------- */
.footer { background: var(--bg-dark); color: var(--white); padding: 4rem 0 2rem; }
.footer__grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand-name { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 1rem; }
.footer__brand-name span { color: var(--gold); }
.footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
.footer__socials { display: flex; gap: 0.5rem; }
.footer__social { padding: 0.625rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); transition: border-color var(--transition), color var(--transition); min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.footer__social:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; line-height: 1.5; }
.footer__contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--white); }
.footer__ctas { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ---------- 31. Floating / Fixed elements ---------- */
/* Announcement bar compensation — already sticky, no offset needed */

/* Mobile CTA bar */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  display: flex; flex-direction: column;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
@media (min-width: 1024px) { .mobile-cta-bar { display: none; } }
.mobile-cta-bar__top {
  background: var(--gold); color: var(--bg-dark); padding: 0.5rem 1rem;
  text-align: center; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.mobile-cta-bar__top a { color: inherit; }
.mobile-cta-bar__btns { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-cta-bar__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  padding: 0.625rem; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  min-height: 52px;
}
.mobile-cta-bar__btn--wa { background: var(--wa-green); color: var(--white); }
.mobile-cta-bar__btn--dir { background: #1a1a2e; color: var(--white); }
.page-body { padding-bottom: 90px; }
@media (min-width: 1024px) { .page-body { padding-bottom: 0; } }

/* WhatsApp Side Widget */
.wa-side-widget {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 80;
  display: none; flex-direction: column; gap: 0;
}
@media (min-width: 1024px) { .wa-side-widget { display: flex; } }
.wa-side-btn {
  width: 48px; min-height: 52px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; transition: width var(--transition), background var(--transition);
  border-radius: 6px 0 0 6px; margin-bottom: 2px;
}
.wa-side-btn--phone { background: #1a1a2e; }
.wa-side-btn--wa { background: var(--wa-green); }
.wa-side-btn--dir { background: var(--gold); }
.wa-side-btn:hover { width: 56px; }
.wa-popup {
  position: fixed; right: 56px; bottom: 80px; z-index: 81; width: 280px;
  background: var(--white); border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 1.25rem; display: none;
}
.wa-popup.is-open { display: block; }
.wa-popup__head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.wa-popup__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--wa-green); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.wa-popup__name { font-weight: 600; font-size: 0.9rem; }
.wa-popup__status { font-size: 0.7rem; color: var(--wa-green); }
.wa-popup__msg { background: #f0f4f0; border-radius: 0 0.75rem 0.75rem 0.75rem; padding: 0.75rem 1rem; font-size: 0.85rem; color: var(--fg); line-height: 1.5; margin-bottom: 1rem; }
.wa-popup__btn { background: var(--wa-green); color: var(--white); border-radius: var(--radius-full); padding: 0.625rem 1.25rem; font-size: 0.8rem; font-weight: 700; width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.wa-popup__btn:hover { background: var(--wa-green-dark); }

/* Exit Offer */
.exit-offer {
  position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.65); padding: 1.25rem;
}
.exit-offer.is-open { display: flex; }
.exit-offer__card {
  background: var(--bg-dark); border: 1px solid rgba(184,150,12,0.3); border-radius: var(--radius);
  max-width: 500px; width: 100%; padding: 2.5rem; position: relative; text-align: center;
}
.exit-offer__close {
  position: absolute; top: 1rem; right: 1rem; color: rgba(255,255,255,0.5);
  min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; border-radius: 50%; transition: color var(--transition);
}
.exit-offer__close:hover { color: var(--white); }
.exit-offer__badge { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(184,150,12,0.15); color: var(--gold); border: 1px solid rgba(184,150,12,0.3); border-radius: var(--radius-full); padding: 0.35rem 0.9rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.exit-offer__title { font-family: var(--font-serif); font-size: clamp(1.6rem, 4vw, 2.5rem); color: var(--white); margin-bottom: 0.75rem; }
.exit-offer__desc { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
.exit-offer__perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.exit-offer__perk { font-size: 0.75rem; display: flex; align-items: center; gap: 0.3rem; color: rgba(255,255,255,0.7); }
.exit-offer__perk::before { content: '✓'; color: var(--gold); font-weight: 700; }
.exit-offer__btns { display: flex; flex-direction: column; gap: 0.75rem; }
.exit-offer__dismiss { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.75rem; background: none; border: none; cursor: pointer; }
.exit-offer__dismiss:hover { color: rgba(255,255,255,0.6); }

/* ---------- 32. Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(2rem); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- 33. Utilities ---------- */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--fg-muted); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-auto { margin-top: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.aspect-16-10 { aspect-ratio: 16/10; }
.aspect-sq { aspect-ratio: 1; }
.aspect-4-3 { aspect-ratio: 4/3; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ============================================================
   ENHANCEMENT LAYER — Warm Amber Luxury Upgrade
   ============================================================ */

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold-dark), var(--gold-light)); border-radius: 3px; }
* { scrollbar-width: thin; scrollbar-color: var(--gold) var(--bg-dark); }

/* Announcement bar — warm gradient */
.ann-bar {
  background: linear-gradient(90deg, #0A0806 0%, #1C1008 40%, #231408 60%, #0A0806 100%);
  border-bottom: 1px solid rgba(201,149,42,0.08);
}
.ann-bar__dot { background: var(--gold); opacity: 0.55; }
.ann-bar a { color: var(--gold-light); }

/* Navbar — warm scrolled state + link underline hover */
.navbar.scrolled {
  background: rgba(10,8,6,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,149,42,0.1), 0 4px 30px rgba(0,0,0,0.35);
}
.navbar__logo span { color: var(--gold-light); }
.navbar__links a { position: relative; }
.navbar__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-gradient);
  transition: width var(--transition);
}
.navbar__links a:hover::after { width: 100%; }
.navbar__links a:hover { color: var(--gold-light); }
.navbar__reserve { background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); }
.navbar__reserve:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); opacity: 0.9; }
.mobile-nav__links a:hover { color: var(--gold-light); }

/* Hero — warm amber overlay tones */
.hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(10,6,2,0.52) 0%,
    rgba(14,8,2,0.22) 40%,
    rgba(8,4,0,0.74) 100%
  );
}

/* Section eyebrow — decorative flanking lines */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold);
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  flex-shrink: 0;
}

/* Trust strip — gradient numbers */
.trust-item__number {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-strip { background: var(--bg-section); }

/* Flash Deals — warmer dark gradient */
.deals-section {
  background: linear-gradient(135deg, #1A0E04 0%, #0A0806 50%, #160A02 100%);
}
.deal-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.035) 0%, rgba(201,149,42,0.025) 100%);
  border-color: rgba(201,149,42,0.13);
}
.deal-card:hover {
  border-color: rgba(201,149,42,0.5);
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(201,149,42,0.04) 100%);
  box-shadow: 0 0 0 1px rgba(201,149,42,0.08), 0 12px 40px rgba(0,0,0,0.45);
}
.deal-card__glow {
  background: radial-gradient(circle at 70% 20%, rgba(201,149,42,0.10), transparent 65%);
}
.deal-card__cta { color: var(--gold-light); }
.deal-card__cta:hover { color: var(--gold); }

/* VIP section */
.vip-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(201,149,42,0.05) 0%, transparent 65%), var(--bg);
}
.vip-card {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(201,149,42,0.05) 0%, rgba(201,149,42,0.01) 50%, rgba(201,149,42,0.06) 100%);
  box-shadow: 0 0 80px rgba(201,149,42,0.06), inset 0 0 80px rgba(201,149,42,0.02);
}
.vip-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(201,149,42,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.vip-card__offer { color: var(--gold-light); }
.vip-perk::before { color: var(--gold-light); }

/* Treatment cards — warmer + richer hover */
.treatments-section {
  background: linear-gradient(180deg, #0D0A07 0%, #0A0806 100%);
}
.treatment-card {
  background: linear-gradient(160deg, #1E1812 0%, #161210 100%);
  border-color: rgba(255,255,255,0.05);
}
.treatment-card:hover {
  border-color: rgba(201,149,42,0.42);
  box-shadow: 0 12px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,149,42,0.08);
}
.treatment-card__link { color: var(--gold-light); }
.treatment-card__link:hover { color: var(--gold); }
.treatment-card__foot { border-top-color: rgba(255,255,255,0.05); }

/* Why Us — top accent line on hover */
.whyus-card { position: relative; overflow: hidden; }
.whyus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.whyus-card:hover::before { opacity: 1; }
.whyus-card:hover {
  border-color: rgba(201,149,42,0.25);
  box-shadow: 0 6px 28px rgba(0,0,0,0.08), var(--shadow-gold);
}
.whyus-card__icon {
  background: linear-gradient(135deg, rgba(201,149,42,0.14) 0%, rgba(201,149,42,0.07) 100%);
  border: 1px solid rgba(201,149,42,0.2);
}

/* CTA bars — warm dark gradient */
.cta-bar { background: linear-gradient(135deg, #160C04 0%, #0A0806 50%, #1C1008 100%); }

/* Facilities — reception row */
.facilities-reception { border-top-color: rgba(201,149,42,0.15); }
.facilities-reception-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

/* Amenity cards — warmer gradient + gold title gradient */
.amenities-section {
  background: linear-gradient(180deg, #0D0A07 0%, #0A0806 100%);
}
.amenity-card {
  background: linear-gradient(155deg, #1E1812 0%, #161210 100%);
  border-color: rgba(255,255,255,0.06);
}
.amenity-card:hover {
  border-color: rgba(201,149,42,0.42);
  box-shadow: 0 8px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,149,42,0.07);
}
.amenity-card__head { border-bottom-color: rgba(201,149,42,0.1); }
.amenity-card__title {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.amenity-list__check { color: var(--gold-light); }

/* Gallery — filter active as gradient pill */
.gallery-filter.is-active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #0A0806;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(201,149,42,0.3);
}
.gallery-filter:hover:not(.is-active) { border-color: var(--gold); color: var(--gold); }
.gallery-item { border-color: rgba(201,149,42,0.07); }
.gallery-item:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.14); }

/* Review cards — left gold accent */
.review-card {
  border-left: 3px solid var(--gold-dim);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.review-card__stars { color: var(--gold-light); }
.reviews-rating { color: var(--gold-light); }

/* Location icons */
.location-detail__icon {
  background: linear-gradient(135deg, rgba(201,149,42,0.14) 0%, rgba(201,149,42,0.06) 100%);
  border: 1px solid rgba(201,149,42,0.2);
}

/* Evening CTA section */
.evening-section {
  background: linear-gradient(135deg, rgba(201,149,42,0.07) 0%, transparent 60%);
  border-color: rgba(201,149,42,0.15);
}

/* How booking works — step numbers gradient */
.how-step__num {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1;
}

/* Form focus ring */
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,42,0.1);
}

/* Final CTA overlay — warmer */
.final-cta__overlay {
  background: linear-gradient(to bottom, rgba(10,6,2,0.65) 0%, rgba(8,4,0,0.80) 100%);
}

/* Footer — warm gradient */
.footer {
  background: linear-gradient(180deg, #0C0A07 0%, #080604 100%);
  border-top: 1px solid rgba(201,149,42,0.08);
}
.footer__brand-name span { color: var(--gold-light); }
.footer__social:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* Mobile CTA bar */
.mobile-cta-bar__top {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #0A0806;
}
.mobile-cta-bar__btn--dir { background: #1C1206; }

/* Side widget */
.wa-side-btn--dir {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* Exit offer card */
.exit-offer__card {
  background: linear-gradient(145deg, #1E1812 0%, #0A0806 100%);
  border-color: rgba(201,149,42,0.38);
  box-shadow: 0 0 60px rgba(201,149,42,0.08), 0 24px 60px rgba(0,0,0,0.5);
}
.exit-offer__badge { background: rgba(201,149,42,0.12); color: var(--gold-light); border-color: rgba(201,149,42,0.3); }
.exit-offer__perk::before { color: var(--gold-light); }

/* Signature section items */
.signature-item__num { color: var(--gold-light); }
.signature-item__wa { color: var(--gold-light); }

/* Couples checklist */
.couples-check-icon { border-color: var(--gold); color: var(--gold-light); }

/* Heading gradient accent on dark sections */
.treatments-section .section-title,
.amenities-section .section-title {
  background: linear-gradient(135deg, #fff 60%, rgba(232,184,75,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* WA strip — subtle warmth */
.wa-strip { background: linear-gradient(135deg, #1EAA52 0%, var(--wa-green) 50%, #1EAA52 100%); }

/* Chip enhancements */
.chip::before { color: var(--gold-light); }

/* ===== Booking Wizard ===== */
.bw-steps { display: flex; justify-content: center; gap: clamp(0.75rem, 3vw, 2rem); list-style: none; padding: 0; margin: 0 0 2.5rem; }
.bw-step { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; opacity: 0.45; transition: opacity 0.2s; }
.bw-step.is-active, .bw-step.is-done { opacity: 1; }
.bw-step__num { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 600; border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.bw-step.is-active .bw-step__num { background: var(--gold); color: #fff; }
.bw-step.is-done .bw-step__num { background: var(--gold-dim); }
.bw-step__label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); }
.bw-panel { display: none; }
.bw-panel.is-active { display: block; animation: bwFade 0.3s ease; }
@keyframes bwFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.bw-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.65rem; margin-bottom: 1.5rem; }
.bw-options--time { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
.bw-option { padding: 0.85rem 1rem; min-height: 48px; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.14); background: #fff; font-size: 0.85rem; font-weight: 500; color: var(--fg); cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s; text-align: center; }
.bw-option:hover { border-color: var(--gold); }
.bw-option.is-selected { border-color: var(--gold); background: var(--gold); color: #fff; font-weight: 600; }
.bw-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.bw-nav .bw-next, .bw-nav .bf-submit-btn { margin-left: auto; }
.bw-next:disabled { opacity: 0.45; cursor: not-allowed; }
.bw-back { background: none; border: none; cursor: pointer; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); padding: 0.75rem 0; }
.bw-back:hover { color: var(--gold); }
.bw-summary { margin: 0 0 1.5rem; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius); background: #fff; overflow: hidden; }
.bw-summary > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.25rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.bw-summary > div:last-child { border-bottom: none; }
.bw-summary dt { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); }
.bw-summary dd { margin: 0; font-weight: 600; font-size: 0.9rem; text-align: right; }

/* ===== VIP split card ===== */
.vip-card--split { display: grid; gap: 2.5rem; text-align: left; align-items: center; }
@media (min-width: 900px) { .vip-card--split { grid-template-columns: 1.6fr 1fr; } }
.vip-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: #1a1a1a; background: var(--gold); border-radius: var(--radius-full); padding: 0.45rem 1rem; margin-bottom: 1.5rem; }
.vip-card--split .vip-card__title { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1.25rem; }
.vip-card--split .vip-card__title em { font-style: normal; color: var(--gold); }
.vip-card__lead { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 560px; }
.vip-card__lead strong { color: var(--gold); font-weight: 600; }
.vip-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.vip-chip { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-full); padding: 0.5rem 0.9rem; background: rgba(255,255,255,0.04); }
.vip-card__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.vip-card__side { display: flex; flex-direction: column; gap: 1rem; }
.vip-stat { border: 1px solid rgba(184,150,12,0.35); border-radius: var(--radius); background: rgba(184,150,12,0.06); padding: 1.25rem 1.5rem; text-align: center; }
.vip-stat__label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
.vip-stat__value { font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.vip-stat__value--timer { font-family: 'Courier New', monospace; font-weight: 700; font-size: 1.6rem; color: #ffd75e; letter-spacing: 0.05em; }
.vip-stat__sub { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 0.5rem; }
.vip-fast { font-size: 0.78rem; font-weight: 600; color: #ffb347; text-align: center; }

/* VIP split card — force dark like reference */
.vip-card--split { background: linear-gradient(145deg, #14100a 0%, #1a1409 55%, #14100a 100%); border-color: rgba(201,149,42,0.55); border-radius: var(--radius); max-width: 1080px; }
.vip-card--split::before { background: radial-gradient(ellipse at 15% 0%, rgba(201,149,42,0.14) 0%, transparent 55%); }
.vip-card--split .vip-card__title { color: #fff; }

/* Trust strip — dark stat bar */
.trust-strip { background: #0d0a07; border-top: 1px solid rgba(201,149,42,0.25); border-bottom: 1px solid rgba(201,149,42,0.25); padding: 1.75rem 0; }
.trust-item { position: relative; }
@media (min-width: 640px) {
  .trust-item + .trust-item::before { content: ''; position: absolute; left: 0; top: 15%; bottom: 15%; width: 1px; background: rgba(255,255,255,0.12); }
}
.trust-item__number { font-family: var(--font-sans, inherit); font-weight: 800; color: #fff; }
.trust-item__star { font-size: 0.75em; }
.trust-item__number--offer { color: var(--gold); }
.trust-strip .trust-item__label { color: rgba(255,255,255,0.55); }
#trust { scroll-margin-top: 7rem; }

/* ===== Flash Deals ===== */
.flash-section { background: linear-gradient(180deg, #0b0906 0%, #100c07 100%); padding: clamp(4rem, 8vw, 6rem) 0 0; }
.flash-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold-light, #e3c26a); border: 1px solid rgba(201,149,42,0.5); border-radius: var(--radius-full); padding: 0.5rem 1.1rem; margin-bottom: 1.25rem; background: rgba(201,149,42,0.08); }
.flash-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 900px) { .flash-grid { grid-template-columns: repeat(3, 1fr); } }
.flash-card { border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); background: rgba(20,16,10,0.85); padding: 2rem 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.flash-card__icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.flash-card__title { font-family: var(--font-serif); font-size: 1.2rem; color: #fff; margin: 0; }
.flash-card__sub { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin: 0; }
.flash-card__tag { font-size: 0.68rem; font-weight: 600; color: var(--gold-light, #e3c26a); background: rgba(201,149,42,0.12); border-radius: var(--radius-full); padding: 0.35rem 0.85rem; margin-bottom: 0.5rem; }
.flash-card__call { display: block; width: 100%; text-align: center; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-full); padding: 0.7rem 1rem; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.flash-card__call:hover { border-color: var(--gold); color: var(--gold); }
.flash-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 2.5rem 0 3.5rem; }
.flash-comps { background: #0e1410; border-top: 1px solid rgba(255,255,255,0.06); padding: 2.5rem 0; }
.flash-comps__label { text-align: center; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.flash-comps__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 900px; margin: 0 auto; }
@media (min-width: 700px) { .flash-comps__grid { grid-template-columns: repeat(4, 1fr); } }
.flash-comp { border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); background: rgba(255,255,255,0.03); padding: 1.25rem 1rem; text-align: center; }
.flash-comp__icon { font-size: 1.3rem; margin-bottom: 0.5rem; }
.flash-comp__name { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.flash-comp__free { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #4cd97b; margin-top: 0.3rem; }
#flash-deals { scroll-margin-top: 7rem; }

/* ===== Today's Offer card ===== */
.today-offer { background: #0b0906 url('../images/spa-room-3.webp') center/cover no-repeat; background-blend-mode: multiply; padding: clamp(4rem, 8vw, 6rem) 0; position: relative; }
.today-offer::before { content: ''; position: absolute; inset: 0; background: rgba(8,6,4,0.72); }
.today-offer .container { position: relative; }
.today-offer__card { max-width: 640px; margin: 0 auto; text-align: center; background: rgba(12,10,7,0.82); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem); backdrop-filter: blur(6px); }
.today-offer__badge { display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-light, #e3c26a); border: 1px solid rgba(201,149,42,0.45); border-radius: var(--radius-full); background: rgba(201,149,42,0.1); padding: 0.45rem 1rem; margin-bottom: 1.25rem; }
.today-offer__title { font-family: var(--font-serif); font-size: clamp(1.8rem, 4.5vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.today-offer__desc { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 1.75rem; }
.today-offer__timer { border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); background: rgba(255,255,255,0.04); padding: 1.25rem; margin-bottom: 1.5rem; }
.today-offer__timer-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
.today-offer__timer-value { font-family: 'Courier New', monospace; font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.1rem); color: #ffd75e; letter-spacing: 0.05em; }
.today-offer__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 2rem; }
.today-chip { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.85); border: 1px solid rgba(201,149,42,0.35); border-radius: var(--radius-full); padding: 0.5rem 0.9rem; background: rgba(255,255,255,0.05); }
.today-offer__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
#today-offer { scroll-margin-top: 6rem; }

/* Footer areas-served SEO line */
.footer__areas { font-size: 0.75rem; line-height: 1.7; color: rgba(255,255,255,0.35); max-width: 900px; margin: 1.25rem auto; text-align: center; }

/* Guntur city strip in location section */
.city-strip { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 860px; margin: 2rem auto 0.5rem; }
@media (min-width: 640px) { .city-strip { grid-template-columns: 1fr 1fr; } }
.city-strip__item { margin: 0; }
.city-strip__item img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); display: block; }
.city-strip__item figcaption { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted, rgba(0,0,0,0.5)); margin-top: 0.5rem; text-align: center; }

/* WhatsApp popup close button */
.wa-popup__close { position: absolute; top: 0.5rem; right: 0.6rem; width: 28px; height: 28px; border: none; background: transparent; color: #999; font-size: 1.3rem; line-height: 1; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.wa-popup__close:hover { background: rgba(0,0,0,0.06); color: #333; }
