/* ============================================================
   DREAM PREMIUM SPA — DESIGN SYSTEM FOUNDATION
   Version: 1.0 | Prompt 1 — Foundation, Branding & Design System
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {

  /* --- Colors --- */
  --clr-bg-primary:     #F7F3EA;   /* Warm ivory — primary page background */
  --clr-bg-secondary:   #EEE7DA;   /* Champagne cream — section alternates */
  --clr-white:          #FFFFFF;   /* Pure white — cards, overlays */
  --clr-text-primary:   #29231E;   /* Deep espresso — primary body text */
  --clr-text-secondary: #71675D;   /* Warm taupe — secondary / captions */
  --clr-gold-champ:     #B99652;   /* Champagne gold — primary accent */
  --clr-gold-warm:      #C8A65D;   /* Warm gold — hover / decorative */
  --clr-gold-soft:      #E0C98F;   /* Soft gold — subtle fills / highlights */
  --clr-border:         #D9CEBD;   /* Warm border — dividers, outlines */
  --clr-deep:           #27231F;   /* Deep espresso — nav, footer bg */

  /* --- Gold gradient (used sparingly on accents) --- */
  --gradient-gold: linear-gradient(135deg, #B99652 0%, #C8A65D 50%, #E0C98F 100%);

  /* --- Typography — Families --- */
  --font-serif:   'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', 'Manrope', system-ui, -apple-system, sans-serif;

  /* --- Typography — Scale (fluid with clamp) --- */
  --text-eyebrow: clamp(0.625rem, 1.2vw, 0.75rem);   /* 10–12px */
  --text-xs:      clamp(0.75rem,  1.4vw, 0.8125rem);  /* 12–13px */
  --text-sm:      clamp(0.8125rem,1.5vw, 0.9375rem);  /* 13–15px */
  --text-base:    clamp(0.9375rem,1.6vw, 1.0625rem);  /* 15–17px */
  --text-lg:      clamp(1rem,     1.8vw, 1.1875rem);  /* 16–19px */
  --text-xl:      clamp(1.125rem, 2vw,   1.375rem);   /* 18–22px */
  --text-2xl:     clamp(1.375rem, 2.5vw, 1.75rem);    /* 22–28px */
  --text-3xl:     clamp(1.75rem,  3.5vw, 2.5rem);     /* 28–40px */
  --text-4xl:     clamp(2.25rem,  4.5vw, 3.25rem);    /* 36–52px */
  --text-5xl:     clamp(2.75rem,  5.5vw, 4.25rem);    /* 44–68px */
  --text-hero:    clamp(3rem,     7vw,   5.5rem);      /* 48–88px */

  /* --- Typography — Line Heights --- */
  --lh-tight:     1.15;
  --lh-heading:   1.2;
  --lh-snug:      1.35;
  --lh-base:      1.65;
  --lh-relaxed:   1.8;

  /* --- Typography — Letter Spacing --- */
  --ls-tight:     -0.02em;
  --ls-normal:     0;
  --ls-wide:       0.06em;
  --ls-wider:      0.10em;
  --ls-widest:     0.18em;

  /* --- Typography — Weight --- */
  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold:600;
  --fw-bold:    700;

  /* --- Spacing Scale --- */
  --space-1:    0.25rem;   /*  4px */
  --space-2:    0.5rem;    /*  8px */
  --space-3:    0.75rem;   /* 12px */
  --space-4:    1rem;      /* 16px */
  --space-5:    1.25rem;   /* 20px */
  --space-6:    1.5rem;    /* 24px */
  --space-7:    1.75rem;   /* 28px — was missing; used in several sections */
  --space-8:    2rem;      /* 32px */
  --space-10:   2.5rem;    /* 40px */
  --space-12:   3rem;      /* 48px */
  --space-16:   4rem;      /* 64px */
  --space-20:   5rem;      /* 80px */
  --space-24:   6rem;      /* 96px */
  --space-32:   8rem;      /* 128px */
  --space-40:   10rem;     /* 160px */

  /* --- Section Vertical Padding (responsive) --- */
  --section-py: clamp(3.5rem, 8vw, 7rem);
  --section-py-lg: clamp(5rem, 10vw, 10rem);

  /* --- Layout --- */
  --container-max:  1280px;
  --container-wide: 1440px;
  --container-px:   clamp(1.25rem, 5vw, 3rem);
  --grid-cols:      12;
  --grid-gap:       clamp(1rem, 2.5vw, 1.5rem);

  /* --- Borders --- */
  --border-width: 1px;
  --border-color: var(--clr-border);
  --border:       1px solid var(--clr-border);
  --border-gold:  1px solid var(--clr-gold-champ);
  --border-thin-gold: 0.5px solid rgba(185, 150, 82, 0.45);

  /* --- Border Radius --- */
  --radius-none:  0;
  --radius-sm:    2px;
  --radius-base:  4px;
  --radius-md:    6px;
  --radius-lg:    10px;
  --radius-full:  9999px;

  /* --- Shadows (restrained, premium) --- */
  --shadow-xs:  0 1px 3px rgba(41, 35, 30, 0.06);
  --shadow-sm:  0 2px 8px rgba(41, 35, 30, 0.08);
  --shadow-md:  0 6px 24px rgba(41, 35, 30, 0.1);
  --shadow-lg:  0 16px 48px rgba(41, 35, 30, 0.12);
  --shadow-image: 0 20px 60px rgba(41, 35, 30, 0.14);

  /* --- Transitions --- */
  --transition-fast:   150ms ease;
  --transition-base:   260ms ease;
  --transition-slow:   420ms ease;
  --transition-xslow:  600ms cubic-bezier(0.22, 1, 0.36, 1);

  /* --- Z-Index Scale --- */
  --z-below:    -1;
  --z-base:      0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;
}


/* ============================================================
   2. RESET & BASE STYLES
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-base);
  color: var(--clr-text-primary);
  background-color: var(--clr-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Images */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

/* Forms */
input, button, textarea, select {
  font: inherit;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Tables */
table {
  border-collapse: collapse;
}

/* Paragraphs */
p {
  max-width: 72ch;
}


/* ============================================================
   3. ACCESSIBILITY
   ============================================================ */

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: var(--z-toast);
  padding: var(--space-3) var(--space-6);
  background: var(--clr-deep);
  color: var(--clr-gold-champ);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-base);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

/* Focus visible — universal */
:focus-visible {
  outline: 2px solid var(--clr-gold-champ);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Remove focus for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Visually hidden utility (accessible) */
.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;
}


/* ============================================================
   4. LAYOUT — CONTAINER & GRID
   ============================================================ */

/* Main container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: 800px;
}

.container--text {
  max-width: 640px;
}

/* 12-column CSS Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  gap: var(--grid-gap);
}

/* Grid column spans */
.col-1  { grid-column: span 1; }
.col-2  { grid-column: span 2; }
.col-3  { grid-column: span 3; }
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-9  { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

/* Grid column start positions */
.col-start-1  { grid-column-start: 1; }
.col-start-2  { grid-column-start: 2; }
.col-start-3  { grid-column-start: 3; }
.col-start-4  { grid-column-start: 4; }
.col-start-5  { grid-column-start: 5; }
.col-start-7  { grid-column-start: 7; }

/* Flexbox helpers */
.flex         { display: flex; }
.flex-wrap    { flex-wrap: wrap; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.items-end    { align-items: flex-end; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end     { justify-content: flex-end; }
.gap-2  { gap: var(--space-2); }
.gap-3  { gap: var(--space-3); }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }
.gap-10 { gap: var(--space-10); }
.gap-12 { gap: var(--space-12); }

/* Section wrapper */
.section {
  padding-block: var(--section-py);
}

.section--lg {
  padding-block: var(--section-py-lg);
}

/* Alternate section backgrounds */
.bg-primary   { background-color: var(--clr-bg-primary); }
.bg-secondary { background-color: var(--clr-bg-secondary); }
.bg-white     { background-color: var(--clr-white); }
.bg-deep      { background-color: var(--clr-deep); }


/* ============================================================
   5. TYPOGRAPHY STYLES
   ============================================================ */

/* Eyebrow / section label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold-champ);
  line-height: var(--lh-tight);
}

.eyebrow--dark {
  color: var(--clr-text-secondary);
}

.eyebrow--light {
  color: var(--clr-gold-soft);
}

/* Heading styles */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: var(--clr-text-primary);
}

h1, .h1 {
  font-size: var(--text-hero);
  font-weight: var(--fw-light);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2, .h2 {
  font-size: var(--text-5xl);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3, .h3 {
  font-size: var(--text-4xl);
  font-weight: var(--fw-light);
  line-height: 1.15;
}

h4, .h4 {
  font-size: var(--text-3xl);
  font-weight: var(--fw-regular);
  line-height: 1.2;
}

h5, .h5 {
  font-size: var(--text-2xl);
  font-weight: var(--fw-regular);
  line-height: 1.3;
}

h6, .h6 {
  font-size: var(--text-xl);
  font-weight: var(--fw-medium);
  font-family: var(--font-sans);
  line-height: 1.4;
}

/* Italic serif accent (for editorial headings) */
.heading-italic {
  font-style: italic;
  font-weight: var(--fw-light);
}

/* White headings (on dark sections) */
.heading-light {
  color: var(--clr-bg-primary);
}

.heading-gold {
  color: var(--clr-gold-champ);
}

/* Body text */
.body-lg {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-primary);
}

.body-base {
  font-size: var(--text-base);
  line-height: var(--lh-base);
  color: var(--clr-text-primary);
}

.body-sm {
  font-size: var(--text-sm);
  line-height: var(--lh-base);
  color: var(--clr-text-secondary);
}

.body-xs {
  font-size: var(--text-xs);
  line-height: var(--lh-snug);
  color: var(--clr-text-secondary);
}

/* Text color modifiers */
.text-primary   { color: var(--clr-text-primary); }
.text-secondary { color: var(--clr-text-secondary); }
.text-gold      { color: var(--clr-gold-champ); }
.text-white     { color: var(--clr-white); }
.text-light     { color: var(--clr-bg-primary); }

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Text decoration */
.text-italic   { font-style: italic; }
.text-serif    { font-family: var(--font-serif); }
.text-sans     { font-family: var(--font-sans); }
.text-uppercase { text-transform: uppercase; }

/* Lead paragraph (opening body copy) */
.lead {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: var(--fw-light);
  font-style: italic;
  line-height: 1.45;
  color: var(--clr-text-primary);
}

/* Intro paragraph */
.intro {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  max-width: 58ch;
}

/* Caption */
.caption {
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wide);
  color: var(--clr-text-secondary);
  font-family: var(--font-sans);
}

/* Section heading group */
.section-header {
  margin-block-end: clamp(2.5rem, 6vw, 5rem);
}

.section-header .eyebrow {
  margin-block-end: var(--space-5); /* 20px — more air between label and heading */
}

.section-header h2 {
  margin-block-end: var(--space-5);
}

.section-header .intro {
  margin-block-start: var(--space-4);
}

.section-header--center {
  text-align: center;
}

.section-header--center .intro {
  margin-inline: auto;
}


/* ============================================================
   6. DIVIDERS & DECORATIVE ELEMENTS
   ============================================================ */

/* Horizontal rule */
hr, .divider {
  border: none;
  border-top: var(--border);
  margin-block: var(--space-8);
}

.divider--gold {
  border-top: var(--border-gold);
}

.divider--thin {
  border-top: var(--border-thin-gold);
}

/* Decorative thin gold line (used under eyebrows) */
.gold-line {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--clr-gold-champ);
  margin-block: var(--space-4);
}

.gold-line--center {
  margin-inline: auto;
}

.gold-line--lg {
  width: 4rem;
}

/* Ornamental diamond divider */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--clr-gold-champ);
  margin-block: var(--space-8);
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-border));
}

.ornament::after {
  background: linear-gradient(to left, transparent, var(--clr-border));
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--clr-gold-champ);
  transform: rotate(45deg);
  flex-shrink: 0;
}


/* ============================================================
   7. BUTTONS
   ============================================================ */

/* Base button reset */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 2rem;
  /* WCAG 2.5.8 Target Size — guarantee ≥44 × 44 px touch target */
  min-height: 2.75rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-none);
  cursor: pointer;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-fast),
              box-shadow var(--transition-base);
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: translateY(1px);
}

/* Primary button — champagne gold fill */
.btn--primary {
  background-color: var(--clr-gold-champ);
  color: var(--clr-deep);
  border-color: var(--clr-gold-champ);
}

.btn--primary:hover {
  background-color: var(--clr-gold-warm);
  border-color: var(--clr-gold-warm);
  color: var(--clr-deep);
  box-shadow: var(--shadow-sm);
}

/* Secondary button — transparent with dark border */
.btn--secondary {
  background-color: transparent;
  color: var(--clr-text-primary);
  border-color: var(--clr-text-primary);
}

.btn--secondary:hover {
  background-color: var(--clr-text-primary);
  color: var(--clr-bg-primary);
}

/* Secondary button — gold outlined variant */
.btn--outline-gold {
  background-color: transparent;
  color: var(--clr-gold-champ);
  border-color: var(--clr-gold-champ);
}

.btn--outline-gold:hover {
  background-color: var(--clr-gold-champ);
  color: var(--clr-deep);
}

/* Ghost button — light backgrounds on dark sections */
.btn--ghost {
  background-color: transparent;
  color: var(--clr-bg-primary);
  border-color: rgba(247, 243, 234, 0.75);
}

.btn--ghost:hover {
  background-color: rgba(247, 243, 234, 0.1);
  border-color: var(--clr-bg-primary);
}

/* Button sizes */
.btn--sm {
  padding: 0.625rem 1.375rem;
  /* Smaller padding — enforce 44px min-height explicitly for touch targets */
  min-height: 2.75rem;
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wide);
}

.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--text-base);
}

/* Icon button */
.btn--icon {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Button arrow indicator */
.btn__arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* WhatsApp button variant */
.btn--whatsapp {
  background-color: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background-color: #1ebe58;
  border-color: #1ebe58;
}


/* ============================================================
   8. LINKS
   ============================================================ */

/* Inline text links */
.link {
  color: var(--clr-gold-champ);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-base);
}

.link:hover {
  color: var(--clr-gold-warm);
}

.link:hover::after {
  width: 100%;
}

/* Animated underline link */
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--clr-text-primary);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--clr-text-primary);
  transition: color var(--transition-base), border-color var(--transition-base);
}

.link-underline:hover {
  color: var(--clr-gold-champ);
  border-color: var(--clr-gold-champ);
}

.link-underline--gold {
  color: var(--clr-gold-champ);
  border-bottom-color: var(--clr-gold-champ);
}

.link-underline--gold:hover {
  color: var(--clr-gold-warm);
  border-color: var(--clr-gold-warm);
}

/* "Read more" / "Explore" style link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  color: var(--clr-gold-champ);
  text-decoration: none;
  transition: gap var(--transition-base), color var(--transition-base);
}

.link-arrow:hover {
  gap: var(--space-4);
  color: var(--clr-gold-warm);
}

.link-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform var(--transition-base);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}


/* ============================================================
   9. IMAGE SYSTEM
   ============================================================ */

/* Base image block */
.img-block {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-xslow);
}

/* Hover zoom on image blocks (editorial) */
.img-block--zoom:hover img {
  transform: scale(1.04);
}

/* --- Hero image (full-viewport) --- */
.img-hero {
  height: 100svh;
  min-height: 600px;
  max-height: 1080px;
}

.img-hero img {
  object-position: center 30%;
}

/* --- Editorial image (asymmetric layouts) --- */
.img-editorial {
  height: clamp(420px, 60vw, 680px);
}

.img-editorial img {
  object-position: center center;
}

/* --- Gallery image (uniform grid tile) --- */
.img-gallery {
  height: clamp(200px, 30vw, 380px);
}

/* --- Portrait / vertical image --- */
.img-portrait {
  aspect-ratio: 3 / 4;
  height: auto;
}

/* --- Wide interior image (landscape) --- */
.img-wide {
  aspect-ratio: 16 / 9;
  height: auto;
}

/* --- Treatment / service image --- */
.img-treatment {
  height: clamp(260px, 35vw, 440px);
}

/* Image overlay (darkening) */
.img-overlay {
  position: relative;
}

.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(41, 35, 30, 0.3);
  pointer-events: none;
  transition: background var(--transition-base);
}

.img-overlay--heavy::after {
  background: rgba(41, 35, 30, 0.5);
}

.img-overlay--light::after {
  background: rgba(41, 35, 30, 0.15);
}

/* Image caption */
.img-caption {
  padding-block-start: var(--space-3);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wide);
  color: var(--clr-text-secondary);
  text-transform: uppercase;
}

/* Gold border frame accent on images */
.img-frame {
  padding: 3px;
  outline: 1px solid var(--clr-border);
  outline-offset: 8px;
}

/* Placeholder for missing spa images (dev only) */
.img-placeholder {
  background: linear-gradient(135deg, var(--clr-bg-secondary) 0%, var(--clr-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder::before {
  content: attr(data-label);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-secondary);
  opacity: 0.7;
}


/* ============================================================
   10. CARDS
   ============================================================ */

/* Base card */
.card {
  background: var(--clr-white);
  border: var(--border);
  position: relative;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Card body */
.card__body {
  padding: var(--space-8) var(--space-6);
}

.card__header {
  padding: 0 0 var(--space-5);
}

.card__footer {
  padding: var(--space-5) 0 0;
  border-top: var(--border);
  margin-top: var(--space-5);
}

/* Service card — used for treatments */
.card--service {
  background: var(--clr-white);
  border: var(--border);
  overflow: hidden;
}

.card--service .card__image {
  height: clamp(220px, 28vw, 320px);
  overflow: hidden;
}

.card--service .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-xslow);
}

.card--service:hover .card__image img {
  transform: scale(1.05);
}

.card--service .card__body {
  padding: var(--space-6);
}

/* Editorial card — no border, minimal */
.card--editorial {
  background: transparent;
  border: none;
}

.card--editorial:hover {
  box-shadow: none;
  transform: none;
}

/* Testimonial card */
.card--testimonial {
  background: var(--clr-white);
  border: var(--border);
  padding: var(--space-10) var(--space-8);
  position: relative;
}

.card--testimonial::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--clr-gold-soft);
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  pointer-events: none;
}

/* Price / package card */
.card--package {
  background: var(--clr-bg-primary);
  border: var(--border);
  padding: var(--space-10) var(--space-8);
  text-align: center;
}

.card--package:hover {
  border-color: var(--clr-gold-champ);
}

.card--package-featured {
  background: var(--clr-deep);
  border-color: var(--clr-gold-champ);
  color: var(--clr-bg-primary);
}


/* ============================================================
   11. BADGES
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  line-height: 1.4;
}

.badge--gold {
  background: var(--clr-gold-soft);
  color: var(--clr-deep);
}

.badge--outline {
  background: transparent;
  border: var(--border-gold);
  color: var(--clr-gold-champ);
}

.badge--dark {
  background: var(--clr-deep);
  color: var(--clr-gold-soft);
}

.badge--cream {
  background: var(--clr-bg-secondary);
  color: var(--clr-text-secondary);
}

/* Rating badge */
.badge--rating {
  background: var(--clr-gold-soft);
  color: var(--clr-deep);
  gap: var(--space-2);
}

.badge--rating::before {
  content: '★';
  font-size: 0.75em;
}


/* ============================================================
   12. FORMS
   ============================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-secondary);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--clr-text-primary);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-none);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-control::placeholder {
  color: var(--clr-text-secondary);
  opacity: 0.7;
}

.form-control:focus {
  border-color: var(--clr-gold-champ);
  box-shadow: 0 0 0 2px rgba(185, 150, 82, 0.15);
}

.form-control--error {
  border-color: #c0392b;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371675D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--clr-text-secondary);
}

.form-error {
  font-size: var(--text-xs);
  color: #c0392b;
}

/* Form layout */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   13. NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: transparent;
  transition: background-color var(--transition-slow),
              box-shadow var(--transition-slow),
              padding var(--transition-slow);
}

.nav.is-scrolled {
  background-color: rgba(247, 243, 234, 0.97);
  box-shadow: 0 1px 0 var(--clr-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  transition: height var(--transition-slow);
}

.nav.is-scrolled .nav__inner {
  height: 4rem;
}

/* Logo */
.nav__logo {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-wide);
  color: var(--clr-text-primary);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold-champ);
  margin-block-end: 1px;
}

/* Desktop nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav__link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-primary);
  text-decoration: none;
  position: relative;
  padding-block: 2px;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold-champ);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--clr-gold-champ);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

/* Nav CTA */
.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Hamburger toggle (mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: var(--z-modal);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--clr-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-bg-primary);
  z-index: var(--z-overlay);
  padding: 7rem var(--container-px) var(--space-10);
  flex-direction: column;
  gap: var(--space-8);
  transform: translateX(100%);
  transition: transform var(--transition-xslow);
}

.nav__drawer.is-open {
  transform: translateX(0);
}

.nav__drawer .nav__link {
  font-size: var(--text-2xl);
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  letter-spacing: 0;
  text-transform: none;
}

.nav__drawer .nav__link::after {
  display: none;
}


/* ============================================================
   14. CTA BLOCKS
   ============================================================ */

/* Full-width CTA banner */
.cta-block {
  padding-block: clamp(3rem, 7vw, 6rem);
  text-align: center;
}

.cta-block__eyebrow {
  margin-block-end: var(--space-4);
}

.cta-block h2 {
  margin-block-end: var(--space-6);
}

.cta-block p {
  margin-block-end: var(--space-8);
  margin-inline: auto;
  max-width: 52ch;
}

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

/* Inline CTA strip */
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: var(--space-10) var(--space-12);
  border: var(--border);
  background: var(--clr-white);
}

.cta-strip__content h3 {
  margin-block-end: var(--space-2);
}

/* Contact info block */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-info__icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: var(--clr-gold-champ);
  margin-top: 2px;
}

.contact-info__label {
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-secondary);
  margin-block-end: var(--space-1);
}

.contact-info__value {
  font-size: var(--text-base);
  color: var(--clr-text-primary);
  font-weight: var(--fw-medium);
}


/* ============================================================
   15. SECTION LABELS (specialty components)
   ============================================================ */

/* Numbered section label */
.section-num {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-block-end: var(--space-6);
}

.section-num__digit {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: var(--fw-light);
  color: var(--clr-gold-soft);
  line-height: 1;
}

.section-num__line {
  flex: 0 0 2rem;
  height: 1px;
  background: var(--clr-border);
}

.section-num__label {
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-text-secondary);
}

/* Gold rule + eyebrow pattern (common header pattern) */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.section-tag::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--clr-gold-champ);
}


/* ============================================================
   16. UTILITY CLASSES
   ============================================================ */

/* Display */
.d-none   { display: none; }
.d-block  { display: block; }
.d-flex   { display: flex; }
.d-grid   { display: grid; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-inline-flex  { display: inline-flex; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }

/* Width / height */
.w-full  { width: 100%; }
.h-full  { height: 100%; }

/* Spacing utilities */
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.mx-auto { margin-inline: auto; }

.mb-4  { margin-block-end: var(--space-4); }
.mb-6  { margin-block-end: var(--space-6); }
.mb-8  { margin-block-end: var(--space-8); }
.mb-10 { margin-block-end: var(--space-10); }
.mb-12 { margin-block-end: var(--space-12); }
.mb-16 { margin-block-end: var(--space-16); }

.mt-3  { margin-block-start: var(--space-3); }
.mt-4  { margin-block-start: var(--space-4); }
.mt-5  { margin-block-start: var(--space-5); }  /* was missing — used across all major section headings */
.mt-6  { margin-block-start: var(--space-6); }
.mt-8  { margin-block-start: var(--space-8); }
.mt-10 { margin-block-start: var(--space-10); }

/* Padding */
.p-4  { padding: var(--space-4); }
.p-6  { padding: var(--space-6); }
.p-8  { padding: var(--space-8); }
.p-10 { padding: var(--space-10); }
.p-12 { padding: var(--space-12); }

/* Object fit */
.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center  { object-position: center; }

/* Border */
.border       { border: var(--border); }
.border-gold  { border: var(--border-gold); }
.border-t     { border-top: var(--border); }
.border-b     { border-bottom: var(--border); }

/* Aspect ratios */
.aspect-square   { aspect-ratio: 1 / 1; }
.aspect-video    { aspect-ratio: 16 / 9; }
.aspect-portrait { aspect-ratio: 3 / 4; }
.aspect-wide     { aspect-ratio: 21 / 9; }


/* ============================================================
   17. FOOTER
   ============================================================ */

.footer {
  background: var(--clr-deep);
  color: var(--clr-bg-secondary);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-block-end: clamp(2.5rem, 5vw, 4rem);
  padding-block-end: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(217, 206, 189, 0.15);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: var(--fw-light);
  color: var(--clr-bg-primary);
  margin-block-end: var(--space-4);
  line-height: 1.2;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-block-end: var(--space-8);
  max-width: 32ch;
}

.footer__col-heading {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold-champ);
  margin-block-end: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--clr-bg-secondary);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer__link:hover {
  opacity: 1;
  color: var(--clr-gold-soft);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--clr-text-secondary);
  opacity: 0.7;
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--clr-text-secondary);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer__legal a:hover {
  opacity: 1;
}


/* ============================================================
   18. STICKY FLOATING ACTIONS
   ============================================================ */

/* ============================================================
   FLOATING ACTION BUTTONS — WhatsApp + Call
   Desktop & tablet only. Mobile is handled by .phone-bar.
   ============================================================ */

.fab-group {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

/* Hide FABs on mobile — phone-bar handles contact there */
@media (max-width: 767px) {
  .fab-group { display: none; }
}

/* Individual FAB button */
.fab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.22s ease;
}

.fab svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Slide-out label (appears to the left on hover) */
.fab__label {
  position: absolute;
  right: calc(100% + 0.625rem);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--clr-deep);
  color: var(--clr-bg-primary);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.3125rem 0.6875rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.fab:hover .fab__label,
.fab:focus-visible .fab__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.fab:hover {
  transform: translateY(-3px);
}

/* ---- WhatsApp FAB ---- */
.fab--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.42);
}

.fab--wa:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ---- Call FAB ---- */
.fab--call {
  background: var(--clr-deep);
  color: var(--clr-gold-soft);
  box-shadow: 0 4px 18px rgba(41, 35, 30, 0.32);
  border: 1px solid rgba(185, 150, 82, 0.28);
}

.fab--call:hover {
  background: #332921;
  box-shadow: 0 8px 28px rgba(41, 35, 30, 0.42);
  color: var(--clr-gold-champ);
}

/* Keep backward-compat selector in case anything references it */
.whatsapp-float { display: none; }

/* Phone sticky bar (mobile only) */
.phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-3) var(--container-px);
  background: var(--clr-deep);
  border-top: 1px solid rgba(185, 150, 82, 0.3);
}

.phone-bar__inner {
  display: flex;
  gap: var(--space-3);
}

.phone-bar .btn {
  flex: 1;
  padding-block: 0.75rem;
  font-size: var(--text-xs);
}


/* ============================================================
   19. LOADING & STATES
   ============================================================ */

/* Page preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--clr-gold-champ);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.preloader__dot:nth-child(2) { animation-delay: 0.2s; }
.preloader__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse-dot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%            { transform: scale(1);   opacity: 1; }
}

/* Fade-in animation (JS-triggered) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-xslow), transform var(--transition-xslow);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-in > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-in.is-visible > *:nth-child(1) { transition-delay: 0ms;  }
.stagger-in.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger-in.is-visible > *:nth-child(3) { transition-delay: 160ms;}
.stagger-in.is-visible > *:nth-child(4) { transition-delay: 240ms;}
.stagger-in.is-visible > *:nth-child(5) { transition-delay: 320ms;}
.stagger-in.is-visible > *:nth-child(6) { transition-delay: 400ms;}

.stagger-in.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   20. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- ≤ 414px (mobile portrait) ---- */
@media (max-width: 414px) {
  :root {
    --container-px: 1.125rem;
    --section-py:   clamp(2.5rem, 8vw, 4rem);
  }

  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  [class^="col-"] {
    grid-column: span 12;
  }

  .phone-bar {
    display: flex;
  }

  .nav__links,
  .nav__cta .btn--primary {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__drawer {
    display: flex;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-8) var(--space-6);
  }

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- 415px – 767px (mobile landscape / large mobile) ---- */
@media (min-width: 415px) and (max-width: 767px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }

  [class^="col-"] {
    grid-column: span 4;
  }

  .col-6 { grid-column: span 4; }

  .phone-bar {
    display: flex;
  }

  .nav__links,
  .nav__cta .btn--primary {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__drawer {
    display: flex;
  }

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

/* ---- 768px – 1023px (tablet) ---- */
@media (min-width: 768px) and (max-width: 1023px) {
  .grid {
    grid-template-columns: repeat(8, 1fr);
    gap: var(--space-5);
  }

  .col-3 { grid-column: span 4; }
  .col-4 { grid-column: span 4; }
  .col-8 { grid-column: span 8; }
  .col-9 { grid-column: span 8; }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .nav__links {
    gap: 1.25rem;
  }

  .nav__cta .btn--primary {
    display: none;
  }
}

/* ---- 1024px – 1279px (laptop) ---- */
@media (min-width: 1024px) and (max-width: 1279px) {
  :root {
    --container-px: 2rem;
  }

  .nav__toggle,
  .nav__drawer {
    display: none !important;
  }
}

/* ---- ≥ 1280px (desktop) ---- */
@media (min-width: 1280px) {
  :root {
    --container-px: 3rem;
  }

  .nav__toggle,
  .nav__drawer {
    display: none !important;
  }
}

/* ---- ≥ 1440px (large desktop) ---- */
@media (min-width: 1440px) {
  :root {
    --container-max: 1360px;
  }
}

/* ---- ≥ 1920px (wide / 2K) ---- */
@media (min-width: 1920px) {
  :root {
    --container-max: 1480px;
    --container-px: 4rem;
  }
}

/* ============================================================
   PROMPT 3 — INTRODUCTION · WHY · PROPERTY STORY
   ============================================================ */


/* ============================================================
   27. INTRODUCTION SECTION
   ============================================================ */

.intro-section {
  background: var(--clr-bg-primary);
  overflow: hidden;
}

/* Two-column editorial grid: image | text */
.intro-section__grid {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 560px;
}

/* Left: image column — no padding, bleeds to edge */
.intro-section__image-col {
  position: relative;
  overflow: hidden;
}

.intro-section__image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform var(--transition-xslow);
}

/* Warm gradient placeholder until real photo placed */
.intro-section__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  background: linear-gradient(
    168deg,
    #1e1208 0%,
    #3a200e 22%,
    #6e4420 44%,
    #a07038 64%,
    #c49448 80%,
    #d4a85a 93%,
    #e0bc74 100%
  );
}

.intro-section__image-col:hover .intro-section__image {
  transform: scale(1.03);
}

/* Thin right border — champagne gold hairline separating columns */
.intro-section__image-col::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--clr-border), transparent);
  pointer-events: none;
}

/* Right: text column */
.intro-section__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
}

.intro-section__eyebrow {
  margin-bottom: var(--space-5);
}

.intro-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: var(--fw-light);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
  margin-bottom: var(--space-6);
}

.intro-section__heading em {
  font-style: italic;
  color: var(--clr-gold-champ);
}

.intro-section__body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  max-width: 52ch; /* bumped from 44ch — better line length for readability */
  margin-bottom: var(--space-8);
}

.intro-section__detail {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  max-width: 44ch;
  margin-bottom: var(--space-8);
  padding-left: var(--space-6);
  border-left: 2px solid var(--clr-gold-soft);
}

.intro-section__meta {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: var(--border-thin-gold);
}

.intro-section__meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.intro-section__meta-value {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: var(--fw-light);
  color: var(--clr-gold-champ);
  line-height: 1;
}

.intro-section__meta-label {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-secondary);
}

/* Responsive: intro */
@media (max-width: 900px) {
  .intro-section__grid {
    grid-template-columns: 1fr;
  }

  .intro-section__image-col {
    height: clamp(280px, 52vw, 440px);
  }

  .intro-section__image,
  .intro-section__image-placeholder {
    min-height: 0;
    height: 100%;
  }

  .intro-section__image-col::after {
    display: none;
  }

  .intro-section__text-col {
    padding: clamp(2rem, 5vw, 3.5rem) var(--container-px);
  }

  .intro-section__body,
  .intro-section__detail {
    max-width: 100%;
  }
}


/* ============================================================
   28. WHY DREAM PREMIUM SPA SECTION
   ============================================================ */

.why-section {
  background: var(--clr-bg-secondary);
}

.why-section__header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  max-width: 54ch;
}

.why-section__header .eyebrow {
  margin-bottom: var(--space-4);
}

.why-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-light);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
}

/* 3-column grid for the 6 features */
.why-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--border);
}

.why-item {
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  border-right: var(--border);
  border-bottom: var(--border);
  position: relative;
  background: var(--clr-bg-secondary);
  transition: background-color var(--transition-base);
}

/* Remove right border on last in each row */
.why-item:nth-child(3n) {
  border-right: none;
}

/* Remove bottom border on last row */
.why-item:nth-child(n+4) {
  border-bottom: none;
}

.why-item:hover {
  background: rgba(247, 243, 234, 0.65);
}

/* Number — small gold serif */
.why-item__num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--fw-light);
  color: var(--clr-gold-soft);
  line-height: 1;
  margin-bottom: var(--space-5);
  display: block;
}

/* Thin gold rule under number */
.why-item__num::after {
  content: '';
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--clr-gold-champ);
  margin-top: var(--space-3);
}

.why-item__heading {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-tight);
  color: var(--clr-text-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.why-item__body {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  max-width: 32ch;
}

/* Responsive: why grid */
@media (max-width: 900px) {
  .why-section__grid {
    grid-template-columns: 1fr 1fr;
    border: var(--border);
  }

  .why-item {
    border-right: var(--border);
    border-bottom: var(--border);
  }

  .why-item:nth-child(3n) {
    border-right: var(--border);  /* reset 3n rule */
  }

  .why-item:nth-child(n+4) {
    border-bottom: var(--border); /* reset last-row rule */
  }

  .why-item:nth-child(2n) {
    border-right: none;           /* 2-col: remove right on even */
  }

  .why-item:nth-child(n+5) {
    border-bottom: none;          /* 2-col: last row of 2 */
  }
}

@media (max-width: 520px) {
  .why-section__grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    border-right: none;
    border-bottom: var(--border);
  }

  .why-item:nth-child(2n) {
    border-right: none;
  }

  .why-item:last-child {
    border-bottom: none;
  }

  .why-item:nth-child(n+5) {
    border-bottom: var(--border);
  }

  .why-item__body {
    max-width: 100%;
  }
}


/* ============================================================
   29. PROPERTY STORY SECTION
   ============================================================ */

.property-story {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: clamp(480px, 62vh, 760px);
  overflow: hidden;
}

/* Left panel — deep espresso text area */
.property-story__text-panel {
  background: var(--clr-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2.5rem, 4.5vw, 4rem);
  position: relative;
  overflow: hidden;
}

/* Decorative large serif numeral watermark */
.property-story__text-panel::before {
  content: 'I';
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  font-family: var(--font-serif);
  font-size: 14rem;
  font-weight: var(--fw-light);
  line-height: 1;
  color: rgba(185, 150, 82, 0.06);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.property-story__eyebrow {
  color: var(--clr-gold-champ);
  margin-bottom: var(--space-5);
}

.property-story__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: var(--fw-light);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--clr-bg-primary);
  margin-bottom: var(--space-6);
}

.property-story__heading em {
  font-style: italic;
  color: var(--clr-gold-soft);
}

/* Thin gold ornament between heading and body */
.property-story__rule {
  width: 2.5rem;
  height: 1px;
  background: var(--clr-gold-champ);
  margin-bottom: var(--space-6);
  flex-shrink: 0;
}

.property-story__body {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: 1.75;
  color: rgba(238, 231, 218, 0.72);
  max-width: 40ch;
  margin-bottom: var(--space-10);
}

.property-story__cta {
  align-self: flex-start;
}

/* Right panel — large wide photo */
.property-story__image-col {
  position: relative;
  overflow: hidden;
}

.property-story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Warm gradient placeholder for the property story image */
.property-story__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  background: linear-gradient(
    138deg,
    #160b04 0%,
    #2e1608 18%,
    #5a3016 36%,
    #8c5a26 52%,
    #b07c38 66%,
    #c89444 78%,
    #d4a84a 88%,
    #ddb85e 96%,
    #e8c870 100%
  );
}

/* Subtle overlay to add depth to the image */
.property-story__image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(22, 10, 2, 0.3) 0%,
    rgba(22, 10, 2, 0.0) 40%
  );
  pointer-events: none;
}

.property-story__image-col:hover .property-story__image {
  transform: scale(1.04);
}

/* Responsive: property story */
@media (max-width: 900px) {
  .property-story {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .property-story__image-col {
    order: -1;      /* image goes above text on mobile */
    height: clamp(280px, 55vw, 440px);
  }

  .property-story__image,
  .property-story__image-placeholder {
    height: 100%;
    min-height: 0;
  }

  .property-story__image-col::after {
    background: none;
  }

  .property-story__text-panel {
    padding: clamp(2.5rem, 6vw, 4rem) var(--container-px);
  }

  .property-story__text-panel::before {
    font-size: 9rem;
  }

  .property-story__body {
    max-width: 100%;
  }
}


/* ============================================================
   30. TREATMENTS SECTION
   ============================================================ */

/* ---- Section header ---- */
.treatments-section {
  background: var(--clr-bg-primary);
}

.treatments-section__header {
  text-align: center;
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.treatments-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-light);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
  margin-bottom: var(--space-5);
}

.treatments-section__intro {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  max-width: 52ch;
  margin-inline: auto;
}

/* ---- Editorial grid shell ---- */
/* 1px border lines appear between tiles via gap + background trick */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
}

/* ---- Base tile ---- */
.treatment-tile {
  background: var(--clr-bg-primary);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* ---- Column spans (desktop 12-col) ---- */
/* Row 1: featured (7 cols) + tall Jacuzzi (5 cols) */
.treatment-tile:nth-child(1) { grid-column: 1 / 8; min-height: 420px; }
.treatment-tile:nth-child(2) { grid-column: 8 / 13; min-height: 420px; }

/* Row 2: three equal medium tiles (4 cols each) */
.treatment-tile:nth-child(3),
.treatment-tile:nth-child(4),
.treatment-tile:nth-child(5) { grid-column: span 4; }

/* Row 3: two wide horizontal tiles (6 cols each) */
.treatment-tile:nth-child(6),
.treatment-tile:nth-child(7) { grid-column: span 6; }

/* ---- Featured tile — warm gradient BG, light text ---- */
.treatment-tile--featured {
  background: linear-gradient(
    155deg,
    #1e1208 0%,
    #3a200e 22%,
    #6e4420 44%,
    #9e6e34 62%,
    #bc8e42 78%,
    #ccaa56 92%,
    #d8be70 100%
  );
}

.treatment-tile--featured .treatment-tile__num    { color: rgba(228, 200, 130, 0.55); }
.treatment-tile--featured .treatment-tile__name   { color: var(--clr-bg-primary); }
.treatment-tile--featured .treatment-tile__desc   { color: rgba(238, 231, 218, 0.82); }
.treatment-tile--featured .treatment-tile__benefit-item { color: rgba(238, 231, 218, 0.70); }
.treatment-tile--featured .treatment-tile__benefit-item::before { background: var(--clr-gold-soft); }
.treatment-tile--featured .treatment-tile__divider { background: rgba(185, 150, 82, 0.35); }
.treatment-tile--featured .btn { border-color: rgba(228, 200, 130, 0.5); color: var(--clr-bg-primary); }
.treatment-tile--featured .btn:hover {
  background: rgba(228, 200, 130, 0.15);
  border-color: rgba(228, 200, 130, 0.8);
}

/* Large decorative serif initial for featured tile */
.treatment-tile--featured::after {
  content: attr(data-num);
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: 10rem;
  font-weight: var(--fw-light);
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}

/* ---- Tall dark tile (Jacuzzi) — espresso BG, ivory text ---- */
.treatment-tile--dark {
  background: var(--clr-deep);
}

.treatment-tile--dark .treatment-tile__num    { color: rgba(185, 150, 82, 0.5); }
.treatment-tile--dark .treatment-tile__name   { color: var(--clr-bg-primary); }
.treatment-tile--dark .treatment-tile__desc   { color: rgba(238, 231, 218, 0.75); }
.treatment-tile--dark .treatment-tile__benefit-item { color: rgba(238, 231, 218, 0.60); }
.treatment-tile--dark .treatment-tile__benefit-item::before { background: var(--clr-gold-champ); }
.treatment-tile--dark .treatment-tile__divider { background: rgba(185, 150, 82, 0.25); }
.treatment-tile--dark .btn { border-color: rgba(185, 150, 82, 0.5); color: var(--clr-bg-primary); }
.treatment-tile--dark .btn:hover {
  background: rgba(185, 150, 82, 0.12);
  border-color: var(--clr-gold-champ);
}

/* ---- Cream tile (Balinese) ---- */
.treatment-tile--cream {
  background: var(--clr-bg-secondary);
}

/* ---- Tile inner parts ---- */
.treatment-tile__num {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  font-weight: var(--fw-light);
  color: var(--clr-gold-soft);
  line-height: 1;
  margin-bottom: var(--space-4);
  display: block;
  flex-shrink: 0;
}

/* Short gold tick under number */
.treatment-tile__num::after {
  content: '';
  display: block;
  width: 1.125rem;
  height: 1px;
  background: var(--clr-gold-champ);
  margin-top: var(--space-2);
}

.treatment-tile__name {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: var(--fw-light);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--clr-text-primary);
  margin-bottom: var(--space-4);
}

.treatment-tile__divider {
  width: 2rem;
  height: 1px;
  background: var(--clr-border);
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.treatment-tile__desc {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  margin-bottom: var(--space-5);
  flex-grow: 1; /* push btn to bottom */
}

/* Featured + dark tiles: slightly larger desc */
.treatment-tile--featured .treatment-tile__desc,
.treatment-tile--dark .treatment-tile__desc {
  font-size: var(--text-base);
}

.treatment-tile__benefits {
  list-style: none;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.treatment-tile__benefit-item {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
  color: var(--clr-text-tertiary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.treatment-tile__benefit-item::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clr-gold-champ);
  flex-shrink: 0;
}

/* Horizontal tile layout (row 3) — description fills full width */
.treatment-tile--horizontal {
  flex-direction: column;
}

/* Button lives at bottom of tile — push with auto margin */
.treatment-tile__btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---- Treatments CTA block ---- */
.treatments-cta {
  background: var(--clr-deep);
  padding: clamp(3rem, 6vw, 5rem) var(--container-px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.treatments-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-gold-champ), transparent);
}

.treatments-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-light);
  letter-spacing: -0.02em;
  color: var(--clr-bg-primary);
  margin-bottom: var(--space-4);
}

.treatments-cta__body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: rgba(238, 231, 218, 0.70);
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.treatments-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ---- Responsive: treatments grid ---- */

/* Tablet: 2-column layout */
@media (max-width: 960px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .treatment-tile:nth-child(1) { grid-column: 1 / -1; min-height: 340px; } /* full width featured */
  .treatment-tile:nth-child(2) { grid-column: span 1; min-height: 300px; }

  .treatment-tile:nth-child(3),
  .treatment-tile:nth-child(4),
  .treatment-tile:nth-child(5),
  .treatment-tile:nth-child(6),
  .treatment-tile:nth-child(7) { grid-column: span 1; }
}

/* Mobile: single column */
@media (max-width: 560px) {
  .treatments-grid {
    grid-template-columns: 1fr;
  }

  .treatment-tile,
  .treatment-tile:nth-child(1),
  .treatment-tile:nth-child(2) {
    grid-column: 1 / -1;
    min-height: 0;
  }
}


/* ============================================================
   31. EXPERIENCE SECTIONS — COUPLES · JACUZZI · VIP
   Shared editorial split-layout component + section variants
   ============================================================ */

/* ---- Base split section ---- */
.exp-section {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: clamp(480px, 58vh, 720px);
  overflow: hidden;
}

/* Flip order for image-right variant */
.exp-section--img-right {
  grid-template-columns: 48% 52%;
}

.exp-section--img-right .exp-section__image-col {
  order: 2;
}

.exp-section--img-right .exp-section__text-col {
  order: 1;
}

/* ---- Image column ---- */
.exp-section__image-col {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg-secondary); /* fallback behind gradient */
}

.exp-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.exp-section__image-col:hover .exp-section__image {
  transform: scale(1.04);
}

/* Placeholder gradient containers — warm amber (Couples) */
.exp-section__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
}

.exp-section__img-placeholder--couples {
  background: linear-gradient(
    155deg,
    #180d05 0%, #321808 16%, #5e3012 32%,
    #8a501e 48%, #ac742a 62%, #c49040 74%,
    #d0a450 84%, #dbb862 93%, #e4cc7a 100%
  );
}

/* Jacuzzi — slightly cooler undertone, suggests warm water light */
.exp-section__img-placeholder--jacuzzi {
  background: linear-gradient(
    148deg,
    #0e1218 0%, #161e28 14%, #1e2e38 28%,
    #2c4050 42%, #3e5a68 54%, #6a8080 64%,
    #8a9c90 74%, #b0a878 84%, #ccb860 93%, #dcc864 100%
  );
}

/* VIP — richest deep gold, most premium */
.exp-section__img-placeholder--vip {
  background: linear-gradient(
    138deg,
    #100804 0%, #221208 14%, #3c1e0c 26%,
    #5a2e10 38%, #7e4418 50%, #a06028 62%,
    #c08038 72%, #cc9840 80%, #d4a84a 88%,
    #dcbc5c 94%, #e4cc70 100%
  );
}

/* Thin hairline between image and text (img-left variant) */
.exp-section__image-col::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--clr-border), transparent);
  pointer-events: none;
}

.exp-section--img-right .exp-section__image-col::after {
  right: auto;
  left: 0;
}

/* ---- Text column ---- */
.exp-section__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
  background: var(--clr-bg-primary);
}

/* Cream background variant */
.exp-section--cream .exp-section__text-col {
  background: var(--clr-bg-secondary);
}

/* Dark (VIP) variant */
.exp-section--dark .exp-section__text-col {
  background: var(--clr-deep);
}

.exp-section--dark .exp-section__eyebrow {
  color: var(--clr-gold-champ);
}

.exp-section--dark .exp-section__heading {
  color: var(--clr-bg-primary);
}

.exp-section--dark .exp-section__body {
  color: rgba(238, 231, 218, 0.72);
}

.exp-section--dark .exp-section__feature-label {
  color: rgba(238, 231, 218, 0.55);
}

.exp-section--dark .exp-section__feature-val {
  color: var(--clr-bg-primary);
}

.exp-section--dark .exp-section__feature-item {
  border-bottom-color: rgba(185, 150, 82, 0.18);
}

/* ---- Text elements ---- */
.exp-section__eyebrow {
  margin-bottom: var(--space-5);
}

.exp-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
  margin-bottom: var(--space-6);
}

.exp-section__heading em {
  font-style: italic;
  color: var(--clr-gold-champ);
}

.exp-section__rule {
  width: 2rem;
  height: 1px;
  background: var(--clr-gold-champ);
  margin-bottom: var(--space-6);
  flex-shrink: 0;
}

.exp-section__body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  max-width: 44ch;
  margin-bottom: var(--space-7);
}

/* ---- Gold bordered highlight tags ---- */
.exp-section__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  margin-bottom: var(--space-8);
}

.exp-section__tag {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-gold-champ);
  border: 1px solid rgba(185, 150, 82, 0.35);
  padding: 0.28rem 0.75rem;
  display: inline-block;
  white-space: nowrap;
  transition: border-color var(--transition-base), background-color var(--transition-base);
}

.exp-section__tag:hover,
.exp-section--dark .exp-section__tag:hover {
  border-color: var(--clr-gold-champ);
  background: rgba(185, 150, 82, 0.07);
}

/* ---- VIP feature list (label + value rows) ---- */
.exp-section__features {
  list-style: none;
  margin-bottom: var(--space-8);
}

.exp-section__feature-item {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--clr-border);
}

.exp-section__feature-item:first-child {
  border-top: 1px solid var(--clr-border);
}

.exp-section__feature-num {
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  color: var(--clr-gold-soft);
  width: 1.5rem;
  flex-shrink: 0;
}

.exp-section__feature-val {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-primary);
  flex: 1;
}

.exp-section__feature-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--clr-text-tertiary);
  text-align: right;
}

/* ---- Responsive: exp-sections ---- */
@media (max-width: 900px) {
  .exp-section,
  .exp-section--img-right {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* Image always appears first (above text) on mobile */
  .exp-section__image-col,
  .exp-section--img-right .exp-section__image-col {
    order: -1;
    height: clamp(280px, 55vw, 440px);
  }

  .exp-section__text-col,
  .exp-section--img-right .exp-section__text-col {
    order: 1;
  }

  .exp-section__img-placeholder,
  .exp-section__image {
    height: 100%;
    min-height: 0;
  }

  .exp-section__image-col::after,
  .exp-section--img-right .exp-section__image-col::after {
    display: none;
  }

  .exp-section__text-col {
    padding: clamp(2rem, 5vw, 3.5rem) var(--container-px);
  }

  .exp-section__body {
    max-width: 100%;
  }
}


/* ============================================================
   32. REVIEWS SECTION
   ============================================================ */

.reviews-section {
  background: var(--clr-bg-primary);
  overflow: hidden;
}

/* ---- Section header ---- */
.reviews-section__header {
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.reviews-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
  margin-bottom: 0;
}

/* ---- Large trust block ---- */
.reviews-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  padding: clamp(2.5rem, 4vw, 3.5rem) var(--container-px);
  background: var(--clr-bg-secondary);
  border-top: var(--border);
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decorative large watermark behind trust block */
.reviews-trust::before {
  content: '★';
  position: absolute;
  font-size: 28rem;
  line-height: 1;
  color: rgba(185, 150, 82, 0.04);
  pointer-events: none;
  user-select: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reviews-trust__stars {
  font-size: 1.375rem;
  color: var(--clr-gold-champ);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
  position: relative;
}

.reviews-trust__score {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: var(--fw-light);
  line-height: 0.9;
  color: var(--clr-text-primary);
  letter-spacing: -0.04em;
  position: relative;
}

.reviews-trust__score span {
  /* "Google Rating" suffix */
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-secondary);
  margin-top: var(--space-4);
}

.reviews-trust__divider {
  width: 1px;
  height: 3rem;
  background: var(--clr-border);
  margin: var(--space-5) 0;
  position: relative;
}

.reviews-trust__count {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--fw-light);
  color: var(--clr-text-secondary);
  position: relative;
}

.reviews-trust__count span {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-tertiary);
  margin-top: var(--space-2);
}

/* ---- Theme grid ---- */
.reviews-themes-label {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-tertiary);
  text-align: center;
  margin-bottom: var(--space-6);
}

/* Bordered grid — same editorial language as Why section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.review-theme {
  background: var(--clr-bg-primary);
  padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1.25rem, 2vw, 1.875rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: background-color var(--transition-base);
}

.review-theme:hover {
  background: var(--clr-bg-secondary);
}

/* Alternating cream tiles for visual rhythm */
.review-theme:nth-child(2),
.review-theme:nth-child(5) {
  background: var(--clr-bg-secondary);
}

.review-theme:nth-child(2):hover,
.review-theme:nth-child(5):hover {
  background: var(--clr-bg-primary);
}

.review-theme__stars {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--clr-gold-champ);
  flex-shrink: 0;
}

.review-theme__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  font-weight: var(--fw-light);
  color: var(--clr-text-primary);
  line-height: 1.25;
}

.review-theme__body {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  flex-grow: 1;
}

.review-theme__note {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--clr-text-tertiary);
  padding-top: var(--space-3);
  border-top: var(--border-thin-gold);
  margin-top: auto;
}

/* ---- Google CTA block ---- */
.reviews-cta {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) var(--container-px);
  border-top: var(--border);
  background: var(--clr-bg-secondary);
}

.reviews-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: var(--fw-light);
  color: var(--clr-text-primary);
  margin-bottom: var(--space-3);
}

.reviews-cta__body {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--clr-text-secondary);
  margin-bottom: var(--space-7);
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: var(--space-7);
}

.reviews-cta__google {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: #fff;
  border: 1px solid var(--clr-border);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-primary);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.reviews-cta__google:hover {
  border-color: var(--clr-gold-champ);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.reviews-cta__google-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* ---- Responsive: reviews ---- */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   33. LOCATION SECTION
   ============================================================ */

.location-section {
  background: var(--clr-bg-primary);
  overflow: hidden;
}

.location-section__grid {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 480px;
}

/* ---- Left: info panel ---- */
.location-section__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
  border-right: var(--border);
}

.location-section__eyebrow {
  margin-bottom: var(--space-5);
}

.location-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.2vw, 2.75rem);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
  margin-bottom: var(--space-8);
}

/* Info rows: icon + text */
.location-section__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-8);
}

.location-section__row {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) 0;
  border-bottom: var(--border);
}

.location-section__row:first-child {
  border-top: var(--border);
}

.location-section__row-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--clr-gold-champ);
  opacity: 0.8;
}

.location-section__row-content {
  flex: 1;
}

.location-section__row-label {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-tertiary);
  display: block;
  margin-bottom: var(--space-1);
}

.location-section__row-value {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-primary);
}

.location-section__row-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base);
}

.location-section__row-value a:hover {
  border-bottom-color: var(--clr-gold-champ);
}

.location-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ---- Right: map column ---- */
.location-section__map-col {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg-secondary);
  display: flex;
  flex-direction: column;
}

.location-section__map-frame {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: saturate(0.6) contrast(1.05);
  transition: filter var(--transition-slow);
}

.location-section__map-frame:hover {
  filter: saturate(0.9) contrast(1.02);
}

/* Map fallback / overlay if iframe blocked */
.location-section__map-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    148deg,
    #1a1510 0%, #2e2416 20%, #4a3820 40%,
    #6a5230 58%, #8a7040 72%, #a08850 84%, #b4a060 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8);
  text-align: center;
}

.location-section__map-fallback p {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(238, 231, 218, 0.70);
  max-width: 30ch;
}

/* Responsive: location */
@media (max-width: 900px) {
  .location-section__grid {
    grid-template-columns: 1fr;
  }

  .location-section__map-col {
    order: -1;
    height: clamp(240px, 50vw, 380px);
  }

  .location-section__map-frame {
    min-height: 0;
    height: 100%;
  }

  .location-section__info {
    border-right: none;
    border-top: var(--border);
    padding: clamp(2rem, 5vw, 3.5rem) var(--container-px);
  }
}


/* ============================================================
   34. BOOKING SECTION
   ============================================================ */

.booking-section {
  background: var(--clr-bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Top gold rule */
.booking-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-gold-champ), transparent);
}

.booking-section__grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0;
  min-height: 520px;
}

/* ---- Left: editorial context panel ---- */
.booking-section__context {
  background: var(--clr-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 4.5vw, 4rem);
  position: relative;
  overflow: hidden;
}

/* Decorative serif watermark */
.booking-section__context::before {
  content: '予';
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: var(--font-serif);
  font-size: 16rem;
  font-weight: var(--fw-light);
  line-height: 1;
  color: rgba(185, 150, 82, 0.05);
  pointer-events: none;
  user-select: none;
}

.booking-section__eyebrow {
  color: var(--clr-gold-champ);
  margin-bottom: var(--space-5);
}

.booking-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: var(--fw-light);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--clr-bg-primary);
  margin-bottom: var(--space-6);
}

.booking-section__heading em {
  font-style: italic;
  color: var(--clr-gold-soft);
}

.booking-section__rule {
  width: 2rem;
  height: 1px;
  background: var(--clr-gold-champ);
  margin-bottom: var(--space-6);
  flex-shrink: 0;
}

.booking-section__body {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: 1.75;
  color: rgba(238, 231, 218, 0.68);
  max-width: 36ch;
  margin-bottom: var(--space-8);
}

.booking-section__quick {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.booking-section__quick-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(238, 231, 218, 0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(185, 150, 82, 0.15);
  padding-bottom: var(--space-3);
  transition: color var(--transition-base);
}

.booking-section__quick-link:last-child {
  border-bottom: none;
}

.booking-section__quick-link:hover {
  color: var(--clr-gold-soft);
}

.booking-section__quick-link svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  color: var(--clr-gold-champ);
  opacity: 0.7;
}

/* ---- Right: form panel ---- */
.booking-section__form-col {
  background: var(--clr-bg-primary);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- The form ---- */
.booking-form {
  width: 100%;
  max-width: 560px;
}

.booking-form__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: var(--fw-light);
  color: var(--clr-text-primary);
  margin-bottom: var(--space-6);
}

/* Two-field row */
.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

/* Field group */
.booking-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-5);
  position: relative;
}

.booking-form__label {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-tertiary);
  display: block;
  margin-bottom: var(--space-1);
  transition: color var(--transition-base);
}

.booking-form__group:focus-within .booking-form__label {
  color: var(--clr-gold-champ);
}

/* Shared field style — clean underline approach */
.booking-form__input,
.booking-form__select,
.booking-form__textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-border);
  border-radius: 0;
  padding: var(--space-3) 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--clr-text-primary);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition-base);
}

.booking-form__input::placeholder,
.booking-form__textarea::placeholder {
  color: var(--clr-text-tertiary);
  opacity: 0.6;
}

.booking-form__input:focus,
.booking-form__select:focus,
.booking-form__textarea:focus {
  border-bottom-color: var(--clr-gold-champ);
  /* Visible focus indicator for keyboard navigation (WCAG 2.4.11) */
  outline: 2px solid rgba(185, 150, 82, 0.35);
  outline-offset: 2px;
}

/* Select custom arrow */
.booking-form__select-wrap {
  position: relative;
}

.booking-form__select-wrap::after {
  content: '';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-25%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--clr-gold-champ);
  border-bottom: 1px solid var(--clr-gold-champ);
  pointer-events: none;
}

.booking-form__textarea {
  resize: vertical;
  min-height: 80px;
  padding-top: var(--space-3);
}

/* Error state */
.booking-form__input.is-error,
.booking-form__select.is-error,
.booking-form__textarea.is-error {
  border-bottom-color: #c0392b;
}

.booking-form__error {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: #c0392b;
  margin-top: var(--space-1);
  display: none;
}

.booking-form__group.has-error .booking-form__error {
  display: block;
}

/* Submit area */
.booking-form__footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: var(--border);
}

.booking-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: 100%;
}

.booking-form__note {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--clr-text-tertiary);
  text-align: center;
  line-height: 1.6;
}

/* ---- Success state ---- */
.booking-success {
  display: none;
  text-align: center;
  padding: var(--space-10) var(--space-6);
}

.booking-success__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto var(--space-5);
  color: var(--clr-gold-champ);
}

.booking-success__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-light);
  color: var(--clr-text-primary);
  margin-bottom: var(--space-4);
}

.booking-success__body {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  max-width: 40ch;
  margin-inline: auto;
  margin-bottom: var(--space-7);
}

/* Responsive: booking */
@media (max-width: 960px) {
  .booking-section__grid {
    grid-template-columns: 1fr;
  }

  .booking-section__context {
    padding: clamp(2.5rem, 6vw, 4rem) var(--container-px);
  }

  .booking-section__context::before {
    font-size: 10rem;
  }

  .booking-section__form-col {
    padding: clamp(2rem, 5vw, 3.5rem) var(--container-px);
  }

  .booking-form {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .booking-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}


/* ============================================================
   35. OFFER POPUP
   ============================================================ */

/* ---- Backdrop ---- */
.offer-popup {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal, 900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-popup.is-visible {
  opacity: 1;
  pointer-events: all;
}

.offer-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(39, 35, 31, 0.68);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* ---- Modal shell ---- */
.offer-popup__modal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 38% 62%;
  width: 100%;
  max-width: 780px;
  max-height: min(88vh, 560px);
  background: var(--clr-bg-primary);
  border: 1px solid var(--clr-gold-champ);
  box-shadow: 0 24px 64px rgba(39, 35, 31, 0.22), 0 4px 16px rgba(39, 35, 31, 0.12);
  overflow: hidden;
  transform: scale(0.95) translateY(12px);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.offer-popup.is-visible .offer-popup__modal {
  transform: scale(1) translateY(0);
}

/* Top champagne gold accent line */
.offer-popup__modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--clr-gold-soft), var(--clr-gold-champ), var(--clr-gold-soft));
  z-index: 2;
}

/* ---- Image panel (left) ---- */
.offer-popup__image-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    162deg,
    #1e1208 0%, #3a200e 20%, #6e4420 40%,
    #9a6832 58%, #bc8c42 74%, #cca452 86%,
    #d8b862 94%, #e4cc78 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
}

/* Large watermark serif on image panel */
.offer-popup__image-panel::after {
  content: '30';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 9rem;
  font-weight: var(--fw-light);
  line-height: 1;
  color: rgba(255, 255, 255, 0.10);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.offer-popup__image-badge {
  position: relative;
  z-index: 1;
  background: var(--clr-gold-champ);
  color: var(--clr-deep);
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.625rem;
  display: inline-block;
}

/* ---- Content panel (right) ---- */
.offer-popup__content {
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

/* Close button */
.offer-popup__close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  /* 44 × 44 px touch target (WCAG 2.5.8) */
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text-tertiary);
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color var(--transition-base), color var(--transition-base);
  padding: 0;
}

.offer-popup__close:hover {
  background: var(--clr-bg-secondary);
  color: var(--clr-text-primary);
}

/* Eyebrow */
.offer-popup__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold-champ);
  display: block;
  margin-bottom: var(--space-4);
  padding-right: 2rem; /* space for close button */
}

/* Heading */
.offer-popup__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: var(--fw-light);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
  margin-bottom: var(--space-4);
}

/* Offer highlight tag */
.offer-popup__offer-tag {
  display: inline-block;
  background: var(--clr-bg-secondary);
  border: 1px solid var(--clr-gold-soft);
  color: var(--clr-gold-champ);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: var(--fw-light);
  letter-spacing: -0.02em;
  padding: 0.3rem 0.875rem;
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

/* Body */
.offer-popup__body {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

/* Urgency note */
.offer-popup__urgency {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--clr-gold-champ);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.offer-popup__urgency::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gold-champ);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* Primary CTA */
.offer-popup__cta {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
}

/* Dismiss link */
.offer-popup__dismiss {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--clr-text-tertiary);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-align: center;
  padding: 0.5rem;
  width: 100%;
  transition: color var(--transition-base);
  min-height: 2.75rem; /* large touch target */
}

.offer-popup__dismiss:hover {
  color: var(--clr-text-secondary);
}

/* Mobile: collapse to single column */
@media (max-width: 580px) {
  .offer-popup {
    padding: 0.75rem;
    align-items: flex-end; /* sheet from bottom */
  }

  .offer-popup__modal {
    grid-template-columns: 1fr;
    max-height: 82vh;
    border-radius: 0; /* flat sheet */
  }

  .offer-popup__image-panel {
    display: none; /* hide image on small screens to save space */
  }

  .offer-popup__content {
    padding: 1.75rem 1.25rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-popup,
  .offer-popup__modal {
    transition: none;
  }
}


/* ============================================================
   36. MOBILE BOTTOM ACTION BAR (3 buttons)
   ============================================================ */

.phone-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky, 100);
  background: var(--clr-deep);
  border-top: 1px solid rgba(185, 150, 82, 0.25);
  padding: 0.625rem var(--space-3) calc(0.625rem + env(safe-area-inset-bottom));
  display: none; /* shown via media query below */
}

.phone-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  max-width: 480px;
  margin-inline: auto;
}

/* Each action button in the bar */
.phone-bar__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.5rem 0.25rem;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid transparent;
  transition: background-color var(--transition-base), border-color var(--transition-base);
  min-height: 3rem;
}

.phone-bar__action--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #1da851;
}

.phone-bar__action--whatsapp:hover {
  background: #1da851;
}

.phone-bar__action--call {
  background: rgba(255,255,255,0.06);
  color: var(--clr-bg-primary);
  border-color: rgba(185, 150, 82, 0.2);
}

.phone-bar__action--call:hover {
  background: rgba(185, 150, 82, 0.12);
  border-color: var(--clr-gold-champ);
}

.phone-bar__action--directions {
  background: rgba(255,255,255,0.06);
  color: var(--clr-bg-primary);
  border-color: rgba(185, 150, 82, 0.2);
}

.phone-bar__action--directions:hover {
  background: rgba(185, 150, 82, 0.12);
  border-color: var(--clr-gold-champ);
}

.phone-bar__action svg {
  width: 1.0625rem;
  height: 1.0625rem;
  flex-shrink: 0;
}

.phone-bar__action-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  line-height: 1;
}

/* Show phone bar only on mobile */
@media (max-width: 767px) {
  .phone-bar {
    display: block;
  }

  /* Push page content above bar */
  body {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
}


/* ============================================================
   37. DESKTOP STICKY BOOKING CTA
   ============================================================ */

.sticky-booking {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: var(--z-sticky, 100);
  display: none; /* shown via JS after scroll */
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-2);
  pointer-events: none;
}

.sticky-booking.is-visible {
  pointer-events: all;
}

.sticky-booking__btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--clr-deep);
  color: var(--clr-bg-primary);
  border: 1px solid rgba(185, 150, 82, 0.4);
  padding: 0.625rem 1.125rem;
  min-height: 2.75rem; /* 44px touch target */
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(39, 35, 31, 0.25);
  transition: border-color var(--transition-base), background-color var(--transition-base),
              transform var(--transition-base), opacity var(--transition-base);
  opacity: 0;
  transform: translateY(8px);
  will-change: opacity, transform;
}

.sticky-booking.is-visible .sticky-booking__btn {
  opacity: 1;
  transform: translateY(0);
}

.sticky-booking__btn:hover {
  background: var(--clr-text-primary);
  border-color: var(--clr-gold-champ);
}

.sticky-booking__btn svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

/* Offer nudge label above the button */
.sticky-booking__nudge {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold-champ);
  background: var(--clr-deep);
  border: 1px solid rgba(185, 150, 82, 0.3);
  padding: 0.2rem 0.625rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-base) 0.08s, transform var(--transition-base) 0.08s;
}

.sticky-booking.is-visible .sticky-booking__nudge {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop only */
@media (max-width: 767px) {
  .sticky-booking {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sticky-booking {
    display: flex;
  }
}


/* ============================================================
   38. FAQ SECTION
   ============================================================ */

.faq-section {
  background: var(--clr-bg-secondary);
}

.faq-section__header {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.faq-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
}

/* Two-column accordion layout on desktop */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
}

/* Each accordion item */
.faq-item {
  background: var(--clr-bg-secondary);
  border-bottom: var(--border);
  transition: background-color var(--transition-base);
}

.faq-item:nth-child(odd) {
  background: var(--clr-bg-primary);
}

.faq-item:nth-child(odd):hover,
.faq-item:nth-child(odd).is-open {
  background: var(--clr-bg-secondary);
}

.faq-item:nth-child(even):hover,
.faq-item:nth-child(even).is-open {
  background: rgba(247, 243, 234, 0.6);
}

/* Remove bottom border on last two items (bottom row) */
.faq-item:nth-last-child(-n+2) {
  border-bottom: none;
}

/* Question trigger button */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: clamp(1.125rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.875rem);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--clr-text-primary);
  line-height: 1.3;
  transition: color var(--transition-base);
}

.faq-trigger:hover,
.faq-item.is-open .faq-trigger {
  color: var(--clr-text-primary);
}

.faq-item.is-open .faq-trigger {
  color: var(--clr-gold-champ);
}

/* +/– icon */
.faq-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  position: relative;
  color: var(--clr-gold-soft);
  transition: color var(--transition-base);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms;
}

/* Horizontal bar (always visible) */
.faq-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Vertical bar (rotates away on open) */
.faq-icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-icon {
  color: var(--clr-gold-champ);
}

.faq-item.is-open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* Collapsible answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer__inner {
  padding: 0 clamp(1.25rem, 2vw, 1.875rem) clamp(1.25rem, 2vw, 1.5rem);
  border-top: var(--border-thin-gold);
  padding-top: var(--space-4);
}

.faq-answer__text {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  max-width: 56ch;
}

/* WhatsApp inline link in FAQ answers */
.faq-answer__wa {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--clr-gold-champ);
  text-decoration: none;
  font-weight: var(--fw-medium);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base);
}

.faq-answer__wa:hover {
  border-bottom-color: var(--clr-gold-champ);
}

/* Responsive: FAQ */
@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item:nth-last-child(-n+2) {
    border-bottom: var(--border);
  }

  .faq-item:last-child {
    border-bottom: none;
  }
}


/* ============================================================
   39. FINAL CTA SECTION
   ============================================================ */

.final-cta {
  position: relative;
  min-height: clamp(480px, 70vh, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Background: warm property gradient (swap for real photo) */
.final-cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    148deg,
    #120b04 0%, #221408 12%, #3e2210 24%,
    #5e3616 36%, #824c20 48%, #a46c2e 60%,
    #bc843a 70%, #cc9a44 80%, #d4a84e 88%,
    #dcba5e 95%, #e4cc72 100%
  );
  transform: scale(1.03);
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.final-cta.is-visible .final-cta__bg {
  transform: scale(1);
}

/* Deep overlay for text legibility */
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 11, 4, 0.45) 0%,
    rgba(18, 11, 4, 0.62) 50%,
    rgba(18, 11, 4, 0.78) 100%
  );
}

/* Content */
.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: clamp(4rem, 8vw, 7rem) var(--container-px);
  margin-inline: auto;
}

.final-cta__eyebrow {
  color: var(--clr-gold-champ) !important;
  margin-bottom: var(--space-6);
  letter-spacing: 0.2em;
}

.final-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: var(--fw-light);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--clr-bg-primary);
  margin-bottom: var(--space-6);
}

.final-cta__body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: rgba(238, 231, 218, 0.75);
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-10);
}

/* Bottom address strip */
.final-cta__address {
  padding-top: var(--space-7);
  border-top: 1px solid rgba(185, 150, 82, 0.3);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: rgba(238, 231, 218, 0.45);
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__actions .btn {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta__bg {
    transform: none;
    transition: none;
  }
}


/* ============================================================
   40. FOOTER — FULL REDESIGN (Prompt 10)
   ============================================================ */

.footer {
  background: var(--clr-deep);
  color: rgba(238, 231, 218, 0.65);
}

/* ---- Top gold rule ---- */
.footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(185, 150, 82, 0.5), transparent);
}

/* ---- Brand band ---- */
.footer__brand-band {
  padding: clamp(2.5rem, 4vw, 3.5rem) var(--container-px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: var(--fw-light);
  letter-spacing: -0.01em;
  color: var(--clr-bg-primary);
  line-height: 1.1;
  margin-bottom: var(--space-3);
}

.footer__brand-name span {
  color: var(--clr-gold-champ);
}

.footer__brand-desc {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: rgba(238, 231, 218, 0.52);
  max-width: 34ch;
  margin-bottom: var(--space-5);
}

.footer__brand-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Rating chip on the right of brand band */
.footer__rating-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-1);
  flex-shrink: 0;
}

.footer__rating-stars {
  color: var(--clr-gold-champ);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

.footer__rating-text {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(238, 231, 218, 0.45);
}

/* ---- Link columns grid ---- */
.footer__columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 4vw, 3.5rem) var(--container-px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__col-heading {
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(238, 231, 218, 0.4);
  margin-bottom: var(--space-5);
  display: block;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(238, 231, 218, 0.58);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
  display: inline-block;
  padding-bottom: 1px;
}

.footer__link:hover {
  color: var(--clr-gold-soft);
  border-bottom-color: rgba(185, 150, 82, 0.4);
}

.footer__address {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: 1.85;
  color: rgba(238, 231, 218, 0.50);
  font-style: normal;
  margin-bottom: var(--space-5);
}

.footer__contact-link {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(238, 231, 218, 0.58);
  text-decoration: none;
  padding: var(--space-1) 0;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
}

.footer__contact-link:hover {
  color: var(--clr-gold-soft);
  border-bottom-color: rgba(185, 150, 82, 0.4);
}

/* ---- Bottom bar ---- */
.footer__bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding: var(--space-6) var(--container-px);
}

.footer__copy {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: rgba(238, 231, 218, 0.32);
  letter-spacing: 0.02em;
}

.footer__legal-links {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.footer__legal-link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: rgba(238, 231, 218, 0.32);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
}

.footer__legal-link:hover {
  color: rgba(238, 231, 218, 0.6);
}

/* Responsive: footer */
@media (max-width: 900px) {
  .footer__columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__columns {
    grid-template-columns: 1fr;
  }

  .footer__brand-band {
    flex-direction: column;
    gap: var(--space-5);
  }

  .footer__rating-chip {
    align-items: flex-start;
  }

  .footer__bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
}


/* ============================================================
   41. SHARED SECTION ANIMATIONS (Prompt 3)
   ============================================================ */

/* Slide-in from left (for editorial image columns) */
.slide-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide-in from right */
.slide-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .slide-in-left,
  .slide-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ---- Print ---- */
@media print {
  .nav,
  .fab-group,
  .phone-bar,
  .preloader {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}


/* ============================================================
   PROMPT 2 — ANNOUNCEMENT BAR · HEADER · HERO · TRUST STRIP
   ============================================================ */

/* Additional root tokens for header heights */
:root {
  --bar-height:    2.25rem;
  --nav-height:    5rem;
  --header-total:  calc(var(--bar-height) + var(--nav-height));
}


/* ============================================================
   21. SITE HEADER WRAPPER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  /* transparent → ivory on scroll (transition on .nav) */
}

/* Override old standalone .nav positioning — now lives inside .site-header */
.site-header .nav {
  position: static;   /* parent .site-header is fixed */
  background: transparent;
  transition: background-color var(--transition-slow),
              box-shadow var(--transition-slow),
              border-bottom-color var(--transition-slow);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled .nav {
  background-color: rgba(247, 243, 234, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--clr-border), 0 4px 20px rgba(41, 35, 30, 0.06);
  border-bottom-color: rgba(185, 150, 82, 0.35);
}

/* Nav text: white over hero, dark after scroll */
.site-header .nav__logo,
.site-header .nav__link {
  color: rgba(247, 243, 234, 0.92);
  transition: color var(--transition-slow), opacity var(--transition-fast);
}

.site-header.is-scrolled .nav__logo,
.site-header.is-scrolled .nav__link {
  color: var(--clr-text-primary);
}

.site-header .nav__link:hover {
  color: var(--clr-gold-soft);
  opacity: 1;
}

.site-header.is-scrolled .nav__link:hover {
  color: var(--clr-gold-champ);
}

.site-header .nav__link::after {
  background: var(--clr-gold-soft);
}

.site-header.is-scrolled .nav__link::after {
  background: var(--clr-gold-champ);
}

/* Logo sub-label colour in transparent state */
.site-header .nav__logo span {
  color: var(--clr-gold-soft);
}

.site-header.is-scrolled .nav__logo span {
  color: var(--clr-gold-champ);
}

/* Desktop nav inner height */
.site-header .nav__inner {
  height: var(--nav-height);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  transition: height var(--transition-slow);
}

.site-header.is-scrolled .nav__inner {
  height: calc(var(--nav-height) - 0.75rem);
}

/* Mobile CTA cluster (WhatsApp + hamburger) */
.nav__mobile-ctas {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-left: auto;
}

/* On desktop the mobile cluster is empty — remove it entirely so its
   margin-left:auto doesn't swallow the space-between distribution */
@media (min-width: 1024px) {
  .nav__mobile-ctas {
    display: none;
  }
}

/* "Call" text link in nav */
.nav__call-link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.nav__call-link:hover {
  opacity: 1;
}


/* ============================================================
   22. ANNOUNCEMENT BAR
   ============================================================ */

.announcement-bar {
  background: var(--clr-deep);
  height: var(--bar-height);
  display: flex;
  align-items: center;
  transition: height var(--transition-slow), opacity var(--transition-slow);
  overflow: hidden;
}

.announcement-bar__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.announcement-bar__left {
  font-family: var(--font-sans);
  font-size: clamp(0.5625rem, 1vw, 0.6875rem);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(224, 201, 143, 0.7);  /* soft gold, understated */
  white-space: nowrap;
}

/* Subtle pulse dot for "availability" — no flashing, just a quiet indicator */
.announcement-bar__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #6dbf7e;      /* soft green — available */
  border-radius: var(--radius-full);
  margin-right: var(--space-2);
  vertical-align: middle;
  position: relative;
  top: -1px;
  flex-shrink: 0;
}

.announcement-bar__right {
  font-family: var(--font-sans);
  font-size: clamp(0.5625rem, 1vw, 0.6875rem);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.announcement-bar__right:hover {
  color: var(--clr-gold-soft);
}

/* Thin separator between left/right text */
.announcement-bar__sep {
  width: 1px;
  height: 0.875rem;
  background: rgba(217, 206, 189, 0.15);
  flex-shrink: 0;
}

/* Hide bar on very small mobile to save space */
@media (max-width: 414px) {
  .announcement-bar {
    display: none;
  }
  :root {
    --header-total: var(--nav-height);
  }
}


/* ============================================================
   23. MOBILE NAV PANEL (slide-down, refined)
   ============================================================ */

/* Replace the full-screen drawer with a refined dropdown panel */
.nav__panel {
  display: none;   /* shown via JS */
  position: absolute;
  top: 100%;       /* directly below the nav bar */
  left: 0;
  right: 0;
  background: rgba(247, 243, 234, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-gold);
  box-shadow: 0 12px 40px rgba(41, 35, 30, 0.14);
  padding: var(--space-6) var(--container-px) var(--space-8);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity var(--transition-base),
              transform var(--transition-base),
              visibility var(--transition-base);
  pointer-events: none;
}

.nav__panel.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.nav__panel-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.nav__panel-link {
  display: block;
  padding: var(--space-3) 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide);
  color: var(--clr-text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition-fast), padding-left var(--transition-base);
}

.nav__panel-link:last-child {
  border-bottom: none;
}

.nav__panel-link:hover {
  color: var(--clr-gold-champ);
  padding-left: var(--space-3);
}

.nav__panel-cta {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: var(--border-gold);
}

.nav__panel-cta .btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
}

/* WhatsApp icon button in mobile nav header row */
.nav__whatsapp-btn {
  display: none;   /* shown on mobile only */
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(247, 243, 234, 0.3);
  border-radius: var(--radius-sm);
  color: rgba(247, 243, 234, 0.85);
  text-decoration: none;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.nav__whatsapp-btn:hover {
  border-color: #25D366;
  color: #25D366;
}

.site-header.is-scrolled .nav__whatsapp-btn {
  border-color: var(--clr-border);
  color: var(--clr-text-secondary);
}

.site-header.is-scrolled .nav__whatsapp-btn:hover {
  border-color: #25D366;
  color: #25D366;
}

/* Hamburger lines — light on dark hero, dark on scrolled */
.site-header .nav__toggle span {
  background: rgba(247, 243, 234, 0.9);
  transition: background var(--transition-slow),
              transform var(--transition-base),
              opacity var(--transition-fast);
}

.site-header.is-scrolled .nav__toggle span {
  background: var(--clr-text-primary);
}


/* ============================================================
   24. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  /* Min-height must accommodate the full content stack (eyebrow + h1 + body +
     rating + CTAs + offer chip + directions + micro-actions ≈ 546px) plus both
     paddings (116px top + 64px bottom) plus the 116px the hero is pulled above
     the viewport by its negative margin-top. Total needed ≈ 842px; 880px gives
     comfortable clearance so the h1 never overlaps the transparent nav. */
  height: clamp(880px, 92vh, 1100px);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  /* Push up to bleed behind fixed header — hero__inner padding-top compensates */
  margin-top: calc(-1 * var(--header-total));
}

/* Hero background photo */
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #1e1408; /* fallback if image is missing */
  background-image: url('/assets/images/dream-premium-spa-bengaluru-reception.jpg');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  /* Subtle scale-up entrance */
  transform: scale(1.04);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero__bg.is-loaded {
  transform: scale(1);
}

/* Gradient overlay — stronger on left (text side), fades right (preserves architecture) */
.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Left-side text overlay */
.hero__overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(22, 14, 8, 0.72) 0%,
    rgba(22, 14, 8, 0.52) 35%,
    rgba(22, 14, 8, 0.22) 60%,
    rgba(22, 14, 8, 0.04) 80%,
    rgba(22, 14, 8, 0.00) 100%
  );
}

/* Bottom vignette (subtle) */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 14, 8, 0.45) 0%,
    rgba(22, 14, 8, 0.0)  38%
  );
}

/* Hero inner container — column flex; content anchored toward the bottom */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  display: flex;
  flex-direction: column;
  /* No padding-top here — the ::before spacer below handles clearance */
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

/* Guaranteed-clearance spacer.
   The hero is pulled header-total (116px) above the viewport so it bleeds
   behind the fixed nav. This spacer must be at least 2 × header-total so
   .hero__content always starts at viewport y ≥ header-total (below the nav),
   no matter how tall the content grows.  flex-grow:1 lets it expand to fill
   any extra vertical space, visually anchoring content toward the bottom. */
.hero__inner::before {
  content: '';
  flex-grow: 1;
  flex-shrink: 0;
  min-height: calc(var(--header-total) * 2);
}

/* Text content block — occupies left ~50% of hero */
.hero__content {
  width: min(56%, 680px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Hero eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold-soft);
  margin-bottom: var(--space-5);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

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

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--clr-gold-champ);
  flex-shrink: 0;
}

/* Hero H1 — large and dominant: the spa name must command the frame */
.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: var(--fw-light);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--clr-bg-primary);
  margin-bottom: var(--space-6);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.25s, transform 0.8s ease 0.25s;
}

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

/* Hero supporting text */
.hero__text {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: rgba(247, 243, 234, 0.78);
  max-width: 46ch;
  margin-bottom: var(--space-6);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

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

/* Trust / rating line */
.hero__rating {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.52s, transform 0.6s ease 0.52s;
}

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

.hero__stars {
  color: var(--clr-gold-warm); /* on-palette warm gold — no IMDb yellow */
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.hero__rating-text {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-regular);
  color: rgba(247, 243, 234, 0.65);
  letter-spacing: var(--ls-wide);
}

.hero__rating-sep {
  width: 1px;
  height: 0.75rem;
  background: rgba(247, 243, 234, 0.25);
  flex-shrink: 0;
}

/* Primary CTA row */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease 0.62s, transform 0.7s ease 0.62s;
}

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

/* Hero primary button — champagne gold, no border-radius */
.hero__actions .btn--primary {
  padding: 0.9375rem 2.25rem;
  font-size: var(--text-xs);
  letter-spacing: var(--ls-widest);
}

/* Hero secondary button — ghost style over dark image */
.hero__actions .btn--ghost {
  padding: 0.9375rem 2.25rem;
  font-size: var(--text-xs);
  letter-spacing: var(--ls-widest);
  border-color: rgba(247, 243, 234, 0.4);
  color: rgba(247, 243, 234, 0.85);
}

.hero__actions .btn--ghost:hover {
  background-color: rgba(247, 243, 234, 0.1);
  border-color: rgba(247, 243, 234, 0.7);
}

/* Micro-actions (Call · WhatsApp · Directions) */
.hero__micro-actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease 0.74s, transform 0.6s ease 0.74s;
}

.hero__micro-actions.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__micro-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: clamp(0.625rem, 1.1vw, 0.6875rem);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hero__micro-link:hover {
  color: var(--clr-gold-soft);
}

.hero__micro-sep {
  width: 1px;
  height: 0.75rem;
  background: rgba(247, 243, 234, 0.18);
  flex-shrink: 0;
}

/* Scroll indicator (subtle) */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: var(--container-px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  animation: scrollHintFade 1s ease 1.4s forwards;
}

@keyframes scrollHintFade {
  to { opacity: 0.4; }
}

.hero__scroll-hint span {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.6);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(185,150,82,0.6), transparent);
  animation: scrollLineDrop 1.6s ease 1.6s infinite;
}

@keyframes scrollLineDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Fallback gradient (shown while the hero photo loads) */
.hero__bg--placeholder {
  background-image:
    linear-gradient(
      145deg,
      #160d06 0%,
      #2e1a0c 18%,
      #5c3820 35%,
      #8a5c2e 50%,
      #b07c3a 65%,
      #c49442 78%,
      #d4a84a 90%,
      #ddb85e 100%
    ) !important;
}


/* ============================================================
   25. TRUST STRIP
   ============================================================ */

.trust-strip {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding-block: clamp(1.25rem, 3vw, 1.75rem);
}

.trust-strip__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-strip__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 0;
}

.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-3) clamp(1.25rem, 3.5vw, 2.5rem);
  position: relative;
  flex: 1;
  min-width: 130px;
}

/* Thin vertical separator between items */
.trust-strip__item + .trust-strip__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--clr-border);
}

.trust-strip__value {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-light);
  line-height: 1.1;
  color: var(--clr-text-primary);
  letter-spacing: -0.01em;
}

.trust-strip__value--gold {
  color: var(--clr-gold-champ);
}

.trust-strip__stars {
  color: var(--clr-gold-warm); /* on-palette, replaces off-spec #e6b830 */
  font-size: 0.625rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 2px;
}

.trust-strip__label {
  font-family: var(--font-sans);
  font-size: clamp(0.5625rem, 1vw, 0.6875rem);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-secondary);
  margin-top: var(--space-1);
  line-height: 1.3;
  white-space: nowrap;
}

/* Responsive trust strip */
@media (max-width: 768px) {
  .trust-strip__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
  }

  .trust-strip__item {
    padding: var(--space-4) var(--space-4);
    min-width: 0;
  }

  /* Reset separator and add grid-based borders */
  .trust-strip__item + .trust-strip__item::before {
    display: none;
  }

  .trust-strip__item:nth-child(n+4) {
    border-top: 1px solid var(--clr-border);
  }

  .trust-strip__item:not(:nth-child(3n)) {
    border-right: 1px solid var(--clr-border);
  }
}

@media (max-width: 414px) {
  .trust-strip__list {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip__item:not(:nth-child(3n)) {
    border-right: none;
  }

  .trust-strip__item:not(:nth-child(2n)) {
    border-right: 1px solid var(--clr-border);
  }

  .trust-strip__item:nth-child(n+3) {
    border-top: 1px solid var(--clr-border);
  }

  .trust-strip__item:nth-child(n+4) {
    border-top: none;
  }
}


/* ============================================================
   26. HERO RESPONSIVE
   ============================================================ */

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    /* Tablet content stack is shorter (~470px) but same clearance math applies */
    height: clamp(780px, 88vh, 950px);
  }

  .hero__content {
    width: min(70%, 560px);
  }

  .hero__h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero {
    /* height:auto lets long wrapped headlines grow the hero instead of
       overflowing upward under the fixed header (visible at ≤360px) */
    height: auto;
    min-height: clamp(500px, 78vh, 720px);
    min-height: clamp(500px, 78svh, 720px);
  }

  /* Grow the spacer rather than adding padding-top; keeps the guarantee */
  .hero__inner::before {
    min-height: calc(var(--header-total) * 2 + 2rem);
  }

  .hero__bg {
    background-position: 65% 25%;  /* shift right to show architecture */
  }

  /* On mobile overlay covers more of the hero for readability */
  .hero__overlay::before {
    background: linear-gradient(
      to top,
      rgba(22, 14, 8, 0.80) 0%,
      rgba(22, 14, 8, 0.55) 45%,
      rgba(22, 14, 8, 0.20) 75%,
      rgba(22, 14, 8, 0.00) 100%
    );
  }

  .hero__inner {
    padding-bottom: 2.5rem;
  }

  .hero__content {
    width: 100%;
  }

  .hero__h1 {
    font-size: clamp(2.125rem, 8vw, 2.875rem);
  }

  .hero__text {
    max-width: 100%;
    font-size: 0.9375rem; /* slightly larger for legibility over hero image */
  }

  .hero__scroll-hint {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile nav panel — responsive display */
@media (max-width: 1023px) {
  .site-header .nav__links,
  .site-header .nav__cta .btn--primary,
  .site-header .nav__call-link {
    display: none;
  }

  .nav__whatsapp-btn,
  .site-header .nav__toggle {
    display: flex;
  }

  .nav__panel {
    display: block;  /* controlled by visibility/opacity, not display */
  }
}

@media (min-width: 1024px) {
  .nav__panel,
  .nav__whatsapp-btn,
  .site-header .nav__toggle {
    display: none !important;
  }
}

/* Reduced motion overrides for hero animations */
@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    transform: none;
    transition: none;
  }

  .hero__eyebrow,
  .hero__h1,
  .hero__text,
  .hero__rating,
  .hero__actions,
  .hero__micro-actions {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__scroll-hint {
    animation: none;
    opacity: 0.4;
  }

  .hero__scroll-line {
    animation: none;
  }
}


/* ============================================================
   VIP / VVIP OFFER SECTION
   ============================================================ */

.vip-offer {
  background-color: var(--clr-bg-primary);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

/* Two-column grid */
.vip-offer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* ---- IMAGE COLUMN ---- */
.vip-offer__image-col {
  position: relative;
}

/* Gold frame wrapper */
.vip-offer__frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-image);
}

/* Inset gold border overlay */
.vip-offer__frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(185, 150, 82, 0.45);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

.vip-offer__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vip-offer__frame:hover .vip-offer__img {
  transform: scale(1.03);
}

/* ---- CONTENT COLUMN ---- */
.vip-offer__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Offer badge */
.vip-offer__badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.5rem;
  background: linear-gradient(135deg, rgba(185, 150, 82, 0.08) 0%, rgba(224, 201, 143, 0.12) 100%);
  border: 1px solid rgba(185, 150, 82, 0.3);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  width: fit-content;
}

.vip-offer__badge-pre {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-gold-champ);
  align-self: center;
}

.vip-offer__badge-pct {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: var(--clr-gold-champ);
  letter-spacing: -0.02em;
}

.vip-offer__badge-off {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-gold-warm);
  align-self: center;
}

.vip-offer__badge-sub {
  flex-basis: 100%;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--clr-text-secondary);
  letter-spacing: 0.01em;
  margin-top: 0.125rem;
}

/* Heading */
.vip-offer__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--clr-text-primary);
  margin: 0;
}

.vip-offer__heading em {
  font-style: italic;
  color: var(--clr-gold-champ);
}

/* Body */
.vip-offer__body {
  font-size: var(--text-base);
  color: var(--clr-text-secondary);
  line-height: 1.75;
  max-width: 46ch;
  margin: 0;
}

/* Benefit chips */
.vip-offer__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.vip-offer__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--clr-bg-primary);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 0.4375rem 0.875rem 0.4375rem 0.625rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--clr-text-primary);
  line-height: 1.3;
  white-space: nowrap;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vip-offer__chip:hover {
  border-color: var(--clr-gold-champ);
  box-shadow: var(--shadow-xs);
}

.vip-offer__chip-icon {
  flex-shrink: 0;
}

/* Availability panel */
.vip-offer__avail {
  background-color: var(--clr-bg-primary);
  border: 1px solid rgba(185, 150, 82, 0.35);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.vip-offer__avail-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Pulsing availability dot */
.vip-offer__avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #6db975;
  flex-shrink: 0;
  animation: vip-pulse 2s ease-in-out infinite;
}

@keyframes vip-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

.vip-offer__avail-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-text-primary);
}

.vip-offer__avail-status {
  font-size: var(--text-sm);
  color: var(--clr-text-secondary);
  margin: 0;
}

/* Countdown */
.vip-offer__countdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--clr-border);
}

.vip-offer__countdown-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-gold-champ);
}

.vip-offer__timer {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.vip-offer__time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--clr-bg-secondary);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 0.375rem 0.625rem;
  min-width: 3rem;
}

.vip-offer__time-val {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  color: var(--clr-text-primary);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.vip-offer__time-lbl {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-secondary);
  margin-top: 0.1875rem;
}

.vip-offer__time-sep {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-gold-soft);
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

/* Availability WhatsApp CTA */
.vip-offer__avail-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--clr-gold-champ);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.vip-offer__avail-cta:hover {
  color: var(--clr-gold-warm);
  gap: 0.625rem;
}

/* CTA row */
.vip-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* Disclaimer */
.vip-offer__disclaimer {
  font-size: var(--text-xs);
  color: var(--clr-text-secondary);
  margin: 0;
  opacity: 0.75;
}

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 1024px) {
  .vip-offer__grid {
    grid-template-columns: 1fr;
  }
  .vip-offer__image-col {
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
  .vip-offer__img {
    max-height: 420px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .vip-offer__badge {
    width: 100%;
  }
  .vip-offer__chips {
    gap: 0.5rem;
  }
  .vip-offer__chip {
    white-space: normal;
    flex: 0 0 auto;
  }
  .vip-offer__actions {
    flex-direction: column;
  }
  .vip-offer__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .vip-offer__avail {
    padding: 1rem 1.125rem;
  }
  .vip-offer__time-block {
    min-width: 2.625rem;
    padding: 0.3125rem 0.5rem;
  }
  .vip-offer__time-val {
    font-size: 1.125rem;
  }
}


/* ============================================================
   TODAY'S SPA OFFERS SECTION
   ============================================================ */

.spa-offers {
  background-color: var(--clr-bg-secondary);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

/* Section header */
.spa-offers__header {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.spa-offers__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--clr-text-primary);
  margin-bottom: 1rem;
}

.spa-offers__intro {
  font-size: var(--text-base);
  color: var(--clr-text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* Card grid — 3 equal columns */
.spa-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ---- OFFER CARD ---- */
.offer-card {
  background-color: var(--clr-bg-primary);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.offer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Featured card gets a gold top border accent */
.offer-card--featured {
  border-color: rgba(185, 150, 82, 0.45);
  box-shadow: 0 4px 20px rgba(185, 150, 82, 0.12);
}

.offer-card--featured:hover {
  box-shadow: 0 8px 32px rgba(185, 150, 82, 0.18);
}

/* Card image wrapper */
.offer-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}

.offer-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-card:hover .offer-card__image {
  transform: scale(1.04);
}

/* Category badge */
.offer-card__badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3125rem 0.6875rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.offer-card__badge--gold {
  background-color: rgba(185, 150, 82, 0.92);
  color: #fff;
}

.offer-card__badge--rose {
  background-color: rgba(185, 100, 110, 0.88);
  color: #fff;
}

.offer-card__badge--teal {
  background-color: rgba(70, 140, 130, 0.88);
  color: #fff;
}

/* Card body */
.offer-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.offer-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: var(--clr-text-primary);
  line-height: 1.25;
  margin: 0;
}

.offer-card__desc {
  font-size: var(--text-sm);
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Benefits list */
.offer-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  padding-top: 0.25rem;
}

.offer-card__benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--clr-text-primary);
  line-height: 1.4;
}

.offer-card__benefit-icon {
  flex-shrink: 0;
}

/* Availability note */
.offer-card__avail-note {
  font-size: var(--text-xs);
  color: var(--clr-gold-champ);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
  padding-top: 0.25rem;
  border-top: 1px solid var(--clr-border);
}

/* Card action area — pushes to bottom */
.offer-card__actions {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.offer-card__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: var(--text-sm);
  padding: 0.6875rem 1rem;
}

.offer-card__call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.offer-card__call-link:hover {
  color: var(--clr-gold-champ);
}

/* ---- FOOTER CTA ---- */
.spa-offers__footer {
  text-align: center;
  background-color: var(--clr-bg-primary);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3.5rem);
  max-width: 640px;
  margin-inline: auto;
  box-shadow: var(--shadow-xs);
}

.spa-offers__footer-heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 500;
  color: var(--clr-text-primary);
  margin: 0 0 0.75rem;
}

.spa-offers__footer-body {
  font-size: var(--text-sm);
  color: var(--clr-text-secondary);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 42ch;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.spa-offers__footer-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.spa-offers__disclaimer {
  font-size: var(--text-xs);
  color: var(--clr-text-secondary);
  opacity: 0.7;
  margin: 0;
}

/* ---- RESPONSIVE ---- */

/* Tablet — 2 columns */
@media (max-width: 1024px) {
  .spa-offers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Third card full-width on tablet */
  .spa-offers__grid .offer-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
}

/* Mobile — single column */
@media (max-width: 640px) {
  .spa-offers__grid {
    grid-template-columns: 1fr;
  }
  .spa-offers__grid .offer-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .spa-offers__footer-actions {
    flex-direction: column;
  }
  .spa-offers__footer-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* ============================================================
   12-TREATMENT CARD GRID  (.tx-*)
   ============================================================ */

/* Grid — 3 cols desktop, 2 tablet, 1 mobile */
.tx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

/* ---- CARD SHELL ---- */
.tx-card {
  background: var(--clr-bg-primary);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s;
}

.tx-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(185, 150, 82, 0.35);
}

/* ---- IMAGE ---- */
.tx-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}

.tx-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.tx-card:hover .tx-card__img {
  transform: scale(1.05);
}

/* ---- BADGE ---- */
.tx-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tx-card__badge--gold  { background: rgba(185, 150, 82, 0.9);  color: #fff; }
.tx-card__badge--champ { background: rgba(200, 166, 93, 0.88); color: #fff; }
.tx-card__badge--slate { background: rgba(90, 110, 120, 0.82); color: #fff; }
.tx-card__badge--rose  { background: rgba(170, 90, 100, 0.82); color: #fff; }
.tx-card__badge--sage  { background: rgba(80, 120, 100, 0.82); color: #fff; }

/* ---- BODY ---- */
.tx-card__body {
  padding: 1.25rem 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

/* Category eyebrow */
.tx-card__cat {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold-champ);
}

/* Treatment name */
.tx-card__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--clr-text-primary);
  margin: 0;
}

/* Short description */
.tx-card__desc {
  font-size: var(--text-sm);
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Benefits */
.tx-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--clr-border);
}

.tx-card__benefits li {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: var(--text-sm);
  color: var(--clr-text-primary);
  line-height: 1.4;
}

.tx-card__benefits svg {
  flex-shrink: 0;
}

/* Availability label */
.tx-card__avail {
  font-size: var(--text-xs);
  font-style: italic;
  color: var(--clr-gold-champ);
  margin: 0;
  padding-top: 0.125rem;
}

/* Primary CTA — full width gold button */
.tx-card__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: var(--text-sm);
  padding: 0.625rem 0.875rem;
  margin-top: auto;
}

/* Sub-links row */
.tx-card__sub-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.tx-card__sub-link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--clr-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.tx-card__sub-link:hover {
  color: var(--clr-gold-champ);
}

.tx-card__sub-sep {
  color: var(--clr-border);
  font-size: var(--text-xs);
  user-select: none;
}

/* ---- FOOTER CTA ---- */
.tx-footer {
  text-align: center;
  background: var(--clr-bg-primary);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  max-width: 580px;
  margin-inline: auto;
  box-shadow: var(--shadow-xs);
}

.tx-footer__heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--clr-text-primary);
  margin: 0 0 0.625rem;
}

.tx-footer__body {
  font-size: var(--text-sm);
  color: var(--clr-text-secondary);
  line-height: 1.7;
  max-width: 40ch;
  margin-inline: auto;
  margin-bottom: 1.375rem;
}

.tx-footer__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .tx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tx-grid {
    grid-template-columns: 1fr;
  }
  .tx-footer__actions {
    flex-direction: column;
  }
  .tx-footer__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* ============================================================
   MID-PAGE OFFER BANNER
   ============================================================ */

.offer-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 7rem) 0;
  isolation: isolate;
}

/* Background image layer */
.offer-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.offer-banner__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Warm ivory overlay — high enough opacity to guarantee text legibility over
   the bright golden spa-lobby image while keeping the light-luxury feel */
.offer-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(247, 243, 234, 0.97) 0%,
      rgba(241, 235, 222, 0.95) 50%,
      rgba(230, 218, 195, 0.88) 100%
    );
  z-index: -1;
}

/* Content centred, max-width constrained */
.offer-banner__inner {
  position: relative;
}

.offer-banner__content {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Eyebrow */
.offer-banner__eyebrow {
  color: var(--clr-gold-champ);
  letter-spacing: var(--ls-widest);
}

/* Heading */
.offer-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--clr-text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Body */
.offer-banner__body {
  font-size: clamp(var(--text-base), 1.5vw, 1.125rem);
  color: var(--clr-text-secondary);
  line-height: 1.75;
  max-width: 52ch;
  margin: 0;
}

/* Benefit badge row */
.offer-banner__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.offer-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  background-color: rgba(41, 35, 30, 0.06);
  border: 1px solid rgba(185, 150, 82, 0.35);
  border-radius: 100px;
  padding: 0.4375rem 0.875rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--clr-text-primary);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* CTA row */
.offer-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Primary — uses existing .btn--primary gold fill */
.offer-banner__cta-primary {
  padding-inline: 2rem;
  box-shadow: 0 4px 20px rgba(185, 150, 82, 0.3);
}

/* Secondary — ghost style on light overlay */
.offer-banner__cta-secondary {
  background-color: transparent;
  color: var(--clr-text-primary);
  border: 1px solid rgba(41, 35, 30, 0.35);
  border-radius: var(--radius-base);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 0.8125rem 1.75rem;
  min-height: 2.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.offer-banner__cta-secondary:hover {
  background-color: rgba(41, 35, 30, 0.07);
  border-color: var(--clr-text-primary);
}

/* Mobile */
@media (max-width: 640px) {
  .offer-banner__badges {
    gap: 0.5rem;
  }
  .offer-banner__badge {
    white-space: normal;
    text-align: left;
  }
  .offer-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  .offer-banner__cta-primary,
  .offer-banner__cta-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* ============================================================
   DAILY OFFER CTA SECTION
   ============================================================ */

.daily-offer {
  background-color: var(--clr-bg-secondary);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

/* Two-column grid */
.daily-offer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* ---- IMAGE COLUMN ---- */
.daily-offer__image-col {
  position: relative;
}

/* Outer frame with champagne gold border */
.daily-offer__frame {
  position: relative;
  border: 1px solid rgba(185, 150, 82, 0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-image);
  background: var(--clr-bg-secondary);
}

.daily-offer__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.daily-offer__frame:hover .daily-offer__img {
  transform: scale(1.03);
}

/* Decorative gold corner accents */
.daily-offer__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 1;
  pointer-events: none;
}

.daily-offer__corner--tl {
  top: 12px;
  left: 12px;
  border-top: 1.5px solid rgba(185, 150, 82, 0.55);
  border-left: 1.5px solid rgba(185, 150, 82, 0.55);
}

.daily-offer__corner--br {
  bottom: 12px;
  right: 12px;
  border-bottom: 1.5px solid rgba(185, 150, 82, 0.55);
  border-right: 1.5px solid rgba(185, 150, 82, 0.55);
}

/* ---- CONTENT COLUMN ---- */
.daily-offer__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Label row with pulsing dot */
.daily-offer__label-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.daily-offer__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #6db975;
  flex-shrink: 0;
  animation: vip-pulse 2s ease-in-out infinite;
}

.daily-offer__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold-champ);
}

/* Heading */
.daily-offer__heading {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--clr-text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

.daily-offer__heading em {
  font-style: italic;
  color: var(--clr-gold-champ);
}

/* Body */
.daily-offer__body {
  font-size: var(--text-base);
  color: var(--clr-text-secondary);
  line-height: 1.75;
  max-width: 46ch;
  margin: 0;
}

/* Four feature blocks */
.daily-offer__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.daily-offer__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.daily-offer__feature-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.daily-offer__feature-name {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text-primary);
  line-height: 1.3;
}

.daily-offer__feature-detail {
  display: block;
  font-size: var(--text-xs);
  color: var(--clr-text-secondary);
  line-height: 1.5;
  margin-top: 0.125rem;
}

/* CTA row */
.daily-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.daily-offer__cta {
  padding-inline: 1.875rem;
}

/* Disclaimer */
.daily-offer__note {
  font-size: var(--text-xs);
  color: var(--clr-text-secondary);
  opacity: 0.7;
  margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .daily-offer__grid {
    grid-template-columns: 1fr;
  }
  .daily-offer__image-col {
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .daily-offer__features {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  .daily-offer__actions {
    flex-direction: column;
  }
  .daily-offer__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* ============================================================
   NOT SURE? — CONSULTATION BLOCK  (.consult-block)
   ============================================================ */

.consult-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  background: var(--clr-bg-primary);
  border: 1px solid rgba(185, 150, 82, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* Left — text column */
.consult-block__text {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.consult-block__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--clr-text-primary);
  margin: 0;
}

.consult-block__body {
  font-size: var(--text-base);
  color: var(--clr-text-secondary);
  line-height: 1.75;
  max-width: 44ch;
  margin: 0;
}

.consult-block__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.25rem;
}

.consult-block__call-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text-secondary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.consult-block__call-link:hover {
  color: var(--clr-gold-champ);
}

/* Right — image column (flush to edges, fills height) */
.consult-block__image-col {
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.consult-block__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.consult-block:hover .consult-block__img {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 860px) {
  .consult-block {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  /* Image moves below text on tablet/mobile */
  .consult-block__image-col {
    min-height: 220px;
    order: -1;           /* image on top on mobile */
  }
  .consult-block__text {
    padding: clamp(1.5rem, 4vw, 2rem);
  }
  .consult-block__body {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .consult-block__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .consult-block__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* Footer — Deltanoid credit */
.footer__credit {
  text-align: center;
  padding: 0.625rem var(--space-6) 1rem;
  font-size: var(--text-xs);
  color: rgba(247, 243, 234, 0.38);
  letter-spacing: 0.02em;
}

.footer__credit-link {
  color: rgba(224, 201, 143, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__credit-link:hover {
  color: var(--clr-gold-soft);
}


/* ============================================================
   SHARED CTA GROUP — WhatsApp + Call + Directions
   Used across experience sections, property story, etc.
   ============================================================ */

.exp-section__cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.exp-section__directions-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  padding: 0.25rem 0;
}

.exp-section__directions-link:hover {
  color: var(--clr-gold-champ);
}

/* Hero directions link — subtle, below hero actions */
.hero__directions-link {
  margin-top: 0.75rem;
}

.hero__directions-link a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(247, 243, 234, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.hero__directions-link a:hover {
  color: var(--clr-gold-soft);
}

/* Responsive: stack on small screens */
@media (max-width: 480px) {
  .exp-section__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .exp-section__cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* ============================================================
   FAQ — H3 wrapper for semantic heading hierarchy (SEO)
   Visually transparent — all styling stays on the inner button
   ============================================================ */
.faq-trigger-h3 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}


/* ============================================================
   QUICK ANSWERS — AEO / GEO entity information block
   Real crawlable HTML text, luxury-branded presentation
   ============================================================ */
.quick-answers {
  background: var(--clr-cream, #EEE7DA);
  border-top: 1px solid var(--clr-border, #D9CEBD);
  border-bottom: 1px solid var(--clr-border, #D9CEBD);
  padding: var(--section-py, 5rem) 0;
}

.quick-answers__header {
  text-align: center;
  margin-bottom: 3rem;
}

.quick-answers__heading {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-family: var(--font-display, Georgia, serif);
  color: var(--clr-espresso, #29231E);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .qa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .qa-grid {
    grid-template-columns: 1fr;
  }
}

.qa-card {
  background: var(--clr-ivory, #F7F3EA);
  border: 1px solid var(--clr-border, #D9CEBD);
  border-radius: 0.5rem;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.qa-card__icon {
  color: var(--clr-gold, #B99652);
  display: block;
  margin-bottom: 0.35rem;
}

.qa-card__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-taupe, #71675D);
  font-weight: 600;
}

.qa-card__value {
  font-size: 0.9rem;
  color: var(--clr-espresso, #29231E);
  line-height: 1.65;
  margin: 0;
}

.qa-card__value a {
  color: var(--clr-gold, #B99652);
  text-decoration: none;
  font-weight: 500;
}

.qa-card__value a:hover {
  text-decoration: underline;
}

/* ============================================================
   TREATMENTS — compact service list for AI / SEO discovery
   ============================================================ */
.treatments-section__service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  max-width: 680px;
}

.treatments-section__service-list li {
  font-size: 0.8rem;
  color: var(--clr-taupe, #71675D);
  position: relative;
  padding-left: 0.9rem;
}

.treatments-section__service-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--clr-gold, #B99652);
  font-weight: 700;
}

/* ============================================================
   INTRO — entity intro paragraph
   ============================================================ */
.intro-section__entity {
  font-size: 0.85rem;
  color: var(--clr-taupe, #71675D);
  line-height: 1.7;
  border-left: 2px solid var(--clr-gold, #B99652);
  padding-left: 0.875rem;
  margin-bottom: 1.25rem;
}


/* ============================================================
   INSTANT BOOKING — 4-step WhatsApp booking wizard
   ============================================================ */

/* Section wrapper */
/* ── Instant Booking Section — dark warm-brown theme ──────── */
.ib-section {
  background: #2a2118;
  border-top: none;
}

.ib-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.ib-section__heading {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-family: var(--font-display, Georgia, serif);
  color: #f7f3ea;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.ib-section__intro {
  font-size: 1rem;
  color: rgba(247, 243, 234, 0.6);
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* Wizard card */
.ib-widget {
  max-width: 780px;
  margin: 0 auto;
  background: #332921;
  border: none;
  border-radius: 1.25rem;
  padding: 2.5rem 2.5rem 2.75rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
  .ib-widget { padding: 1.5rem 1.25rem 2rem; }
}

/* ── Progress stepper — horizontal circles with inline labels ── */
.ib-progress {
  margin-bottom: 2.5rem;
}

/* The old track bar is replaced by ::after connector lines on each dot */
.ib-progress__track {
  display: none;
}

.ib-progress__labels {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ib-step-dot {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex: none;
}

/* Connector line between each step */
.ib-step-dot:not(:last-child)::after {
  content: '';
  display: block;
  width: clamp(0.75rem, 3.5vw, 2.5rem);
  height: 1px;
  background: rgba(247, 243, 234, 0.18);
  margin: 0 0.375rem;
}

.ib-step-dot__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(247, 243, 234, 0.1);
  color: rgba(247, 243, 234, 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.ib-step-dot__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(247, 243, 234, 0.3);
  transition: color 0.3s;
  white-space: nowrap;
}

.ib-step-dot--active .ib-step-dot__num {
  background: #c9a24b;
  color: #1f1b16;
}

.ib-step-dot--active .ib-step-dot__label {
  color: rgba(247, 243, 234, 0.9);
  font-weight: 600;
}

.ib-step-dot--done .ib-step-dot__num {
  background: rgba(201, 162, 75, 0.35);
  color: #c9a24b;
}

.ib-step-dot--done .ib-step-dot__label {
  color: rgba(247, 243, 234, 0.45);
}

/* ── Panel ── */
.ib-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ib-panel[hidden] {
  display: none;
}

.ib-panel__title {
  font-size: 1.2rem;
  font-family: var(--font-display, Georgia, serif);
  font-weight: 700;
  color: #f7f3ea;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}

.ib-panel__sub {
  font-size: 0.875rem;
  color: rgba(247, 243, 234, 0.55);
  margin: -1rem 0 1.25rem;
  line-height: 1.6;
}

/* Back button */
.ib-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: rgba(247, 243, 234, 0.45);
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.ib-back-btn:hover { color: rgba(247, 243, 234, 0.9); }

/* ── Step 1 · Treatment grid ── */
.ib-tx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}

@media (max-width: 640px) {
  .ib-tx-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 380px) {
  .ib-tx-grid { grid-template-columns: 1fr; }
}

.ib-tx-btn {
  background: rgba(247, 243, 234, 0.06);
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 0.4rem;
  padding: 0.875rem 0.75rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ib-tx-btn:hover {
  border-color: #c9a24b;
  background: rgba(247, 243, 234, 0.1);
}

.ib-tx-btn--selected {
  border-color: #c9a24b;
  background: #c9a24b;
  box-shadow: 0 2px 12px rgba(185, 150, 82, 0.25);
}

.ib-tx-btn--selected .ib-tx-btn__name {
  color: #1f1b16;
}

.ib-tx-btn__name {
  font-size: 0.82rem;
  color: rgba(247, 243, 234, 0.8);
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.2s;
}

/* ── Step 2 · Chips ── */
.ib-chips-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(247, 243, 234, 0.45);
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: block;
}

.ib-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ib-chip {
  padding: 0.45rem 0.875rem;
  border-radius: 100px;
  border: 1px solid rgba(247, 243, 234, 0.15);
  background: rgba(247, 243, 234, 0.06);
  font-size: 0.82rem;
  color: rgba(247, 243, 234, 0.8);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  font-family: inherit;
  white-space: nowrap;
}

.ib-chip:hover {
  border-color: #c9a24b;
  background: rgba(247, 243, 234, 0.1);
}

.ib-chip--selected {
  background: #c9a24b;
  border-color: #c9a24b;
  color: #1f1b16;
}

/* "Continue" button for steps 2 & 3 */
.ib-next-dt,
.ib-next-name {
  margin-top: 2rem;
  width: 100%;
}

.ib-next-dt:disabled,
.ib-next-name:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Step 3 · Name input ── */
.ib-name-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(247, 243, 234, 0.15);
  border-radius: 0.4rem;
  font-family: inherit;
  font-size: 1rem;
  color: #f7f3ea;
  background: rgba(247, 243, 234, 0.07);
  outline: none;
  box-sizing: border-box;
  margin-bottom: 0;
  transition: border-color 0.2s;
}

.ib-name-input:focus {
  border-color: #c9a24b;
  background: rgba(247, 243, 234, 0.1);
}

.ib-name-input::placeholder {
  color: rgba(247, 243, 234, 0.35);
  opacity: 1;
}

/* ── Step 4 · Booking Summary ── */
.ib-summary {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(247, 243, 234, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0;
}

.ib-summary__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(247, 243, 234, 0.07);
}

.ib-summary__row:last-child {
  border-bottom: none;
}

.ib-summary__lbl {
  font-size: 0.875rem;
  color: rgba(247, 243, 234, 0.45);
  font-weight: 400;
  min-width: 80px;
  letter-spacing: 0;
  text-transform: none;
}

.ib-summary__val {
  font-size: 0.9rem;
  color: #f7f3ea;
  font-weight: 700;
  flex: 1;
  text-align: right;
}

/* ── Confirm action row ── */
.ib-confirm-actions {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: 1.25rem;
}

/* "← Edit" button */
.ib-edit-all-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(247, 243, 234, 0.22);
  border-radius: 0.5rem;
  padding: 0 1.25rem;
  min-height: 52px;
  font-size: 0.875rem;
  font-family: inherit;
  color: rgba(247, 243, 234, 0.65);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.ib-edit-all-btn:hover {
  border-color: rgba(247, 243, 234, 0.45);
  color: #f7f3ea;
}

/* WhatsApp confirm — full green */
.ib-wa-confirm {
  flex: 1;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  min-height: 52px;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}

.ib-wa-confirm:hover {
  background: #1dba59;
  color: #fff;
}

.ib-chip:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.ib-panel__title:focus { outline: none; }

/* ============================================================
   RESPONSIVE HARDENING — booking wizard, FAQ & booking form
   Small phone fixes: 320–480px
   ============================================================ */

/* ── Wizard stepper: at ≤480px the 4 labels + connectors total
   ~520px inside a ~280px content area — hide text labels,
   keep number circles only so the bar stays within bounds. ── */
@media (max-width: 480px) {
  .ib-step-dot__label {
    display: none;
  }

  /* Widen connectors slightly since label width is freed up */
  .ib-step-dot:not(:last-child)::after {
    width: clamp(1.5rem, 8vw, 3rem);
    margin: 0 0.5rem;
  }
}

/* ── Wizard confirm actions: stack Edit + WhatsApp buttons
   vertically on narrow phones so neither button is clipped. ── */
@media (max-width: 480px) {
  .ib-confirm-actions {
    flex-direction: column;
  }

  .ib-edit-all-btn {
    width: 100%;
    min-height: 48px;
  }

  .ib-wa-confirm {
    width: 100%;
  }
}

/* ── Wizard name input: ensure ≥48px touch target ── */
.ib-name-input {
  min-height: 48px;
}

/* ── Booking form inputs/selects: ensure ≥48px touch targets ──
   The underline-style inputs use padding: 12px 0 + ~20px font
   which lands at ~44px. min-height guarantees the WCAG target. ── */
.booking-form__input,
.booking-form__select {
  min-height: 48px;
  padding-block: var(--space-3);
}

/* ── FAQ answer text: prevent long unbreakable strings from
   causing horizontal overflow on very narrow screens ── */
.faq-answer__text {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ============================================================
   RESPONSIVE HARDENING — small screens (≤380px)
   Long button labels wrap instead of clipping the viewport.
   ============================================================ */
@media (max-width: 380px) {
  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}

/* Mobile menu CTAs stack on narrow phones so the long Call label
   never forces horizontal overflow (381–414px included) */
@media (max-width: 414px) {
  .nav__panel-cta {
    flex-direction: column;
  }

  .nav__panel-cta .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}

/* Anchored sections land below the fixed header when navigated to */
section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-total) + 1rem);
}

/* ============================================================
   CONVERSION ELEMENTS — offer chip + conversion strips
   ============================================================ */

/* Hero first-visit offer chip */
.hero__offer-chip {
  display: inline-flex;
  width: fit-content;
  align-self: flex-start;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
  padding: 0.5rem 1.125rem 0.5rem 0.5rem;
  border: 1px solid rgba(247, 243, 234, 0.35);
  border-radius: 999px;
  background: rgba(31, 27, 22, 0.45);
  color: var(--clr-bg-primary, #f7f3ea);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, background-color 0.2s ease;
  min-height: 44px;
}
.hero__offer-chip:hover {
  border-color: rgba(201, 162, 75, 0.8);
  background: rgba(31, 27, 22, 0.65);
}
.hero__offer-chip-tag {
  display: inline-block;
  padding: 0.3125rem 0.75rem;
  border-radius: 999px;
  background: #c9a24b;
  color: #1f1b16;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

/* Conversion strips */
.convert-strip {
  background: linear-gradient(135deg, #f4ecdd 0%, #efe3cc 100%);
  border-top: 1px solid rgba(185, 150, 82, 0.25);
  border-bottom: 1px solid rgba(185, 150, 82, 0.25);
  padding: 3rem 0;
}
.convert-strip--dark {
  background: linear-gradient(135deg, #2a2118 0%, #3a2d1d 100%);
  border-top: none;
  border-bottom: none;
}
.convert-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.convert-strip__eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a07f35;
  margin-bottom: 0.5rem;
}
.convert-strip--dark .convert-strip__eyebrow { color: #d8b56a; }
.convert-strip__heading {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  line-height: 1.3;
  color: #2b2418;
  margin: 0 0 0.375rem;
}
.convert-strip--dark .convert-strip__heading { color: #f7f3ea; }
.convert-strip__heading strong { color: #a07f35; }
.convert-strip--dark .convert-strip__heading strong { color: #d8b56a; }
.convert-strip__sub {
  font-size: 0.9375rem;
  color: #6b5f4a;
  margin: 0;
}
.convert-strip--dark .convert-strip__sub { color: rgba(247, 243, 234, 0.75); }
.convert-strip__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Star rating row (Strip C) */
.convert-strip__stars {
  font-size: 1.25rem;
  color: #c9a24b;
  letter-spacing: 0.1em;
  margin: 0 0 0.25rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .convert-strip { padding: 2.5rem 0; }
  .convert-strip__inner { flex-direction: column; align-items: flex-start; }
  .convert-strip__actions { width: 100%; flex-direction: column; align-items: stretch; }
  .convert-strip__actions .btn { width: 100%; }
  .hero__offer-chip { font-size: 0.8125rem; }
}

/* ============================================================
   PHOTO-CTA — full-bleed background image conversion block
   (Strip B, after Gallery)
   ============================================================ */
.photo-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 7rem) 0;
  isolation: isolate;
}

.photo-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.photo-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.photo-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 12, 5, 0.84) 0%,
    rgba(22, 14, 6, 0.74) 55%,
    rgba(22, 14, 6, 0.60) 100%
  );
  z-index: -1;
}

.photo-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.photo-cta__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #c9a24b;
  margin: 0;
}

.photo-cta__heading {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: #f7f3ea;
  margin: 0;
  letter-spacing: -0.01em;
}

.photo-cta__heading strong {
  color: #c9a24b;
  font-weight: 600;
}

.photo-cta__sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: rgba(247, 243, 234, 0.75);
  margin: 0;
  max-width: 48ch;
  line-height: 1.65;
}

.photo-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Large WhatsApp green button */
.photo-cta__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body, sans-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.9375rem 2rem;
  border-radius: var(--radius-base, 4px);
  transition: background 0.2s, transform 0.15s;
}

.photo-cta__wa:hover {
  background: #1dba59;
  transform: translateY(-1px);
  color: #fff;
}

/* Ghost call button */
.photo-cta__call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: rgba(247, 243, 234, 0.85);
  text-decoration: none;
  font-family: var(--font-body, sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.9375rem 1.75rem;
  border-radius: var(--radius-base, 4px);
  border: 1px solid rgba(247, 243, 234, 0.3);
  transition: border-color 0.2s, color 0.2s;
}

.photo-cta__call:hover {
  border-color: rgba(247, 243, 234, 0.7);
  color: #f7f3ea;
}

@media (max-width: 640px) {
  .photo-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }
  .photo-cta__wa,
  .photo-cta__call {
    justify-content: center;
    text-align: center;
  }
}


/* ============================================================
   MOBILE RESPONSIVENESS PASS 1 — DREAM PREMIUM SPA
   All fixes are additive — desktop styles are NOT changed.
   ============================================================ */

/* ---- Global overflow guard -------------------------------- */
img, video, iframe, embed, object {
  max-width: 100%;
}

/* ---- 1. GALLERY SECTION ----------------------------------- */

.gallery-section {
  background: var(--clr-bg-secondary);
  padding-block: var(--section-py);
  border-top: var(--border);
  border-bottom: var(--border);
}

.gallery-section .eyebrow {
  display: block;
  text-align: center;
}

.gallery-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
  text-align: center;
  margin-block: var(--space-5) clamp(2rem, 4vw, 3rem);
}

/* Gallery filter tabs */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-block-end: clamp(1.5rem, 3vw, 2.5rem);
}

.gallery-tab {
  padding: var(--space-2) var(--space-5);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-secondary);
  background: transparent;
  border: var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.gallery-tab:hover {
  color: var(--clr-gold-champ);
  border-color: var(--clr-gold-champ);
}

.gallery-tab--active {
  color: var(--clr-bg-primary);
  background: var(--clr-gold-champ);
  border-color: var(--clr-gold-champ);
}

/* Gallery grid — 4-column masonry-style */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--space-3);
  margin-block-end: var(--space-8);
}

.gallery-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    var(--clr-bg-secondary) 0%,
    rgba(185, 150, 82, 0.07) 50%,
    var(--clr-bg-secondary) 100%
  );
  border: var(--border);
  cursor: pointer;
}

.gallery-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-frame:hover img {
  transform: scale(1.04);
}

.gallery-frame--wide {
  grid-column: span 2;
}

/* Caption overlay — shown on hover */
.gallery-frame__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) var(--space-5) var(--space-3);
  background: linear-gradient(to top, rgba(39, 35, 31, 0.72) 0%, transparent 100%);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.92);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
}

.gallery-frame:hover .gallery-frame__caption {
  opacity: 1;
  transform: translateY(0);
}

/* Hidden frame (filtered out) */
.gallery-frame[hidden] {
  display: none;
}

/* Gallery note */
.gallery-note {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-secondary);
  opacity: 0.72;
}

.gallery-note::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--clr-gold-champ);
  margin: 0 auto var(--space-5);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(27, 23, 19, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  cursor: zoom-out;
  animation: lb-fade-in 0.25s ease forwards;
}

@keyframes lb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 243, 234, 0.12);
  border: 1px solid rgba(247, 243, 234, 0.24);
  border-radius: var(--radius-full);
  color: var(--clr-bg-primary);
  cursor: pointer;
  transition: background var(--transition-fast);
  z-index: 1;
}

.gallery-lightbox__close:hover {
  background: rgba(247, 243, 234, 0.24);
}

.gallery-lightbox__inner {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  cursor: default;
}

.gallery-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.gallery-lightbox__caption {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.6);
  text-align: center;
  max-width: 100%;
  margin: 0;
}

/* ── Gallery responsive breakpoints ──────────────────────── */
@media (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-frame--wide {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .gallery-tabs {
    gap: var(--space-2);
  }

  .gallery-tab {
    padding: var(--space-2) var(--space-4);
    font-size: 0.625rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-frame--wide {
    grid-column: span 2;
  }

  .gallery-frame__caption {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 414px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .gallery-frame--wide {
    grid-column: span 2;
  }

  .gallery-lightbox {
    padding: var(--space-4);
  }
}


/* ---- 2. VIP OFFER — mobile stacking ----------------------- */

@media (max-width: 767px) {
  .vip-offer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  /* Image above content on mobile */
  .vip-offer__image-col { order: -1; }
  .vip-offer__img { max-height: 280px; }
  /* Chips allowed to wrap on narrow screens */
  .vip-offer__chip { white-space: normal; }
}


/* ---- 3. LOCATION ACTIONS — flex layout + mobile stack ----- */

.location-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

@media (max-width: 640px) {
  .location-section__actions {
    flex-direction: column;
    gap: 0.625rem;
  }
  .location-section__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* ---- 4. HERO H1 — floor at 320px -------------------------- */

@media (max-width: 360px) {
  .hero__h1 {
    font-size: clamp(1.875rem, 9vw, 2.25rem);
    /* Prevent widows / awkward 1-word last lines */
    word-break: break-word;
    overflow-wrap: break-word;
  }
  /* Hero eyebrow & trust line can wrap */
  .hero__eyebrow,
  .hero__rating {
    white-space: normal;
    flex-wrap: wrap;
  }
}


/* ---- 5. TRUST STRIP — prevent label overflow -------------- */

@media (max-width: 480px) {
  .trust-strip__label { white-space: normal; line-height: 1.4; }
  .trust-strip__value { font-size: clamp(0.9375rem, 4.5vw, 1.375rem); }
}


/* ---- 6. WHY ITEMS — keep compact on mobile ---------------- */

@media (max-width: 520px) {
  .why-item {
    padding: 1.25rem 1rem;
  }
}


/* ---- 7. SECTION VERTICAL SPACING — reduce on mobile ------- */

@media (max-width: 767px) {
  .section {
    padding-top: clamp(3rem, 10vw, 4.5rem);
    padding-bottom: clamp(3rem, 10vw, 4.5rem);
  }
  /* Heading margins */
  .mt-5 { margin-top: 0.875rem !important; }
  .mt-3 { margin-top: 0.5rem !important; }
}


/* ---- 8. TREATMENT CARD — CTA row on narrow phones --------- */

@media (max-width: 400px) {
  .tx-footer__actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .tx-footer__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* ---- 9. BOOKING FORM — 48px min height on inputs ---------- */

@media (max-width: 767px) {
  .booking-form__field input,
  .booking-form__field select,
  .booking-form__field textarea,
  .booking-form .booking-form__input {
    min-height: 3rem; /* 48px */
  }
  .booking-form__row {
    grid-template-columns: 1fr;
  }
}


/* ---- 10. INTRO SECTION — meta row wraps on small phones --- */

@media (max-width: 480px) {
  .intro-section__meta {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .intro-section__meta-item {
    flex: 1 1 40%;
  }
  .intro-section__detail {
    padding-left: 0.75rem;
    font-size: var(--text-xs, 0.8125rem);
  }
}


/* ---- 11. QUICK ANSWERS GRID — 2-col on 320-540px ---------- */

@media (max-width: 540px) {
  .qa-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 360px) {
  .qa-grid {
    grid-template-columns: 1fr;
  }
}


/* ---- 12. CONVERT STRIPS — mobile improvements ------------- */

@media (max-width: 767px) {
  /* Strip A (dark) button icons visible but strip never overflows */
  .convert-strip__copy { max-width: 100%; }
  .convert-strip__heading { font-size: clamp(1.0625rem, 4.5vw, 1.375rem); }

  /* Strip B (photo-cta) — heading size guard */
  .photo-cta__heading { font-size: clamp(1.5rem, 6vw, 2.25rem); }
}


/* ---- 13. PROPERTY STORY — text panel safe on mobile ------- */

@media (max-width: 900px) {
  .property-story__text-panel {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}


/* ---- 14. VIP COUNTDOWN — don't overflow on 320px ---------- */

@media (max-width: 380px) {
  .vip-offer__timer { gap: 0.5rem; }
  .vip-offer__time-unit { min-width: 50px; }
}


/* ---- 15. PHONE BAR — safe-area + body padding guarantee --- */
/* Already handled per-breakpoint above; this ensures the 415-767
   range (large phones) also pads the body correctly. */
@media (min-width: 415px) and (max-width: 767px) {
  body {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
}



/* ============================================================
   MOBILE UI/UX POLISH — PASS 2 — DREAM PREMIUM SPA
   Pure polish layer: typography, spacing, UX, touch, rhythm.
   Desktop styles are unchanged.
   ============================================================ */

/* --- 1. DESIGN TOKEN OVERRIDES ON MOBILE ------------------- */
/* Raise text-sm/base to meet 16px body-text spec */
@media (max-width: 767px) {
  :root {
    --text-sm:   0.9375rem;   /* 15px (was clamp to 13px) */
    --text-base: 1rem;         /* 16px */
    --text-xs:   0.8125rem;   /* 13px */
  }
}


/* --- 2. GLOBAL HEADING SCALE -------------------------------- */
/* Prevent zooming, illegible sizes, awkward wraps on 320-767px */
@media (max-width: 767px) {

  /* Section H2 — 26-30px */
  h2, .h2,
  .treatments-section__heading,
  .why-section__heading,
  .spa-offers__heading,
  .reviews-section__heading,
  .location-section__heading,
  .faq-section__heading,
  .quick-answers__heading,
  .ib-section__heading,
  .intro-section__heading,
  .booking-section__heading,
  .exp-section__heading,
  .property-story__heading,
  .vip-offer__heading,
  .consult-block__heading {
    font-size: clamp(1.625rem, 6vw, 1.875rem) !important;
    line-height: 1.18;
  }

  /* Section H3 — 20-23px */
  h3, .h3,
  .tx-card__name,
  .ib-panel__title,
  .review-theme__heading {
    font-size: clamp(1.25rem, 5vw, 1.4375rem);
    line-height: 1.25;
  }

  /* text-wrap: balance — kills single-word orphan lines */
  h1, h2, h3,
  .treatments-section__heading,
  .why-section__heading,
  .exp-section__heading,
  .property-story__heading,
  .reviews-section__heading,
  .location-section__heading,
  .hero__h1 {
    text-wrap: balance;
  }
}


/* --- 3. HERO — tighten for above-fold CTA ------------------- */
@media (max-width: 767px) {
  /* Reduce spacer so WhatsApp button sits comfortably above fold */
  .hero__inner::before {
    min-height: calc(var(--header-total) + 3rem);
  }

  /* Hide micro-actions — phone bar handles Call/WA/Directions */
  .hero__micro-actions {
    display: none;
  }

  /* Strengthen overlay so text reads over bright lobby image */
  .hero__overlay::before {
    background: linear-gradient(
      to top,
      rgba(22, 14, 8, 0.88) 0%,
      rgba(22, 14, 8, 0.65) 40%,
      rgba(22, 14, 8, 0.30) 70%,
      rgba(22, 14, 8, 0.00) 100%
    );
  }

  /* Slightly larger offer chip touch target */
  .hero__offer-chip {
    padding: 0.6875rem 1.125rem;
    font-size: 0.9375rem;
  }

  /* Hero actions — WhatsApp primary, Call secondary */
  .hero__actions {
    gap: 0.625rem;
  }
}

/* At 320px — extra small hero adjustments */
@media (max-width: 360px) {
  .hero__inner::before {
    min-height: calc(var(--header-total) + 1.5rem);
  }
}


/* --- 4. BODY TEXT — minimum 16px across sections ------------ */
@media (max-width: 767px) {
  .intro-section__body,
  .property-story__body,
  .exp-section__desc,
  .why-item__body,
  .review-theme__body,
  .consult-block__body,
  .vip-offer__body,
  .ib-section__intro,
  .spa-offers__intro,
  .convert-strip__sub {
    font-size: 1rem;
    line-height: 1.65;
  }
}


/* --- 5. TREATMENT CARDS — line-clamp for consistent heights -- */
.tx-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .tx-card__body {
    padding: 1rem 1.125rem 1.125rem;
  }
}

/* Ensure .tx-card__name never produces single-word orphan */
.tx-card__name {
  text-wrap: balance;
}


/* --- 6. REVIEWS — horizontal scroll snap on mobile ---------- */
@media (max-width: 520px) {
  .reviews-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    background: transparent;
    border: none;
    /* Bleed to edges so cards fill screen, scroll from padding */
    padding-inline: var(--container-px, 1rem);
    margin-inline: calc(-1 * var(--container-px, 1rem));
    padding-bottom: 0.5rem;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }
  .reviews-grid::-webkit-scrollbar { display: none; }

  .review-theme {
    min-width: 82vw;
    max-width: 82vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    margin-right: 0.625rem;
  }
  .review-theme:last-child { margin-right: 0; }

  /* Scroll hint dot */
  .reviews-grid::after {
    content: '';
    display: block;
    min-width: calc(var(--container-px, 1rem) - 0.625rem);
    flex-shrink: 0;
  }
}


/* --- 7. BOOKING FORM — 16px inputs (prevents iOS zoom) ------- */
@media (max-width: 767px) {
  .booking-form__input,
  .booking-form__select,
  .booking-form__textarea,
  input[class*="booking"],
  select[class*="booking"],
  textarea[class*="booking"] {
    font-size: 1rem;  /* prevents iOS auto-zoom on focus */
    min-height: 3rem; /* 48px */
  }

  .booking-form__label {
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.375rem;
  }

  /* Full-width submit */
  .booking-form__submit {
    width: 100%;
    justify-content: center;
    min-height: 3.25rem;
    font-size: 1rem;
  }
}


/* --- 8. FAQ — touch targets + body text --------------------- */
@media (max-width: 767px) {
  .faq-trigger {
    min-height: 3rem;  /* 48px */
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
  .faq-answer__inner {
    padding: var(--space-4, 0.75rem) 1rem 1.125rem;
  }
  .faq-answer__text {
    font-size: 1rem;
    max-width: 100%;
    line-height: 1.65;
  }
}


/* --- 9. PHONE BAR — larger touch targets -------------------- */
.phone-bar__action {
  min-height: 3.25rem;  /* 52px, exceeds 44px minimum */
}
/* WhatsApp label slightly bolder to stand out */
.phone-bar__action--whatsapp .phone-bar__action-label {
  font-weight: 700;
  letter-spacing: 0.04em;
}
/* Improve contrast on call/directions labels */
.phone-bar__action--call,
.phone-bar__action--directions {
  color: var(--clr-bg-primary);
}


/* --- 10. VIP OFFER — countdown overflow at 320px ------------ */
@media (max-width: 380px) {
  .vip-offer__timer,
  .vip-offer__countdown {
    gap: 0.375rem;
  }
  .vip-offer__time-unit {
    min-width: 44px;
    padding: 0.375rem 0.25rem;
  }
  .vip-offer__time-val {
    font-size: clamp(1.25rem, 7vw, 1.625rem);
  }
  .vip-offer__time-label {
    font-size: 0.5rem;
  }
  .vip-offer__badge-pct {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }
}


/* --- 11. NAV PANEL — touch targets for menu links ----------- */
.nav__panel-link {
  min-height: 2.75rem;  /* 44px */
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .nav__panel-link {
    font-size: 1.0625rem;
    padding: 0.75rem 0;
  }
}


/* --- 12. GALLERY — touch-friendly on mobile ----------------- */
@media (max-width: 767px) {
  /* Remove hover scale on mobile (no hover on touch) */
  .gallery-frame:hover img {
    transform: none;
  }
  /* Add tap highlight instead */
  .gallery-frame {
    -webkit-tap-highlight-color: rgba(185, 150, 82, 0.15);
  }
}


/* --- 13. ANIMATIONS — respect prefers-reduced-motion -------- */
/* (augments existing block; suppresses hover-transforms on mobile) */
@media (max-width: 767px) {
  /* Hover transforms on cards are irrelevant on touch devices */
  .tx-card:hover,
  .offer-card:hover,
  .why-item:hover,
  .review-theme:hover {
    transform: none;
  }
}


/* --- 14. WHY ITEMS — reduce padding on mobile --------------- */
@media (max-width: 520px) {
  .why-item {
    padding: 1.125rem 1rem;
  }
  .why-item__title {
    font-size: clamp(1rem, 4vw, 1.1875rem);
  }
}


/* --- 15. TRUST STRIP — readable values on 320px ------------- */
@media (max-width: 380px) {
  .trust-strip__value {
    font-size: clamp(1rem, 5vw, 1.25rem);
  }
  .trust-strip__label {
    font-size: 0.5625rem;
    line-height: 1.3;
    white-space: normal;
  }
}


/* --- 16. SMOOTH SCROLL (if not already set) ----------------- */
html {
  scroll-behavior: smooth;
}

/* --- 17. CONVERT STRIPS — polish on mobile ----------------- */
@media (max-width: 767px) {
  .convert-strip__heading {
    font-size: clamp(1.0625rem, 5vw, 1.375rem);
  }
  .photo-cta__heading {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}

/* --- 18. INSTANT BOOKING WIDGET — touch improvements ------- */
@media (max-width: 767px) {
  .ib-chip {
    min-height: 2.75rem;  /* 44px */
    font-size: 0.875rem;
  }
  .ib-name-input {
    font-size: 1rem;       /* prevent iOS zoom */
    min-height: 3rem;
  }
  .ib-section__heading {
    font-size: clamp(1.625rem, 6vw, 1.875rem) !important;
  }
}

