/* ═══════════════════════════════════════════════════════════════════════════
   Phoenix International Spa — Design System
   Premium · Warm · Elegant · Calm · Indian Luxury Hospitality
   ═══════════════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────────────────
   1. DESIGN TOKENS — CSS Custom Properties
   ─────────────────────────────────────────────────────────────────────────── */
:root {

    /* Colour Palette */
    --clr-charcoal:      #2A2420;   /* deep charcoal — main text, strong contrast */
    --clr-espresso:      #3C2A1E;   /* espresso — rich dark brown  */
    --clr-cream:         #F9F5EE;   /* cream — primary background  */
    --clr-warm-beige:    #EDE4D3;   /* warm beige — section alt bg */
    --clr-stone:         #C8B9A8;   /* natural stone — borders, dividers */
    --clr-bronze:        #A87848;   /* subtle bronze — primary accent */
    --clr-champagne:     #D4B896;   /* champagne — secondary accent, soft highlights */
    --clr-ivory:         #FDFAF5;   /* near-white surface */
    --clr-linen:         #F2EBE0;   /* light warm linen */

    /* Semantic Colour Roles */
    --color-bg:          var(--clr-cream);
    --color-bg-alt:      var(--clr-warm-beige);
    --color-bg-dark:     var(--clr-espresso);
    --color-surface:     var(--clr-ivory);
    --color-border:      var(--clr-stone);
    --color-border-light:#E8DFD0;

    --color-text-primary:   var(--clr-charcoal);
    --color-text-secondary: #5C4535;
    --color-text-muted:     #8C7B6E;
    --color-text-on-dark:   #F9F5EE;
    --color-text-accent:    var(--clr-bronze);

    --color-accent-primary: var(--clr-bronze);
    --color-accent-hover:   #8F6438;
    --color-accent-light:   var(--clr-champagne);
    --color-accent-subtle:  rgba(168, 120, 72, 0.10);

    /* Typography Scale */
    --font-display:   'Cormorant Garamond', Georgia, serif;
    --font-heading:   'Cormorant Garamond', Georgia, serif;
    --font-body:      'DM Sans', system-ui, -apple-system, sans-serif;
    --font-ui:        'DM Sans', system-ui, -apple-system, sans-serif;

    /* Font Sizes — fluid where needed */
    --text-xs:    0.75rem;    /* 12px */
    --text-sm:    0.875rem;   /* 14px */
    --text-base:  1rem;       /* 16px */
    --text-lg:    1.125rem;   /* 18px */
    --text-xl:    1.25rem;    /* 20px */
    --text-2xl:   1.5rem;     /* 24px */
    --text-3xl:   1.875rem;   /* 30px */
    --text-4xl:   2.25rem;    /* 36px */
    --text-5xl:   3rem;       /* 48px */
    --text-display: clamp(2.5rem, 6vw, 4.5rem);

    /* Font Weights */
    --fw-light:    300;
    --fw-regular:  400;
    --fw-medium:   500;
    --fw-semibold: 600;
    --fw-bold:     700;

    /* Line Heights */
    --lh-tight:   1.2;
    --lh-snug:    1.35;
    --lh-normal:  1.55;
    --lh-relaxed: 1.75;

    /* Letter Spacing */
    --ls-tighter: -0.02em;
    --ls-tight:   -0.01em;
    --ls-normal:  0;
    --ls-wide:    0.05em;
    --ls-wider:   0.1em;
    --ls-widest:  0.2em;

    /* Spacing Scale */
    --sp-1:   0.25rem;
    --sp-2:   0.5rem;
    --sp-3:   0.75rem;
    --sp-4:   1rem;
    --sp-5:   1.25rem;
    --sp-6:   1.5rem;
    --sp-8:   2rem;
    --sp-10:  2.5rem;
    --sp-12:  3rem;
    --sp-16:  4rem;
    --sp-20:  5rem;
    --sp-24:  6rem;
    --sp-3xl: clamp(3rem, 8vw, 6rem);   /* alias for section-py, used by several sections */

    /* Border Radius */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-xl:   20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs:  0 1px 3px rgba(42, 36, 32, 0.06);
    --shadow-sm:  0 2px 8px rgba(42, 36, 32, 0.08);
    --shadow-md:  0 4px 20px rgba(42, 36, 32, 0.10);
    --shadow-lg:  0 8px 40px rgba(42, 36, 32, 0.12);
    --shadow-xl:  0 20px 60px rgba(42, 36, 32, 0.15);
    --shadow-card: 0 2px 12px rgba(42, 36, 32, 0.08), 0 1px 3px rgba(42, 36, 32, 0.05);
    --shadow-card-hover: 0 8px 32px rgba(42, 36, 32, 0.14), 0 2px 8px rgba(42, 36, 32, 0.08);

    /* Transitions */
    --transition-fast:   120ms ease;
    --transition-base:   220ms ease;
    --transition-slow:   380ms ease;
    --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-sm:  640px;
    --container-md:  768px;
    --container-lg:  1024px;
    --container-xl:  1280px;
    --container-2xl: 1440px;
    --container-pad: clamp(1rem, 5vw, 2.5rem);

    /* Z-Index Scale */
    --z-below:    -1;
    --z-base:      0;
    --z-raised:   10;
    --z-overlay:  20;
    --z-modal:    30;
    --z-sticky:   40;
    --z-toast:    50;

    /* Section Vertical Padding */
    --section-py: clamp(3rem, 8vw, 6rem);
}


/* ───────────────────────────────────────────────────────────────────────────
   2. RESET & BASE
   ─────────────────────────────────────────────────────────────────────────── */
*,
*::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%;
}

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

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    appearance: none;
    -webkit-appearance: none;
}

button { cursor: pointer; }

hr {
    border: none;
    border-top: 1px solid var(--color-border);
}


/* ───────────────────────────────────────────────────────────────────────────
   3. TYPOGRAPHY
   ─────────────────────────────────────────────────────────────────────────── */

/* Display — hero, above-the-fold headlines */
.text-display {
    font-family: var(--font-display);
    font-size: var(--text-display);
    font-weight: var(--fw-light);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    color: var(--color-text-primary);
}

/* H1 — page title */
h1, .h1 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: var(--fw-light);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
}

/* H2 — section heading */
h2, .h2 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    font-weight: var(--fw-light);
    line-height: var(--lh-snug);
    letter-spacing: var(--ls-tight);
}

/* H3 — card / sub-section */
h3, .h3 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-xl), 2vw, var(--text-3xl));
    font-weight: var(--fw-regular);
    line-height: var(--lh-snug);
}

/* H4 — label heading */
h4, .h4 {
    font-family: var(--font-ui);
    font-size: var(--text-lg);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-snug);
    letter-spacing: var(--ls-wide);
}

/* Body */
p, .body-text {
    font-size: var(--text-base);
    line-height: var(--lh-relaxed);
    color: var(--color-text-secondary);
}

.lead {
    font-size: var(--text-lg);
    line-height: var(--lh-relaxed);
    color: var(--color-text-secondary);
}

/* Small text */
small, .text-sm {
    font-size: var(--text-sm);
    line-height: var(--lh-normal);
}

.text-xs {
    font-size: var(--text-xs);
    line-height: var(--lh-normal);
}

/* Section label / eyebrow */
.eyebrow {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--color-accent-primary);
}

/* CTA text */
.cta-text {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
}

/* Utility classes */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-muted   { color: var(--color-text-muted); }
.text-accent  { color: var(--color-text-accent); }
.text-on-dark { color: var(--color-text-on-dark); }
.font-light   { font-weight: var(--fw-light); }
.font-regular { font-weight: var(--fw-regular); }
.font-medium  { font-weight: var(--fw-medium); }
.font-semibold{ font-weight: var(--fw-semibold); }
.font-serif   { font-family: var(--font-heading); }


/* ───────────────────────────────────────────────────────────────────────────
   4. LAYOUT — Container & Sections
   ─────────────────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.container--sm  { max-width: var(--container-sm); }
.container--md  { max-width: var(--container-md); }
.container--lg  { max-width: var(--container-lg); }
.container--2xl { max-width: var(--container-2xl); }

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

.section--cream  { background-color: var(--clr-cream); }
.section--beige  { background-color: var(--clr-warm-beige); }
.section--dark   { background-color: var(--clr-espresso); color: var(--color-text-on-dark); }
.section--linen  { background-color: var(--clr-linen); }

.section__header {
    margin-bottom: var(--sp-12);
    text-align: center;
}

.section__header .eyebrow {
    display: block;
    margin-bottom: var(--sp-3);
}

.section__header p {
    max-width: 56ch;
    margin-inline: auto;
    margin-top: var(--sp-4);
}

/* Divider ornament */
.ornament {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    justify-content: center;
    margin-block: var(--sp-6);
}

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

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

.ornament__diamond {
    width: 6px;
    height: 6px;
    background: var(--clr-bronze);
    transform: rotate(45deg);
}


/* ───────────────────────────────────────────────────────────────────────────
   5. BUTTONS & CTAs
   ─────────────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 0.75em 1.75em;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        background-color var(--transition-base),
        border-color     var(--transition-base),
        color            var(--transition-base),
        box-shadow       var(--transition-base),
        transform        var(--transition-fast);
    white-space: nowrap;
    user-select: none;
    text-decoration: none;
    line-height: 1;
}

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

/* Primary */
.btn--primary {
    background-color: var(--clr-bronze);
    border-color: var(--clr-bronze);
    color: #fff;
}
.btn--primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    box-shadow: 0 4px 16px rgba(168, 120, 72, 0.30);
}

/* Secondary */
.btn--secondary {
    background-color: var(--clr-espresso);
    border-color: var(--clr-espresso);
    color: var(--clr-cream);
}
.btn--secondary:hover {
    background-color: #2A1C12;
    border-color: #2A1C12;
    box-shadow: 0 4px 16px rgba(42, 36, 32, 0.25);
}

/* Outline */
.btn--outline {
    background-color: transparent;
    border-color: var(--clr-bronze);
    color: var(--clr-bronze);
}
.btn--outline:hover {
    background-color: var(--clr-bronze);
    color: #fff;
}

/* Outline light (for dark backgrounds) */
.btn--outline-light {
    background-color: transparent;
    border-color: var(--clr-cream);
    color: var(--clr-cream);
}
.btn--outline-light:hover {
    background-color: var(--clr-cream);
    color: var(--clr-espresso);
}

/* Sizes */
.btn--sm {
    padding: 0.55em 1.25em;
    font-size: var(--text-xs);
}

.btn--lg {
    padding: 1em 2.25em;
    font-size: var(--text-base);
}

/* Icon prefix */
.btn__icon {
    width: 1.1em;
    height: 1.1em;
    flex-shrink: 0;
}

/* CTA Group — stacked or inline group of CTAs */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    align-items: center;
}

.cta-group--center { justify-content: center; }
.cta-group--stack  { flex-direction: column; align-items: stretch; }

/* Hero-dark CTA — used on dark section backgrounds (final-cta call button) */
.btn--hero {
    background-color: rgba(253, 250, 245, 0.10);
    border-color: rgba(212, 184, 150, 0.35);
    color: var(--clr-cream);
}
.btn--hero:hover {
    background-color: rgba(253, 250, 245, 0.18);
    border-color: var(--clr-champagne);
}

/* WhatsApp CTA */
.btn--whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
}
.btn--whatsapp:hover {
    background-color: #1ebe5a;
    border-color: #1ebe5a;
}

/* Phone CTA */
.btn--phone {
    background-color: var(--clr-espresso);
    border-color: var(--clr-espresso);
    color: var(--clr-cream);
}
.btn--phone:hover {
    background-color: #2A1C12;
    border-color: #2A1C12;
}


/* ───────────────────────────────────────────────────────────────────────────
   6. CARDS
   ─────────────────────────────────────────────────────────────────────────── */
.card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.card__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card__body {
    padding: var(--sp-6);
}

.card__eyebrow {
    display: block;
    margin-bottom: var(--sp-2);
}

.card__title {
    margin-bottom: var(--sp-3);
}

.card__description {
    margin-bottom: var(--sp-5);
    color: var(--color-text-secondary);
}

.card__footer {
    padding: var(--sp-4) var(--sp-6);
    border-top: 1px solid var(--color-border-light);
    background-color: var(--clr-linen);
}

/* Service card variant */
.service-card {
    background: var(--clr-ivory);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.service-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-card__content {
    padding: var(--sp-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__duration {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    margin-bottom: var(--sp-2);
}

.service-card__name {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-regular);
    margin-bottom: var(--sp-3);
}

.service-card__desc {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    line-height: var(--lh-relaxed);
    flex: 1;
    margin-bottom: var(--sp-5);
}

.service-card__price {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--clr-bronze);
    font-weight: var(--fw-semibold);
}


/* ───────────────────────────────────────────────────────────────────────────
   7. BADGES
   ─────────────────────────────────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    padding: 0.25em 0.75em;
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.badge--accent    { background: var(--color-accent-subtle); color: var(--clr-bronze); }
.badge--dark      { background: var(--clr-espresso); color: var(--clr-champagne); }
.badge--stone     { background: var(--clr-warm-beige); color: var(--color-text-secondary); }
.badge--success   { background: rgba(52, 168, 83, 0.12); color: #2E7D32; }


/* ───────────────────────────────────────────────────────────────────────────
   8. RATINGS
   ─────────────────────────────────────────────────────────────────────────── */
.rating {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.rating__stars {
    display: inline-flex;
    gap: 2px;
    color: #D4943A;
    font-size: var(--text-base);
}

.rating__score {
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
}

.rating__count {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}


/* ───────────────────────────────────────────────────────────────────────────
   9. TRUST BAR
   ─────────────────────────────────────────────────────────────────────────── */
.trust-bar {
    background-color: var(--clr-espresso);
    padding-block: var(--sp-4);
}

.trust-bar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-6) var(--sp-10);
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    color: var(--clr-champagne);
}

.trust-bar__item-icon {
    font-size: var(--text-lg);
    opacity: 0.85;
}

.trust-bar__item-text {
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    white-space: nowrap;
}

.trust-bar__item-label {
    font-size: var(--text-xs);
    opacity: 0.7;
    display: block;
}


/* ───────────────────────────────────────────────────────────────────────────
   10. HEADER & NAVIGATION
   ─────────────────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background-color: rgba(249, 245, 238, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border-light);
    transition: box-shadow var(--transition-base);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--sp-4);
}

.site-header__logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-decoration: none;
}

.site-header__logo-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-light);
    color: var(--clr-espresso);
    letter-spacing: var(--ls-tight);
}

.site-header__logo-tagline {
    font-size: var(--text-xs);
    color: var(--clr-bronze);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
}

/* Desktop nav */
.site-nav {
    display: none;
    align-items: center;
    gap: var(--sp-8);
}

.site-nav__link {
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-secondary);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--clr-bronze);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
}

/* Header CTA */
.site-header__cta {
    display: none;
    align-items: center;
    gap: var(--sp-3);
}

/* Mobile hamburger */
.site-header__menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--sp-2);
    cursor: pointer;
    background: none;
    border: none;
}

.site-header__menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-espresso);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.site-header__menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.site-header__menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
    /* Keep in DOM so transform transition plays */
    display: block;
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-sticky) - 1);
    padding-top: 72px;
    background-color: var(--clr-cream);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition:
        transform    var(--transition-slow),
        visibility   0s   var(--transition-slow);
}

.mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition:
        transform    var(--transition-slow),
        visibility   0s   0s;
}

.mobile-menu__nav {
    padding: var(--sp-6) var(--container-pad);
}

.mobile-menu__link {
    display: block;
    padding-block: var(--sp-4);
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-light);
    color: var(--clr-espresso);
    border-bottom: 1px solid var(--color-border-light);
}

.mobile-menu__ctas {
    padding: var(--sp-6) var(--container-pad);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}


/* ───────────────────────────────────────────────────────────────────────────
   11. STICKY MOBILE CTA BAR
   ─────────────────────────────────────────────────────────────────────────── */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background-color: var(--clr-ivory);
    border-top: 1px solid var(--color-border);
    padding: var(--sp-3) var(--container-pad);
    display: flex;
    gap: var(--sp-2);
    box-shadow: 0 -4px 20px rgba(42, 36, 32, 0.10);
}

.mobile-cta-bar .btn {
    flex: 1;
    font-size: var(--text-xs);
    padding: 0.7em 0.5em;
}


/* ───────────────────────────────────────────────────────────────────────────
   12. DESKTOP CTA STRIP
   ─────────────────────────────────────────────────────────────────────────── */
.desktop-cta-strip {
    display: none;
    background: linear-gradient(135deg, var(--clr-espresso) 0%, #2A1C12 100%);
    padding-block: var(--sp-5);
}

.desktop-cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-6);
}

.desktop-cta-strip__message {
    color: var(--clr-champagne);
}

.desktop-cta-strip__message strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-light);
    color: var(--clr-cream);
    margin-bottom: var(--sp-1);
}


/* ───────────────────────────────────────────────────────────────────────────
   13. FAQ
   ─────────────────────────────────────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    max-width: 720px;
    margin-inline: auto;
}

.faq-item {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--clr-ivory);
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-6);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    transition: background-color var(--transition-fast);
}

.faq-item__trigger:hover {
    background-color: var(--clr-linen);
}

.faq-item__question {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--fw-regular);
    color: var(--color-text-primary);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    color: var(--clr-bronze);
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.faq-item__icon::before { width: 2px; height: 12px; top: 4px; left: 9px; }
.faq-item__icon::after  { width: 12px; height: 2px; top: 9px; left: 4px; }

.faq-item.is-open .faq-item__icon::before { transform: rotate(90deg); opacity: 0; }

.faq-item__body {
    display: none;
    padding: 0 var(--sp-6) var(--sp-5);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
    animation: fadeSlideDown 200ms ease;
}

.faq-item.is-open .faq-item__body { display: block; }

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ───────────────────────────────────────────────────────────────────────────
   14. FORMS
   ─────────────────────────────────────────────────────────────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-5);
}

.form-label {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-text-secondary);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75em 1em;
    font-size: var(--text-base);
    color: var(--color-text-primary);
    background: var(--clr-ivory);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--clr-bronze);
    box-shadow: 0 0 0 3px rgba(168, 120, 72, 0.15);
}

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


/* ───────────────────────────────────────────────────────────────────────────
   15. LOCATION CARD
   ─────────────────────────────────────────────────────────────────────────── */
.location-card {
    display: grid;
    gap: var(--sp-8);
    background: var(--clr-ivory);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-card__map {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0;
}

.location-card__info {
    padding: var(--sp-8);
}

.location-card__detail {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
    margin-bottom: var(--sp-5);
}

.location-card__detail-icon {
    font-size: var(--text-xl);
    color: var(--clr-bronze);
    flex-shrink: 0;
    line-height: 1;
}

.location-card__detail-text {
    font-size: var(--text-sm);
    line-height: var(--lh-relaxed);
    color: var(--color-text-secondary);
}

.location-card__detail-label {
    font-weight: var(--fw-semibold);
    display: block;
    margin-bottom: 2px;
    color: var(--color-text-primary);
    font-size: var(--text-sm);
}


/* ───────────────────────────────────────────────────────────────────────────
   16. FOOTER
   ─────────────────────────────────────────────────────────────────────────── */
.site-footer {
    background-color: var(--clr-espresso);
    color: var(--clr-champagne);
    padding-block: var(--sp-16) var(--sp-8);
}

.site-footer__grid {
    display: grid;
    gap: var(--sp-12);
}

.site-footer__brand-name {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-light);
    color: var(--clr-cream);
    margin-bottom: var(--sp-2);
}

.site-footer__brand-tagline {
    font-size: var(--text-sm);
    opacity: 0.7;
    margin-bottom: var(--sp-5);
    line-height: var(--lh-relaxed);
}

.site-footer__heading {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--clr-stone);
    margin-bottom: var(--sp-4);
}

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

.site-footer__link {
    font-size: var(--text-sm);
    color: var(--clr-champagne);
    opacity: 0.85;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.site-footer__link:hover {
    opacity: 1;
    color: var(--clr-cream);
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    justify-content: space-between;
    align-items: center;
    padding-top: var(--sp-8);
    margin-top: var(--sp-8);
    border-top: 1px solid rgba(200, 185, 168, 0.2);
}

.site-footer__copy {
    font-size: var(--text-xs);
    opacity: 0.6;
}


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

.hidden { display: none !important; }
.block  { display: block; }
.flex   { display: flex; }
.grid   { display: grid; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }

/* Spacing utilities */
.mt-0  { margin-top: 0; }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }


/* ───────────────────────────────────────────────────────────────────────────
   18. RESPONSIVE BREAKPOINTS
   ─────────────────────────────────────────────────────────────────────────── */

/* 360px and up — small phones */
@media (min-width: 360px) {
    .container { padding-inline: 1.25rem; }
}

/* 414px and up — large phones */
@media (min-width: 414px) {
    .mobile-cta-bar .btn { font-size: var(--text-sm); }
}

/* 768px — tablet */
@media (min-width: 768px) {
    /* Header stays in mobile layout at 768px — nav switches at 1024px */
    .desktop-cta-strip { display: block; }

    .location-card {
        grid-template-columns: 1fr 1fr;
    }
    .location-card__map {
        aspect-ratio: auto;
        height: 100%;
    }

    .site-footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .cta-group--stack { flex-direction: row; align-items: center; }
}

/* 1024px — desktop */
@media (min-width: 1024px) {
    .container { padding-inline: 2rem; }

    /* Switch from mobile to desktop header layout */
    .site-nav             { display: flex; }
    .site-header__cta     { display: flex; }
    .site-header__menu-btn { display: none; }
    .mobile-cta-bar       { display: none; }

    .desktop-cta-strip__inner {
        flex-direction: row;
    }
}

/* 1280px — wide desktop */
@media (min-width: 1280px) {
    .container { padding-inline: 2.5rem; }
}

/* 1440px — large desktop */
@media (min-width: 1440px) {
    .container { max-width: var(--container-2xl); }
}


/* ───────────────────────────────────────────────────────────────────────────
   19. ANNOUNCEMENT BAR
   ─────────────────────────────────────────────────────────────────────────── */
.announcement-bar {
    background-color: var(--clr-espresso);
    color: var(--clr-champagne);
    padding-block: 0.55rem;
    position: relative;
    z-index: calc(var(--z-sticky) + 1);
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    flex-wrap: wrap;
    text-align: center;
}

.announcement-bar__text {
    font-size: var(--text-xs);
    letter-spacing: var(--ls-wide);
    color: var(--clr-champagne);
    margin: 0;
    line-height: 1;
}

.announcement-bar__label {
    font-weight: var(--fw-semibold);
    color: var(--clr-cream);
    margin-right: var(--sp-1);
}

.announcement-bar__cta {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    color: var(--clr-bronze);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition-fast);
    border-bottom: 1px solid rgba(168, 120, 72, 0.4);
    padding-bottom: 1px;
}

.announcement-bar__cta:hover { color: var(--clr-champagne); }

.announcement-bar__close {
    position: absolute;
    right: var(--sp-4);
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--clr-stone);
    font-size: var(--text-sm);
    cursor: pointer;
    padding: var(--sp-1) var(--sp-2);
    line-height: 1;
    transition: color var(--transition-fast);
}

.announcement-bar__close:hover { color: var(--clr-cream); }

.announcement-bar.is-hidden {
    display: none;
}


/* ───────────────────────────────────────────────────────────────────────────
   20. HERO SECTION (Phase 2)
   ─────────────────────────────────────────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: calc(100svh - 100px);
    background-color: var(--clr-cream);
    position: relative;
    overflow: hidden;
}

/* ── Image (mobile: background layer) ── */
.hero__image-wrap {
    position: relative;
    order: -1;           /* image first on mobile */
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(42, 36, 32, 0.15) 0%,
        rgba(42, 36, 32, 0.05) 100%
    );
}

/* ── Content ── */
.hero__content {
    padding: var(--sp-8) var(--container-pad) var(--sp-12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Location eyebrow */
.hero__location {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--clr-bronze);
    margin-bottom: var(--sp-5);
}

.hero__location-pin {
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* H1 */
.hero__h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.75rem);
    font-weight: var(--fw-light);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--clr-espresso);
    margin-bottom: var(--sp-5);
}

.hero__h1-place {
    color: var(--clr-bronze);
    font-style: italic;
}

.hero__h1-break { display: none; }

/* Description */
.hero__desc {
    font-size: clamp(var(--text-base), 2vw, var(--text-lg));
    line-height: var(--lh-relaxed);
    color: var(--color-text-secondary);
    margin-bottom: var(--sp-6);
    max-width: 50ch;
}

/* Inline trust strip */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-8);
    padding: var(--sp-4) var(--sp-5);
    background: rgba(60, 42, 30, 0.05);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    width: fit-content;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    flex-wrap: wrap;
}

.hero__trust-stars {
    color: #D4943A;
    font-size: var(--text-sm);
    letter-spacing: -1px;
}

.hero__trust-score {
    font-weight: var(--fw-semibold);
    color: var(--clr-espresso);
    font-size: var(--text-sm);
}

.hero__trust-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    letter-spacing: var(--ls-wide);
}

.hero__trust-hours {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: var(--clr-espresso);
}

.hero__trust-divider {
    color: var(--clr-stone);
    font-size: var(--text-sm);
    user-select: none;
}

/* CTA group */
.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

/* Hero CTA buttons — two-line style */
.btn--hero-call,
.btn--hero-whatsapp,
.btn--hero-directions {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    padding: 0.9em 1.5em;
    text-align: left;
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        background-color var(--transition-base),
        border-color     var(--transition-base),
        box-shadow       var(--transition-base),
        transform        var(--transition-fast);
    text-decoration: none;
    font-family: var(--font-ui);
}

.btn--hero-call:active,
.btn--hero-whatsapp:active,
.btn--hero-directions:active {
    transform: translateY(1px);
}

.btn__line1 {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    line-height: 1.2;
}

.btn__line2 {
    display: block;
    font-size: var(--text-xs);
    opacity: 0.75;
    margin-top: 2px;
    letter-spacing: var(--ls-normal);
    text-transform: none;
    font-weight: var(--fw-regular);
}

.btn--hero-call {
    background-color: var(--clr-espresso);
    border-color: var(--clr-espresso);
    color: var(--clr-cream);
}
.btn--hero-call:hover {
    background-color: #2A1C12;
    box-shadow: 0 6px 24px rgba(42, 36, 32, 0.30);
}

.btn--hero-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
}
.btn--hero-whatsapp:hover {
    background-color: #1ebe5a;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.30);
}

.btn--hero-directions {
    background-color: transparent;
    border-color: var(--clr-bronze);
    color: var(--clr-bronze);
}
.btn--hero-directions:hover {
    background-color: var(--clr-bronze);
    color: #fff;
}

.btn--hero-call .btn__icon,
.btn--hero-whatsapp .btn__icon,
.btn--hero-directions .btn__icon {
    width: 1.4rem;
    height: 1.4rem;
    flex-shrink: 0;
}


/* ── Desktop layout — split ── */
@media (min-width: 768px) {
    .hero {
        grid-template-columns: 55% 45%;
        min-height: calc(100svh - 88px);
    }

    .hero__image-wrap {
        order: 0;    /* restore to document order */
        aspect-ratio: unset;
        height: 100%;
        position: sticky;
        top: 0;
    }

    .hero__content {
        padding: var(--sp-16) var(--sp-12);
        max-width: 680px;
    }

    .hero__h1-break { display: block; }

    .hero__ctas {
        flex-direction: column;
        max-width: 380px;
    }

    .btn--hero-call,
    .btn--hero-whatsapp,
    .btn--hero-directions {
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .hero__content {
        padding: var(--sp-20) var(--sp-16);
    }

    .hero__ctas {
        flex-direction: column;
    }
}


/* ───────────────────────────────────────────────────────────────────────────
   21. HEADER MOBILE CALL BUTTON
   ─────────────────────────────────────────────────────────────────────────── */

/* Show mobile call button on small screens */
.site-header__mobile-call {
    display: inline-flex;
    font-size: 0.7rem;
    padding: 0.5em 0.9em;
    gap: var(--sp-1);
}

/* Hide mobile call button on desktop (where full header CTAs are shown) */
@media (min-width: 768px) {
    .site-header__mobile-call { display: none; }
}


/* ───────────────────────────────────────────────────────────────────────────
   22. TRUST BAR — CTA ROW (Phase 2)
   ─────────────────────────────────────────────────────────────────────────── */
.trust-bar__divider {
    width: 1px;
    height: 32px;
    background: rgba(200, 185, 168, 0.25);
    flex-shrink: 0;
    display: none;
}

.trust-bar__ctas {
    display: flex;
    gap: var(--sp-3);
    justify-content: center;
    flex-wrap: wrap;
    padding-top: var(--sp-4);
    margin-top: var(--sp-4);
    border-top: 1px solid rgba(200, 185, 168, 0.2);
}

.trust-bar__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0.6em 1.4em;
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--clr-champagne);
    color: var(--clr-champagne);
    background: transparent;
    text-decoration: none;
    transition: all var(--transition-fast);
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}

.trust-bar__cta-btn:hover {
    background: rgba(212, 184, 150, 0.15);
    color: var(--clr-cream);
}

.trust-bar__cta-btn--whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}
.trust-bar__cta-btn--whatsapp:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
}

.trust-bar__cta-btn--outline {
    border-color: rgba(200, 185, 168, 0.5);
    color: var(--clr-champagne);
}

@media (min-width: 1024px) {
    .trust-bar__divider { display: block; }

    .trust-bar__ctas {
        flex-wrap: nowrap;
        max-width: 520px;
        margin-inline: auto;
    }

    .trust-bar__cta-btn { flex: 0 0 auto; }
}

/* Keep all 3 CTAs on one row on mobile */
@media (max-width: 1023px) {
    .trust-bar__ctas {
        gap: var(--sp-2);
        flex-wrap: nowrap;
    }
    .trust-bar__cta-btn {
        flex: 1;
        padding: 0.55em 0.9em;
        font-size: 0.68rem;
    }
    .trust-bar__cta-btn svg { width: 13px; height: 13px; }
}


/* ───────────────────────────────────────────────────────────────────────────
   23. SCROLL REVEAL
   ─────────────────────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity  480ms ease,
        transform 480ms ease;
}

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

/* Stagger siblings */
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 300ms; }
.reveal:nth-child(6) { transition-delay: 360ms; }


/* ───────────────────────────────────────────────────────────────────────────
   24. NEEDS FILTER — SECTION 1
   ─────────────────────────────────────────────────────────────────────────── */
.needs-filter__heading {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: var(--fw-light);
}

/* Filter tabs */
.needs-filter__tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--sp-2);
    justify-content: flex-start;
    margin-bottom: var(--sp-10);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--sp-2); /* breathing room above scroll shadow */
}

.needs-filter__tabs::-webkit-scrollbar { display: none; }

@media (min-width: 640px) {
    .needs-filter__tabs {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        padding-bottom: 0;
    }
}

.needs-filter__tab {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0.65em 1.4em;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-border);
    background: var(--clr-ivory);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition:
        background-color var(--transition-base),
        border-color     var(--transition-base),
        color            var(--transition-base),
        box-shadow       var(--transition-base);
    white-space: nowrap;
}

.needs-filter__tab:hover {
    border-color: var(--clr-bronze);
    color: var(--clr-bronze);
}

.needs-filter__tab.is-active {
    background-color: var(--clr-espresso);
    border-color: var(--clr-espresso);
    color: var(--clr-champagne);
    box-shadow: 0 4px 16px rgba(42, 36, 32, 0.20);
}

.needs-filter__tab-icon {
    opacity: 0.7;
    font-size: var(--text-sm);
}

/* Recommendation panels */
.needs-filter__panel {
    max-width: 700px;
    margin-inline: auto;
    animation: fadeSlideDown 300ms ease;
}

.needs-filter__recs {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
}

.needs-filter__rec-card {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-5);
    padding: var(--sp-5) var(--sp-6);
    background: var(--clr-ivory);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}

.needs-filter__rec-icon {
    font-size: var(--text-xl);
    color: var(--clr-bronze);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.needs-filter__rec-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-regular);
    color: var(--clr-espresso);
    margin-bottom: var(--sp-1);
}

.needs-filter__rec-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    margin: 0;
}

/* First visit variant */
.needs-filter__first-visit {
    text-align: center;
    padding: var(--sp-10) var(--sp-6);
    background: var(--clr-ivory);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--sp-8);
}

.needs-filter__first-icon {
    font-size: 2.5rem;
    color: var(--clr-bronze);
    margin-bottom: var(--sp-5);
    opacity: 0.8;
}

.needs-filter__first-visit h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-light);
    margin-bottom: var(--sp-3);
}

.needs-filter__first-visit p {
    max-width: 46ch;
    margin-inline: auto;
}

/* CTA row */
.needs-filter__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
}


/* ───────────────────────────────────────────────────────────────────────────
   25. SERVICES GRID — SECTION 2
   ─────────────────────────────────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
}

/* Service card */
.svc-card {
    position: relative;
    background: var(--clr-ivory);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.svc-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
}

.svc-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.svc-card:hover .svc-card__image {
    transform: scale(1.04);
}

.svc-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(42, 36, 32, 0.18) 100%
    );
}

.svc-card__number {
    position: absolute;
    top: var(--sp-4);
    left: var(--sp-4);
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-light);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1;
    letter-spacing: -0.02em;
}

.svc-card__body {
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-card__name {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-regular);
    color: var(--clr-espresso);
    margin-bottom: var(--sp-3);
    line-height: var(--lh-snug);
}

.svc-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
    flex: 1;
    margin-bottom: var(--sp-5);
}

.svc-card__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-2);
}

.svc-card__dir-link {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    margin-left: auto;
}

.svc-card__dir-link:hover { color: var(--clr-bronze); }

/* Tablet: 2-column grid */
@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Featured card spans full width */
    .svc-card--featured {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .svc-card--featured .svc-card__image-wrap {
        width: 55%;
        aspect-ratio: unset;
        min-height: 320px;
        flex-shrink: 0;
    }

    .svc-card--featured .svc-card__body {
        padding: var(--sp-10);
        justify-content: center;
    }

    .svc-card--featured .svc-card__name {
        font-size: var(--text-3xl);
    }

    .svc-card--featured .svc-card__desc {
        font-size: var(--text-base);
        max-width: 44ch;
    }
}

/* Desktop: 3-column grid, featured still spans full */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .svc-card--featured {
        grid-column: 1 / -1;
    }

    .svc-card--featured .svc-card__image-wrap {
        min-height: 380px;
    }

    .svc-card--featured .svc-card__name {
        font-size: var(--text-4xl);
    }
}


/* ───────────────────────────────────────────────────────────────────────────
   26. COUPLE SECTION — SECTION 3
   ─────────────────────────────────────────────────────────────────────────── */
.couple-section {
    position: relative;
    padding-block: var(--section-py);
    overflow: hidden;
    color: var(--clr-cream);
}

.couple-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.couple-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.couple-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(36, 22, 12, 0.88) 0%,
        rgba(36, 22, 12, 0.70) 60%,
        rgba(36, 22, 12, 0.50) 100%
    );
}

.couple-section__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: center;
}

.couple-section__heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: var(--fw-light);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--clr-cream);
    margin-block: var(--sp-4);
}

.couple-section__desc {
    font-size: var(--text-lg);
    line-height: var(--lh-relaxed);
    color: rgba(249, 245, 238, 0.80);
    max-width: 44ch;
    margin-bottom: 0;
}

/* Couple mini-cards */
.couple-section__cards {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.couple-card {
    background: rgba(253, 250, 245, 0.09);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 184, 150, 0.25);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-base), background var(--transition-base);
}

.couple-card:hover {
    border-color: rgba(212, 184, 150, 0.50);
    background: rgba(253, 250, 245, 0.14);
}

.couple-card__image-wrap {
    aspect-ratio: 16 / 7;
    overflow: hidden;
}

.couple-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.couple-card:hover .couple-card__image-wrap img {
    transform: scale(1.04);
}

.couple-card__body {
    padding: var(--sp-6);
}

.couple-card__name {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-light);
    color: var(--clr-cream);
    margin-bottom: var(--sp-3);
}

.couple-card__desc {
    font-size: var(--text-sm);
    line-height: var(--lh-relaxed);
    color: rgba(249, 245, 238, 0.70);
    margin-bottom: var(--sp-5);
}

@media (min-width: 900px) {
    .couple-section__content {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-16);
    }

    .couple-section__cards {
        gap: var(--sp-6);
    }
}


/* ───────────────────────────────────────────────────────────────────────────
   27. PREMIUM EXPERIENCES — SECTION 4
   ─────────────────────────────────────────────────────────────────────────── */
.premium-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

/* Premium card — horizontal editorial layout */
.premium-card {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--clr-ivory);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.premium-card__image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.premium-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.premium-card:hover .premium-card__image {
    transform: scale(1.04);
}

.premium-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(42, 36, 32, 0.05) 0%,
        transparent 60%
    );
}

.premium-card__body {
    padding: var(--sp-8) var(--sp-8) var(--sp-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-card__name {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
    font-weight: var(--fw-light);
    color: var(--clr-espresso);
    margin-block: var(--sp-3) var(--sp-5);
    line-height: var(--lh-snug);
}

.premium-card__desc {
    font-size: var(--text-base);
    line-height: var(--lh-relaxed);
    color: var(--color-text-secondary);
    max-width: 60ch;
    margin-bottom: var(--sp-8);
}

.premium-card__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-3);
}

.premium-card__dir-link {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.premium-card__dir-link:hover { color: var(--clr-bronze); }

/* Desktop: side-by-side, alternating image position */
@media (min-width: 900px) {
    .premium-card {
        grid-template-columns: 1fr 1fr;
        min-height: 420px;
    }

    .premium-card__image-wrap {
        aspect-ratio: unset;
        height: 100%;
    }

    .premium-card--reversed {
        direction: rtl;
    }

    .premium-card--reversed > * {
        direction: ltr;
    }

    .premium-card__body {
        padding: var(--sp-12);
    }
}

@media (min-width: 1280px) {
    .premium-card {
        grid-template-columns: 55% 45%;
        min-height: 480px;
    }

    .premium-card--reversed {
        grid-template-columns: 45% 55%;
    }
}


/* ───────────────────────────────────────────────────────────────────────────
   28. WHY PHOENIX — SECTION (Phase 4)
   ─────────────────────────────────────────────────────────────────────────── */
.why-phoenix {
    position: relative;
    overflow: hidden;
    padding-block: var(--section-py);
}

.why-phoenix__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-phoenix__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.why-phoenix__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(36, 22, 12, 0.93) 0%,
        rgba(36, 22, 12, 0.85) 100%
    );
}

.why-phoenix__inner {
    position: relative;
    z-index: 1;
}

/* Feature grid */
.why-phoenix__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    margin-bottom: var(--sp-12);
}

.why-feature {
    display: flex;
    gap: var(--sp-5);
    align-items: flex-start;
    padding: var(--sp-6);
    background: rgba(253, 250, 245, 0.07);
    border: 1px solid rgba(212, 184, 150, 0.18);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(4px);
    transition: background var(--transition-base), border-color var(--transition-base);
}

.why-feature:hover {
    background: rgba(253, 250, 245, 0.11);
    border-color: rgba(212, 184, 150, 0.35);
}

.why-feature__icon {
    font-size: var(--text-2xl);
    color: var(--clr-bronze);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-feature__body {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    min-width: 0;
}

.why-feature__stat {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-regular);
    color: var(--clr-cream);
    margin-bottom: var(--sp-2);
    line-height: var(--lh-snug);
}

.why-feature__label {
    font-size: var(--text-sm);
    color: rgba(212, 184, 150, 0.80);
    line-height: var(--lh-relaxed);
    margin: 0;
}

.why-phoenix__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
}

@media (min-width: 640px) {
    .why-phoenix__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-phoenix__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ───────────────────────────────────────────────────────────────────────────
   29. REVIEWS / SOCIAL PROOF — SECTION (Phase 4)
   ─────────────────────────────────────────────────────────────────────────── */
.reviews-section .section__header h2 {
    font-family: var(--font-heading);
}

.reviews-card {
    max-width: 860px;
    margin-inline: auto;
    background: var(--clr-ivory);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Score column */
.reviews-card__score-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    padding: var(--sp-10) var(--sp-8);
    background: var(--clr-espresso);
    text-align: center;
}

.reviews-card__big-score {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: var(--fw-light);
    color: var(--clr-cream);
    line-height: 1;
    letter-spacing: -0.04em;
}

.reviews-card__stars {
    font-size: var(--text-2xl);
    color: #D4943A;
    letter-spacing: 2px;
}

.reviews-card__count {
    font-size: var(--text-sm);
    color: var(--clr-champagne);
    opacity: 0.85;
}

.reviews-card__count strong {
    color: var(--clr-cream);
}

/* Divider */
.reviews-card__divider {
    height: 1px;
    background: var(--color-border-light);
    flex-shrink: 0;
}

/* Message column */
.reviews-card__message {
    padding: var(--sp-8) var(--sp-8) var(--sp-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reviews-card__headline {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
    font-weight: var(--fw-light);
    color: var(--clr-espresso);
    margin-bottom: var(--sp-3);
}

.reviews-card__sub {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
    max-width: 44ch;
    margin-bottom: var(--sp-6);
}

/* Google badge */
.reviews-card__google {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-2) var(--sp-4);
    background: var(--clr-linen);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-full);
    width: fit-content;
}

.reviews-card__google-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.reviews-card__google-text {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* Desktop: side-by-side */
@media (min-width: 680px) {
    .reviews-card {
        flex-direction: row;
    }

    .reviews-card__score-wrap {
        min-width: 220px;
        flex-shrink: 0;
    }

    .reviews-card__divider {
        width: 1px;
        height: auto;
    }

    .reviews-card__big-score {
        font-size: clamp(4rem, 6vw, 6rem);
    }
}


/* ───────────────────────────────────────────────────────────────────────────
   30. LOCATION SECTION (Phase 4)
   ─────────────────────────────────────────────────────────────────────────── */
.location-section .section__header h2 {
    font-family: var(--font-heading);
}

/* Two-column layout */
.location-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    align-items: start;
}

/* Map */
.location-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    line-height: 0; /* remove gap below iframe */
}

.location-map-iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}

/* Address info panel */
.location-info {
    display: flex;
    flex-direction: column;
}

/* Proximity message */
.location-proximity {
    background: var(--clr-espresso);
    color: var(--clr-champagne);
    padding: var(--sp-6);
    border-radius: var(--radius-md);
    margin-bottom: var(--sp-6);
}

.location-proximity__heading {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-light);
    color: var(--clr-cream);
    margin-bottom: var(--sp-2);
}

.location-proximity__copy {
    font-size: var(--text-sm);
    line-height: var(--lh-relaxed);
    color: rgba(212, 184, 150, 0.85);
    margin: 0;
}

/* Details list */
.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
}

.location-detail {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
}

.location-detail__icon {
    font-size: var(--text-lg);
    color: var(--clr-bronze);
    flex-shrink: 0;
    line-height: 1.3;
}

.location-detail__label {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--sp-1);
}

.location-phone-link {
    color: var(--clr-bronze);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.location-phone-link:hover { color: var(--color-accent-hover); }

/* Location CTAs — 2×2 grid */
.location-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
}

.location-ctas .btn {
    font-size: var(--text-xs);
    justify-content: center;
    gap: var(--sp-2);
}

@media (min-width: 900px) {
    .location-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-10);
        align-items: start;
    }

    .location-map-iframe {
        height: 480px;
    }
}

@media (min-width: 1100px) {
    .location-layout {
        grid-template-columns: 55% 45%;
    }
}


/* ───────────────────────────────────────────────────────────────────────────
   31. MOBILE STICKY BAR (Phase 5)
   ─────────────────────────────────────────────────────────────────────────── */

/* Body padding so content isn't hidden behind the sticky bar */
@media (max-width: 1023px) {
    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }
}

.mobile-sticky-bar {
    display: none; /* hidden by default; shown on mobile below */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--clr-espresso);
    border-top: 1px solid rgba(212, 184, 150, 0.20);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.30);
}

.mobile-sticky-bar__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 60px;
    padding: 10px 8px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition:
        background-color var(--transition-fast),
        color            var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.mobile-sticky-bar__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-sticky-bar__label {
    line-height: 1;
}

/* Call — espresso with cream text */
.mobile-sticky-bar__btn--call {
    background: var(--clr-espresso);
    color: var(--clr-cream);
    border-right: 1px solid rgba(212, 184, 150, 0.15);
}

.mobile-sticky-bar__btn--call:hover,
.mobile-sticky-bar__btn--call:focus-visible {
    background: #3d2d24;
    color: var(--clr-champagne);
}

/* WhatsApp — green */
.mobile-sticky-bar__btn--whatsapp {
    background: #25D366;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-sticky-bar__btn--whatsapp:hover,
.mobile-sticky-bar__btn--whatsapp:focus-visible {
    background: #20c05d;
    color: #fff;
}

/* Directions — bronze */
.mobile-sticky-bar__btn--directions {
    background: var(--clr-espresso);
    color: var(--clr-champagne);
}

.mobile-sticky-bar__btn--directions:hover,
.mobile-sticky-bar__btn--directions:focus-visible {
    background: #3d2d24;
    color: var(--clr-cream);
}

/* Show only on mobile */
@media (max-width: 1023px) {
    .mobile-sticky-bar {
        display: flex;
        flex-direction: row;
    }
}


/* ───────────────────────────────────────────────────────────────────────────
   32. DESKTOP FLOATING CTA (Phase 5)
   ─────────────────────────────────────────────────────────────────────────── */
.desktop-float {
    display: none; /* hidden on mobile */
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: var(--z-sticky);
    flex-direction: column;
    gap: 4px;
    padding: 6px;
}

/* Show only on desktop */
@media (min-width: 1024px) {
    .desktop-float {
        display: flex;
    }
}

.desktop-float__btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--sp-2);
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    padding: 10px 12px 10px 14px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    max-width: 44px;           /* icon-only by default */
    transition:
        max-width     300ms ease,
        padding-left  300ms ease,
        box-shadow    var(--transition-base);
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.desktop-float__btn:hover,
.desktop-float__btn:focus-visible {
    max-width: 180px;          /* expands to show label */
    box-shadow: -4px 2px 20px rgba(0, 0, 0, 0.24);
}

.desktop-float__label {
    opacity: 0;
    transition: opacity 200ms ease 60ms;
    flex-shrink: 0;
}

.desktop-float__btn:hover .desktop-float__label,
.desktop-float__btn:focus-visible .desktop-float__label {
    opacity: 1;
}

.desktop-float__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Call */
.desktop-float__btn--call {
    background: var(--clr-espresso);
    color: var(--clr-cream);
}

/* WhatsApp */
.desktop-float__btn--whatsapp {
    background: #25D366;
    color: #fff;
}

/* Directions */
.desktop-float__btn--directions {
    background: var(--clr-bronze);
    color: var(--clr-cream);
}


/* ───────────────────────────────────────────────────────────────────────────
   33. FINAL CTA SECTION (Phase 5)
   ─────────────────────────────────────────────────────────────────────────── */
.final-cta {
    background: var(--clr-espresso);
    color: var(--clr-cream);
    padding-block: var(--section-py);
    text-align: center;
}

/* Decorative top element */
.final-cta__deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    margin-bottom: var(--section-py);
}

.final-cta__deco-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: rgba(212, 184, 150, 0.30);
}

.final-cta__deco-mark {
    color: var(--clr-bronze);
    font-size: var(--text-xl);
    opacity: 0.7;
}

/* Inner layout */
.final-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-10);
}

/* Text block */
.final-cta__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: var(--fw-light);
    line-height: var(--lh-snug);
    letter-spacing: -0.03em;
    color: var(--clr-cream);
    margin-block: var(--sp-4);
}

.final-cta__heading em {
    font-style: italic;
    color: var(--clr-champagne);
}

.final-cta__sub {
    font-size: var(--text-sm);
    color: rgba(212, 184, 150, 0.75);
    line-height: var(--lh-relaxed);
    margin: 0;
}

/* Actions stack */
.final-cta__actions {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.final-cta__btn-call,
.final-cta__btn-wa {
    width: 100%;
    justify-content: flex-start;
    gap: var(--sp-4);
    padding-block: var(--sp-4);
}

.final-cta__btn-call span,
.final-cta__btn-wa span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-align: left;
}

.final-cta__btn-call strong,
.final-cta__btn-wa strong {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
}

.final-cta__btn-call small,
.final-cta__btn-wa small {
    font-size: var(--text-xs);
    opacity: 0.80;
    font-weight: var(--fw-regular);
    letter-spacing: 0;
    text-transform: none;
}

/* Directions row */
.final-cta__dir-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    justify-content: center;
}

.final-cta__dir-row .btn {
    flex: 1;
    min-width: 120px;
    font-size: var(--text-xs);
    justify-content: center;
    gap: var(--sp-1);
}

/* Desktop: split text ↔ actions side-by-side */
@media (min-width: 1024px) {
    .final-cta__inner {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: var(--sp-20);
    }

    .final-cta__text {
        flex: 1;
        max-width: 480px;
        text-align: left;
    }

    .final-cta__text .final-cta__trust-strip,
    .final-cta__text .final-cta__address {
        justify-content: flex-start;
    }

    .final-cta__actions {
        flex-shrink: 0;
        width: 440px;
        align-self: center;
    }

    .final-cta__actions > p {
        text-align: left;
    }
}

/* Rating badge */
.final-cta__badge {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-6);
    background: rgba(253, 250, 245, 0.06);
    border: 1px solid rgba(212, 184, 150, 0.20);
    border-radius: var(--radius-full);
}

.final-cta__stars {
    color: #D4943A;
    font-size: var(--text-lg);
    letter-spacing: 2px;
}

.final-cta__badge-text {
    font-size: var(--text-sm);
    color: var(--clr-champagne);
    opacity: 0.85;
}


/* ───────────────────────────────────────────────────────────────────────────
   34. OFFER SECTION (Phase 6)
   ─────────────────────────────────────────────────────────────────────────── */
.offer-section {
    padding-block: var(--section-py);
    background: var(--clr-ivory);
}

.offer-section__card {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
    padding: var(--sp-12) var(--sp-8);
    background: var(--clr-cream);
    border: 1px solid var(--clr-champagne);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 40px rgba(166, 124, 82, 0.10), var(--shadow-card);
    position: relative;
    overflow: hidden;
}

/* Warm top-edge accent */
.offer-section__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--clr-bronze), transparent);
    border-radius: 0 0 var(--radius-full) var(--radius-full);
}

/* Badge */
.offer-section__badge {
    display: inline-flex;
    align-items: center;
    padding: var(--sp-1) var(--sp-4);
    background: var(--clr-espresso);
    border-radius: var(--radius-full);
    margin-bottom: var(--sp-6);
}

.offer-section__badge-text {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--clr-champagne);
}

/* Heading */
.offer-section__heading {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: var(--fw-light);
    line-height: var(--lh-snug);
    color: var(--clr-espresso);
    margin-bottom: var(--sp-5);
}

.offer-section__heading em {
    font-style: italic;
    color: var(--clr-bronze);
}

/* Copy */
.offer-section__copy {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
    max-width: 42ch;
    margin-inline: auto;
    margin-bottom: var(--sp-6);
}

/* Curiosity hooks */
.offer-section__hooks {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-8);
    text-align: left;
    max-width: 340px;
    margin-inline: auto;
}

.offer-section__hook {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.offer-section__hook-icon {
    color: var(--clr-bronze);
    font-size: var(--text-sm);
    flex-shrink: 0;
}

/* CTAs */
.offer-section__ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-3);
}


/* ───────────────────────────────────────────────────────────────────────────
   35. FUTURE PACING SECTION (Phase 6)
   ─────────────────────────────────────────────────────────────────────────── */
.future-pacing {
    position: relative;
    padding-block: calc(var(--section-py) * 1.4);
    overflow: hidden;
    text-align: center;
}

.future-pacing__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.future-pacing__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.future-pacing__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(42, 36, 32, 0.82) 0%,
        rgba(42, 36, 32, 0.75) 100%
    );
}

.future-pacing__content {
    position: relative;
    z-index: 1;
}

.future-pacing__inner {
    max-width: 620px;
    margin-inline: auto;
}

.future-pacing__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: var(--fw-light);
    line-height: var(--lh-snug);
    letter-spacing: -0.03em;
    color: var(--clr-cream);
    margin-block: var(--sp-6) var(--sp-8);
}

.future-pacing__heading em {
    font-style: italic;
    color: var(--clr-champagne);
}

.future-pacing__copy {
    font-size: var(--text-lg);
    line-height: var(--lh-relaxed);
    color: rgba(249, 245, 238, 0.82);
    max-width: 46ch;
    margin-inline: auto;
    margin-bottom: var(--sp-5);
}

.future-pacing__copy--secondary {
    font-size: var(--text-sm);
    color: rgba(212, 184, 150, 0.75);
}

.future-pacing__cta {
    margin-top: var(--sp-8);
}


/* ───────────────────────────────────────────────────────────────────────────
   36. EXIT INTENT OVERLAY (Phase 6)
   ─────────────────────────────────────────────────────────────────────────── */
.exit-intent {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-6);
    /* Starts invisible; .is-open triggers transition */
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
}

.exit-intent[hidden] {
    display: none !important;
}

.exit-intent.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Backdrop */
.exit-intent__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 36, 32, 0.65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* Card */
.exit-intent__card {
    position: relative;
    z-index: 1;
    background: var(--clr-cream);
    border: 1px solid var(--clr-champagne);
    border-radius: var(--radius-xl);
    padding: var(--sp-10) var(--sp-8);
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
    transform: translateY(-12px);
    transition: transform 280ms ease;
}

.exit-intent.is-open .exit-intent__card {
    transform: translateY(0);
}

/* Bronze top accent */
.exit-intent__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--clr-bronze), transparent);
    border-radius: 0 0 var(--radius-full) var(--radius-full);
}

/* Close button */
.exit-intent__close {
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-4);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.exit-intent__close:hover {
    background: var(--clr-espresso);
    color: var(--clr-cream);
    border-color: var(--clr-espresso);
}

/* Overline */
.exit-intent__overline {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--clr-bronze);
    margin-bottom: var(--sp-3);
}

/* Heading */
.exit-intent__heading {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: var(--fw-light);
    color: var(--clr-espresso);
    margin-bottom: var(--sp-4);
    line-height: var(--lh-snug);
}

/* Copy */
.exit-intent__copy {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
    max-width: 36ch;
    margin-inline: auto;
    margin-bottom: var(--sp-5);
}

/* Trust */
.exit-intent__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--sp-8);
}

/* CTAs */
.exit-intent__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-bottom: var(--sp-5);
}

.exit-intent__wa {
    width: 100%;
    justify-content: center;
}

.exit-intent__ctas .btn--outline,
.exit-intent__ctas .btn--secondary {
    width: 100%;
    justify-content: center;
}

/* Dismiss link */
.exit-intent__dismiss {
    background: none;
    border: none;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
    padding: 0;
}

.exit-intent__dismiss:hover { color: var(--clr-espresso); }

/* Prevent scroll while overlay open */
body.exit-intent-open { overflow: hidden; }


/* ───────────────────────────────────────────────────────────────────────────
   37. FINAL CTA — Phase 6 additions (two-col trust layout)
   ─────────────────────────────────────────────────────────────────────────── */
.final-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-10);
    align-items: center;
    text-align: center;
}

.final-cta__trust-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    margin-block: var(--sp-4);
    font-size: var(--text-sm);
    color: rgba(212, 184, 150, 0.80);
}

.final-cta__trust-item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.final-cta__trust-sep {
    opacity: 0.4;
}

.final-cta__address {
    font-size: var(--text-sm);
    color: rgba(212, 184, 150, 0.65);
    line-height: 2;
    margin-top: var(--sp-4);
}

.final-cta__address p { margin: 0; }

.final-cta__btn-dir {
    width: 100%;
    justify-content: center;
}

@media (min-width: 900px) {
    .final-cta__inner {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .final-cta__trust-strip {
        justify-content: flex-start;
    }

    .final-cta__actions {
        max-width: none;
    }

    .final-cta__btn-dir {
        width: auto;
        align-self: flex-start;
    }
}


/* ───────────────────────────────────────────────────────────────────────────
   38. PHOTO GALLERY
   ─────────────────────────────────────────────────────────────────────────── */

.gallery-section {
    background-color: var(--clr-cream);
}

.gallery-section__sub {
    color: var(--color-text-secondary);
    font-size: var(--text-base);
    max-width: 52ch;
    margin-inline: auto;
    text-align: center;
    margin-top: 0.5rem;
}

/* Mosaic grid — portrait images span 2 rows */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: var(--sp-2);
    margin-top: var(--sp-10);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background-color: var(--clr-espresso);
    cursor: pointer;
}

/* Portrait items fill 2 rows */
.gallery-item--portrait {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Caption overlay */
.gallery-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-2) var(--sp-3);
    background: linear-gradient(to top, rgba(30, 20, 12, 0.82) 0%, transparent 100%);
    color: var(--clr-champagne);
    font-size: var(--text-xs);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-item__caption {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
        gap: var(--sp-3);
    }
}

@media (min-width: 1280px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 240px;
    }
}


/* ───────────────────────────────────────────────────────────────────────────
   39. INTERACTIVE OFFER GAME
   ─────────────────────────────────────────────────────────────────────────── */

/* ── Section shell ───────────────────────────────────────────────────────── */
.offer-game-section {
    background: var(--clr-espresso);
    position: relative;
    overflow: hidden;
}

.offer-game-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/images/why-phoenix.jpg') center / cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.offer-game-section .section__header h2,
.offer-game-section .section__header .eyebrow { color: var(--clr-champagne); }
.offer-game-section .ornament__diamond        { border-color: var(--clr-champagne); }

.offer-game-section__sub {
    color: rgba(212, 184, 150, 0.60);
    font-size: var(--text-base);
    max-width: 48ch;
    margin-inline: auto;
    margin-top: 0.5rem;
}

/* ── Card ────────────────────────────────────────────────────────────────── */
.offer-game-card {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 184, 150, 0.22);
    border-radius: 16px;
    padding: clamp(2rem, 6vw, 3rem) clamp(1.25rem, 5vw, 2.5rem);
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}

/* ── Shared state elements ───────────────────────────────────────────────── */
.offer-game-card__label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-champagne);
    opacity: 0.65;
    margin-bottom: var(--sp-4);
}

.offer-game-card__ornament {
    margin: var(--sp-4) auto;
    justify-content: center;
}

.offer-game-card__pre-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: var(--fw-light);
    color: var(--clr-champagne);
    letter-spacing: var(--ls-wide);
    margin-bottom: var(--sp-3);
    line-height: 1.2;
}

.offer-game-card__pre-copy {
    color: rgba(212, 184, 150, 0.60);
    font-size: var(--text-base);
    margin-bottom: var(--sp-8);
}

.offer-game-card__eligibility {
    font-size: 0.70rem;
    color: rgba(212, 184, 150, 0.38);
    margin-top: var(--sp-6);
    line-height: 1.55;
    max-width: 44ch;
    margin-inline: auto;
}

/* ── Reveal button ───────────────────────────────────────────────────────── */
.offer-reveal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-champagne);
    color: var(--clr-espresso);
    font-size: 0.78rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    padding: var(--sp-4) var(--sp-10);
    min-height: 52px;
    min-width: 220px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.offer-reveal-btn:hover:not(:disabled) {
    background: #c9a370;
    transform: translateY(-1px);
}

.offer-reveal-btn:active:not(:disabled) { transform: translateY(0); }

.offer-reveal-btn.is-loading,
.offer-reveal-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* ── Revealed state ──────────────────────────────────────────────────────── */
@keyframes offer-reveal-in {
    from { opacity: 0; transform: scale(0.96) translateY(10px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

@media (prefers-reduced-motion: no-preference) {
    .offer-game-card__revealed:not([hidden]) {
        animation: offer-reveal-in 0.55s cubic-bezier(.22, 1, .36, 1) both;
    }
}

/* Big discount percentage */
.offer-game-card__discount-wrap {
    margin: var(--sp-6) 0 var(--sp-4);
}

.offer-game-card__discount-pct {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(4.5rem, 14vw, 7.5rem);
    font-weight: var(--fw-light);
    line-height: 1;
    color: var(--clr-champagne);
    letter-spacing: -0.02em;
}

.offer-game-card__discount-badge {
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(212, 184, 150, 0.65);
    margin-top: var(--sp-2);
}

/* ── Offer code ──────────────────────────────────────────────────────────── */
.offer-game-card__code-wrap {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(212, 184, 150, 0.18);
    border-radius: 8px;
    padding: var(--sp-5);
    margin: var(--sp-6) 0;
}

.offer-game-card__code-label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212, 184, 150, 0.55);
    margin-bottom: var(--sp-2);
}

.offer-code-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    flex-wrap: wrap;
}

.offer-code {
    font-family: 'Courier New', 'Courier', monospace;
    font-size: clamp(1rem, 4vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--clr-champagne);
    user-select: all;
    background: none;
    border: none;
}

.offer-copy-btn {
    background: rgba(212, 184, 150, 0.12);
    color: var(--clr-champagne);
    border: 1px solid rgba(212, 184, 150, 0.28);
    border-radius: 4px;
    padding: var(--sp-1) var(--sp-3);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.offer-copy-btn:hover { background: rgba(212, 184, 150, 0.22); }

.offer-copy-btn.is-copied {
    background: rgba(100, 180, 100, 0.18);
    color: #a0dba0;
    border-color: rgba(100, 180, 100, 0.3);
}

.offer-game-card__code-note {
    font-size: 0.68rem;
    color: rgba(212, 184, 150, 0.40);
    margin-top: var(--sp-3);
}

/* ── Service selector ────────────────────────────────────────────────────── */
.offer-service-selector {
    margin: var(--sp-7) 0 var(--sp-6);
}

.offer-service-selector__label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(212, 184, 150, 0.55);
    margin-bottom: var(--sp-4);
}

.offer-service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    justify-content: center;
}

.offer-service-btn {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(212, 184, 150, 0.70);
    border: 1px solid rgba(212, 184, 150, 0.18);
    border-radius: 100px;
    padding: var(--sp-2) var(--sp-4);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.offer-service-btn:hover {
    background: rgba(212, 184, 150, 0.14);
    color: var(--clr-champagne);
    border-color: rgba(212, 184, 150, 0.38);
}

.offer-service-btn.is-selected {
    background: var(--clr-champagne);
    color: var(--clr-espresso);
    border-color: var(--clr-champagne);
    font-weight: var(--fw-medium);
}

.offer-service-btn:focus-visible {
    outline: 2px solid var(--clr-champagne);
    outline-offset: 2px;
}

/* ── CTA group ───────────────────────────────────────────────────────────── */
.offer-game-card__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-top: var(--sp-8);
}

@media (min-width: 480px) {
    .offer-game-card__ctas {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .offer-game-card__ctas .btn {
        flex: 1 1 auto;
        min-width: 148px;
    }
}

/* ── Compact mode (secondary placements) ─────────────────────────────────── */
.offer-game-section--compact {
    padding-block: var(--sp-12);
}

.offer-game-section--compact .offer-game-card {
    padding: var(--sp-8) var(--sp-6);
}

/* ── Focus / keyboard accessibility ─────────────────────────────────────── */
.offer-reveal-btn:focus-visible,
.offer-copy-btn:focus-visible {
    outline: 2px solid var(--clr-champagne);
    outline-offset: 3px;
}


/* ───────────────────────────────────────────────────────────────────────────
   40. PRINT
   ─────────────────────────────────────────────────────────────────────────── */
@media print {
    .site-header,
    .mobile-cta-bar,
    .desktop-cta-strip,
    .mobile-menu { display: none !important; }

    body { font-size: 12pt; color: #000; background: #fff; }
}

/* ═══════════════════════════════════════════════════════════════
   § 40 — Services Menu (Full Treatments Grid)
   ═══════════════════════════════════════════════════════════════ */

.svc-menu-section { padding-block: var(--sp-3xl); }

.svc-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.5rem;
    margin-top: var(--sp-xl);
}

/* Card shell */
.svc-menu-card {
    background: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 1.75rem 1.625rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
    overflow: hidden;
}

.svc-menu-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--accent-bar, var(--clr-gold));
    border-radius: 12px 12px 0 0;
}

/* Accent bar colours */
.svc-menu-card.accent--gold     { --accent-bar: #c9a84c; }
.svc-menu-card.accent--rose     { --accent-bar: #c2786a; }
.svc-menu-card.accent--teal     { --accent-bar: #5a9ea0; }
.svc-menu-card.accent--lavender { --accent-bar: #8a7ab0; }
.svc-menu-card.accent--bronze   { --accent-bar: #a07850; }

.svc-menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

/* Top row */
.svc-menu-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.svc-menu-card__badge {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-bar, var(--clr-gold));
    background: rgba(0,0,0,0.04);
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    white-space: nowrap;
}

.svc-menu-card__duration {
    font-size: 0.68rem;
    color: var(--clr-muted);
    white-space: nowrap;
}

/* Name */
.svc-menu-card__name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-espresso);
    line-height: 1.25;
    margin: 0;
}

/* Tagline */
.svc-menu-card__tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.88rem;
    color: var(--clr-espresso);
    opacity: 0.72;
    line-height: 1.5;
    margin: 0;
}

/* Features */
.svc-menu-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
}

.svc-menu-card__feature {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--clr-text-muted, #555);
}

.svc-menu-card__check {
    color: var(--accent-bar, var(--clr-gold));
    font-size: 0.7rem;
    flex-shrink: 0;
    line-height: 1.6;
}

/* CTAs */
.svc-menu-card__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.svc-menu-card__dir-link {
    font-size: 0.7rem;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    margin-left: auto;
    transition: color 0.2s;
}

.svc-menu-card__dir-link:hover { color: var(--clr-gold); }

/* Bottom footer strip */
.svc-menu-footer {
    margin-top: var(--sp-2xl);
    padding-top: var(--sp-xl);
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
}

.svc-menu-footer__text {
    font-size: 0.92rem;
    color: var(--clr-muted);
    margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 600px) {
    .svc-menu-grid {
        grid-template-columns: 1fr;
    }
    .svc-menu-card__ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .svc-menu-card__dir-link { margin-left: 0; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════
   § 41 — Services Overview (SEO section — dark background)
   ═══════════════════════════════════════════════════════════════ */

.section--espresso {
    background-color: var(--clr-espresso);
    color: var(--color-text-on-dark, #e8ddd0);
}

.svc-overview-section { padding-block: var(--sp-3xl); }

.svc-overview-section .section__header .eyebrow,
.svc-overview-section .section__header h2,
.svc-overview-section .section__header p { color: inherit; }

.svc-overview-section__sub {
    max-width: 56ch;
    margin-inline: auto;
    opacity: 0.7;
    font-size: 0.92rem;
}

.svc-overview-section .ornament__diamond { border-color: rgba(212,184,150,0.4); }

.svc-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: var(--sp-xl);
}

.svc-overview-card {
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,184,150,0.15);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    transition: background 0.22s ease;
}

.svc-overview-card:hover { background: rgba(255,255,255,0.07); }

.svc-overview-card__ornament {
    font-size: 0.75rem;
    color: var(--clr-gold);
    opacity: 0.6;
}

.svc-overview-card__title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-gold);
    margin: 0;
    line-height: 1.3;
}

.svc-overview-card__desc {
    font-size: 0.84rem;
    line-height: 1.65;
    color: rgba(232,221,208,0.75);
    margin: 0;
    flex: 1;
}

.svc-overview-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #25d366;
    text-decoration: none;
    margin-top: 0.25rem;
    transition: opacity 0.2s;
}

.svc-overview-card__cta:hover { opacity: 0.8; }

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

@media print {
    .svc-menu-section,
    .svc-overview-section { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   § 42 — WhatsApp Booking Widget
   ═══════════════════════════════════════════════════════════════ */

/* Section */
.bw-section {
    background: var(--clr-linen);
    padding-block: var(--sp-3xl);
}

.bw-section__sub {
    max-width: 48ch;
    margin-inline: auto;
    opacity: 0.72;
    font-size: 0.92rem;
}

/* Card */
.bw-card {
    background: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 760px;
    margin-inline: auto;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}

/* ── Progress bar ─────────────────────────────────────── */
.bw-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.25rem;
}

.bw-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    position: relative;
    z-index: 1;
}

.bw-progress__dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,0,0,0.07);
    border: 2px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-muted);
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.bw-progress__label {
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-muted);
    transition: color 0.3s;
    white-space: nowrap;
}

.bw-progress__line {
    flex: 1;
    height: 2px;
    background: rgba(0,0,0,0.08);
    min-width: 3rem;
    margin-bottom: 1.3rem;
    transition: background 0.3s;
}

/* Active step */
.bw-progress__step.is-active .bw-progress__dot {
    background: var(--clr-espresso);
    border-color: var(--clr-espresso);
    color: var(--clr-gold);
}
.bw-progress__step.is-active .bw-progress__label {
    color: var(--clr-espresso);
    font-weight: 600;
}

/* Completed step */
.bw-progress__step.is-complete .bw-progress__dot {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-espresso);
}
.bw-progress__step.is-complete .bw-progress__label {
    color: var(--clr-gold);
}

/* ── Step headings ────────────────────────────────────── */
.bw-step__heading {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-espresso);
    margin: 0 0 1.25rem;
}

.bw-step__sub {
    font-size: 0.88rem;
    color: var(--clr-muted);
    margin: -0.75rem 0 1.25rem;
}

/* ── Treatment grid (step 1) ──────────────────────────── */
.bw-treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
    gap: 0.625rem;
    margin-bottom: 1.75rem;
}

.bw-pill--treatment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    background: rgba(0,0,0,0.025);
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 0.75rem 0.875rem;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.18s, background 0.18s, transform 0.15s;
}

.bw-pill--treatment:hover {
    border-color: var(--clr-gold);
    background: rgba(193,154,107,0.06);
    transform: translateY(-1px);
}

.bw-pill--treatment.is-selected {
    border-color: var(--clr-espresso);
    background: var(--clr-espresso);
}
.bw-pill--treatment.is-selected .bw-pill__name { color: var(--clr-gold); }
.bw-pill--treatment.is-selected .bw-pill__badge { color: rgba(212,184,150,0.65); }

.bw-pill__name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-espresso);
    line-height: 1.25;
}

.bw-pill__badge {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-muted);
}

/* ── Field groups (step 2) ────────────────────────────── */
.bw-field {
    margin-bottom: 1.5rem;
}

.bw-field__label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-espresso);
    margin: 0 0 0.625rem;
}

.bw-field__optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--clr-muted);
}

/* Option rows */
.bw-option-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bw-option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0.6rem 1rem;
    background: rgba(0,0,0,0.03);
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    cursor: pointer;
    min-width: 86px;
    text-align: center;
    transition: border-color 0.18s, background 0.18s;
}

.bw-option-btn strong {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-espresso);
    line-height: 1.2;
}

.bw-option-btn span {
    font-size: 0.66rem;
    color: var(--clr-muted);
    line-height: 1.2;
}

.bw-option-btn:hover { border-color: var(--clr-gold); }

.bw-option-btn.is-selected {
    border-color: var(--clr-espresso);
    background: var(--clr-espresso);
}
.bw-option-btn.is-selected strong { color: var(--clr-gold); }
.bw-option-btn.is-selected span   { color: rgba(212,184,150,0.65); }

/* Small option pills (duration) */
.bw-option-btn--sm {
    min-width: unset;
    padding: 0.5rem 0.875rem;
    flex-direction: row;
    gap: 0;
}
.bw-option-btn--sm strong {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Textarea */
.bw-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--clr-espresso);
    background: rgba(0,0,0,0.02);
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.18s;
    line-height: 1.5;
}

.bw-textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
    background: var(--clr-white);
}

.bw-textarea::placeholder { color: rgba(0,0,0,0.3); }

/* ── Message preview (step 3) ─────────────────────────── */
.bw-preview {
    background: #1a1008;
    border: 1px solid rgba(212,184,150,0.2);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.bw-preview__line {
    color: rgba(232,221,208,0.85);
    display: block;
}

.bw-preview__blank { display: block; height: 0.6rem; }

.bw-preview__row {
    display: flex;
    gap: 0.25rem;
    flex-wrap: nowrap;
}

.bw-preview__key {
    color: rgba(212,184,150,0.55);
    white-space: nowrap;
    flex-shrink: 0;
}

.bw-preview__val {
    color: #e8c87a;
    font-weight: 500;
}

/* Send group */
.bw-send-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.bw-send-btn {
    font-size: 1rem;
    padding: 1rem 2rem;
    justify-content: center;
}

.bw-call-btn {
    text-align: center;
    justify-content: center;
}

/* ── Navigation ───────────────────────────────────────── */
.bw-nav {
    display: flex;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.bw-nav--right  { justify-content: flex-end; }
.bw-nav--left   { justify-content: flex-start; }
.bw-nav--split  { justify-content: space-between; }

.bw-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--clr-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0;
    transition: color 0.2s;
}
.bw-back:hover { color: var(--clr-espresso); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 700px) {
    .bw-card { padding: 1.75rem 1.25rem; }

    .bw-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bw-option-row { gap: 0.4rem; }

    .bw-option-btn {
        min-width: 72px;
        padding: 0.55rem 0.625rem;
    }

    .bw-progress__line { min-width: 1.5rem; }
    .bw-progress__label { font-size: 0.58rem; }

    .bw-preview { padding: 1.25rem 1rem; font-size: 0.82rem; }
}

@media (max-width: 400px) {
    .bw-treatment-grid { grid-template-columns: 1fr 1fr; }
}

@media print {
    .bw-section { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   § 43 — Amber button (used across urgency sections)
   ═══════════════════════════════════════════════════════════════ */

.btn--amber {
    background: #e8a020;
    color: #1a0a04;
    border: 2px solid #e8a020;
    font-weight: 700;
}
.btn--amber:hover,
.btn--amber:focus-visible {
    background: #f0b030;
    border-color: #f0b030;
    color: #1a0a04;
}


/* ═══════════════════════════════════════════════════════════════
   § 44 — Live Availability Section
   ═══════════════════════════════════════════════════════════════ */

.lav-section {
    background: #110804;
    color: #f0e8dc;
    padding-block: var(--sp-3xl);
    text-align: center;
}

.lav-container { max-width: 900px; }

/* Pill */
.lav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f0e8dc;
    background: rgba(224,48,48,0.18);
    border: 1px solid rgba(224,48,48,0.4);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.75rem;
}

.lav-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e03030;
    flex-shrink: 0;
    animation: lav-blink 1.4s ease-in-out infinite;
}

@keyframes lav-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

/* Heading */
.lav-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: #f5f0e8;
    margin: 0 0 1.25rem;
}

.lav-heading__gold {
    color: #e8a020;
    font-style: italic;
}

.lav-sub {
    font-size: 1rem;
    color: rgba(240,232,220,0.65);
    max-width: 60ch;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Stats */
.lav-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.lav-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(232,160,32,0.18);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
}

.lav-stat__value {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: #f5f0e8;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.lav-stat__label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e8a020;
}

/* Body: bullets + CTA */
.lav-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2.5rem;
    text-align: left;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.75rem 2rem;
}

.lav-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 240px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}

.lav-bullets li {
    font-size: 0.88rem;
    color: rgba(240,232,220,0.75);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.lav-bullets li::before {
    content: '●';
    color: #e03030;
    font-size: 0.5rem;
    flex-shrink: 0;
    line-height: 1.8;
}

.lav-cta {
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 700px) {
    .lav-stats { grid-template-columns: 1fr; }
    .lav-bullets { grid-template-columns: 1fr; }
    .lav-body { flex-direction: column; text-align: center; }
    .lav-cta { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════
   § 45 — Private Benefits Section
   ═══════════════════════════════════════════════════════════════ */

.pvt-section {
    background: #1a0c04;
    color: #f0e8dc;
    padding-block: var(--sp-3xl);
}

.pvt-container { max-width: 960px; }

/* Label */
.pvt-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e8a020;
    margin-bottom: 2rem;
}

.pvt-label__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e03030;
    animation: lav-blink 1.4s ease-in-out infinite;
}

/* Slot cards */
.pvt-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.pvt-slot {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    padding: 1.25rem 1.125rem;
    transition: border-color 0.2s, background 0.2s;
}

.pvt-slot--active {
    background: rgba(232,160,32,0.12);
    border-color: rgba(232,160,32,0.45);
}

.pvt-slot__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

.pvt-slot__content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pvt-slot__time {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #e8a020;
    text-transform: uppercase;
}

.pvt-slot__arrow { display: none; } /* Hidden — separator in text context */

.pvt-slot__text {
    font-size: 0.88rem;
    color: rgba(240,232,220,0.8);
    line-height: 1.45;
}

.pvt-slot--active .pvt-slot__text { color: #f5f0e8; }

/* Perks strip */
.pvt-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
}

.pvt-perk {
    font-size: 0.82rem;
    color: rgba(240,232,220,0.7);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* CTAs */
.pvt-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.pvt-cta { font-size: 0.88rem; font-weight: 700; }

.pvt-cta--dir {
    background: rgba(255,255,255,0.1);
    color: #f0e8dc;
    border: 1.5px solid rgba(255,255,255,0.18);
}

.pvt-cta--dir:hover {
    background: rgba(255,255,255,0.18);
    color: #f5f0e8;
}

@media (max-width: 700px) {
    .pvt-slots { grid-template-columns: 1fr; }
    .pvt-perks { flex-direction: column; align-items: flex-start; }
    .pvt-ctas  { flex-direction: column; }
    .pvt-cta   { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════
   § 46 — VIP & VVIP Exclusive Section
   ═══════════════════════════════════════════════════════════════ */

.vip-excl-section {
    position: relative;
    overflow: hidden;
    padding-block: var(--sp-3xl);
    color: #f0e8dc;
    isolation: isolate;
}

.vip-excl__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.vip-excl__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,6,1,0.94) 0%, rgba(30,14,4,0.88) 100%);
    z-index: -1;
}

/* Corner badge */
.vip-excl__corner-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #e03030;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.25rem;
    border-radius: 0 0 0 12px;
    z-index: 1;
}

/* Container: two columns */
.vip-excl-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

/* Left column */
.vip-excl__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e8a020;
    margin-bottom: 1.25rem;
}

.vip-excl__crown { font-size: 1rem; }

.vip-excl__heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: #f5f0e8;
    margin: 0 0 1.25rem;
}

.vip-excl__heading-gold {
    color: #e8a020;
    font-style: italic;
    display: block;
}

.vip-excl__copy {
    font-size: 0.97rem;
    color: rgba(240,232,220,0.7);
    line-height: 1.7;
    margin: 0 0 2rem;
    max-width: 52ch;
}

/* Feature grid */
.vip-excl__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    margin-bottom: 2rem;
}

.vip-excl__feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(240,232,220,0.85);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(232,160,32,0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.vip-excl__feature-icon { color: #e8a020; font-size: 0.7rem; flex-shrink: 0; }

/* CTAs */
.vip-excl__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Right column */
.vip-excl__countdown-card {
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(232,160,32,0.25);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    margin-bottom: 1rem;
}

.vip-excl__countdown-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e8a020;
    margin-bottom: 0.75rem;
}

.vip-excl__cd-icon { font-style: normal; }

.vip-excl__countdown {
    font-family: 'Courier New', monospace;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #f5f0e8;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.vip-excl__countdown-sub {
    font-size: 0.78rem;
    color: rgba(240,232,220,0.5);
    margin: 0;
}

.vip-excl__note {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(240,232,220,0.55);
    background: rgba(224,48,48,0.1);
    border: 1px solid rgba(224,48,48,0.25);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    line-height: 1.4;
}

.vip-excl__note-dot { color: #e03030; font-size: 0.6rem; flex-shrink: 0; }

/* Responsive */
@media (max-width: 900px) {
    .vip-excl-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .vip-excl__heading { font-size: clamp(1.75rem, 5vw, 2.25rem); }
}

@media (max-width: 600px) {
    .vip-excl__features { grid-template-columns: 1fr; }
    .vip-excl__ctas { flex-direction: column; }
    .vip-excl__ctas .btn { width: 100%; justify-content: center; }
    .vip-excl__corner-badge { font-size: 0.62rem; padding: 0.5rem 0.875rem; }
}

@media print {
    .lav-section, .pvt-section, .vip-excl-section { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   § 47 — Booking Windows (All 3 Active Simultaneously)
   ═══════════════════════════════════════════════════════════════ */

.bw-section {
    background: #0e0602;
    color: #f0e8dc;
    padding-block: var(--sp-3xl);
}

.bw-container { max-width: 1180px; }

/* ── Header ─────────────────────────────────────────────────── */
.bw-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bw-header__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4caf72;
    margin-bottom: 1rem;
}

.bw-header__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4caf72;
    flex-shrink: 0;
    animation: lav-blink 1.4s ease-in-out infinite;
}

.bw-header__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: #f5f0e8;
    margin: 0 0 1rem;
}

.bw-header__em {
    color: #e8a020;
    font-style: italic;
}

.bw-header__sub {
    font-size: 0.97rem;
    color: rgba(240,232,220,0.6);
    max-width: 56ch;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── Cards grid ─────────────────────────────────────────────── */
.bw-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: start;
}

/* ── Single card ────────────────────────────────────────────── */
.bw-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(76,175,114,0.22);
    border-radius: 16px;
    padding: 1.625rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.25s;
}

.bw-card:hover {
    border-color: rgba(76,175,114,0.45);
}

/* Closed state — window past its deadline */
.bw-card--closed {
    opacity: 0.45;
    border-color: rgba(255,255,255,0.08);
    pointer-events: none;
}

.bw-card--closed .bw-card__pill {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: rgba(240,232,220,0.4);
}

.bw-card--closed .bw-card__pill-dot {
    background: rgba(255,255,255,0.3);
    animation: none;
}

/* Active pill */
.bw-card__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #4caf72;
    background: rgba(76,175,114,0.12);
    border: 1px solid rgba(76,175,114,0.35);
    border-radius: 100px;
    padding: 0.3rem 0.75rem;
    width: fit-content;
}

.bw-card__pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4caf72;
    flex-shrink: 0;
    animation: lav-blink 1.4s ease-in-out infinite;
}

/* Window label */
.bw-card__window-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e8a020;
}

/* Title */
.bw-card__title {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #f5f0e8;
    line-height: 1.3;
    margin: 0;
}

/* Benefits list */
.bw-card__benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bw-card__benefits li {
    font-size: 0.83rem;
    color: rgba(240,232,220,0.72);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    line-height: 1.45;
}

.bw-card__benefits li::before {
    content: '✓';
    color: #4caf72;
    font-size: 0.7rem;
    flex-shrink: 0;
    font-weight: 700;
}

/* Warning */
.bw-card__warning {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    font-size: 0.76rem;
    color: #e8a020;
    background: rgba(232,160,32,0.08);
    border: 1px solid rgba(232,160,32,0.2);
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/* Timer */
.bw-card__timer {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-align: center;
}

.bw-card__timer-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(240,232,220,0.45);
    margin-bottom: 0.4rem;
}

.bw-card__countdown {
    font-family: 'Courier New', monospace;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #f5f0e8;
    letter-spacing: 0.06em;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.bw-card--closed .bw-card__countdown {
    color: rgba(240,232,220,0.3);
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.bw-card__deadline-label {
    font-size: 0.68rem;
    color: rgba(240,232,220,0.4);
    letter-spacing: 0.06em;
}

/* CTA */
.bw-card__cta {
    width: 100%;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    padding-block: 0.9rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.bw-footer {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(240,232,220,0.35);
    letter-spacing: 0.04em;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .bw-cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

@media (max-width: 500px) {
    .bw-card { padding: 1.25rem 1.125rem; }
}

@media print {
    .bw-section { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   § 49 — Live Availability Section
   ═══════════════════════════════════════════════════════════════ */

.live-avail {
    position: relative;
    padding: var(--sp-3xl) 0;
    color: #F0EAE0;
    overflow: hidden;
}

.live-avail__bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/gallery/vip-suite.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.28) saturate(0.6);
    z-index: 0;
}

.live-avail__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,8,5,0.6) 0%, rgba(30,18,10,0.4) 100%);
}

.live-avail__wrap { position: relative; z-index: 1; }

/* Badge */
.live-avail__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: #F0EAE0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-full);
    padding: 0.35em 1em;
    margin-bottom: var(--sp-5);
}

.live-avail__pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #EF4444;
    flex-shrink: 0;
    animation: pulse-ring 1.8s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(1.3); }
}

/* Header */
.live-avail__header {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: var(--sp-10);
}

.live-avail__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--fw-light);
    line-height: var(--lh-snug);
    color: #fff;
    margin-bottom: var(--sp-4);
}

.live-avail__heading em {
    font-style: italic;
    color: #F0931C;
}

.live-avail__sub {
    font-size: var(--text-base);
    line-height: var(--lh-relaxed);
    color: rgba(240,234,224,0.72);
    max-width: 56ch;
    margin-inline: auto;
}

/* Stat cards */
.live-avail__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
    margin-bottom: var(--sp-10);
}

.live-avail__stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: var(--sp-7) var(--sp-6);
    text-align: center;
    backdrop-filter: blur(4px);
}

.live-avail__stat-num {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: var(--fw-light);
    color: #fff;
    line-height: 1;
    margin-bottom: var(--sp-3);
}

.live-avail__stat-label {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: #F0931C;
}

/* Bottom row */
.live-avail__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--sp-8);
    align-items: center;
    padding-top: var(--sp-8);
    border-top: 1px solid rgba(255,255,255,0.12);
}

.live-avail__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.live-avail__bullets li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: var(--text-sm);
    color: rgba(240,234,224,0.82);
    line-height: 1.5;
}

.live-avail__bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F0931C;
    flex-shrink: 0;
}

.live-avail__cta-wrap { flex-shrink: 0; }

.live-avail__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    background: #F0931C;
    color: #0E0A07;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.01em;
    padding: 0.9em 1.6em;
    border-radius: var(--radius-full);
    white-space: nowrap;
    border: none;
    transition: background var(--transition-base), transform var(--transition-base);
}

.live-avail__cta:hover {
    background: #D97C10;
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 767px) {
    .live-avail__stats {
        grid-template-columns: 1fr 1fr;
    }
    .live-avail__stats .live-avail__stat-card:last-child {
        grid-column: 1 / -1;
    }

    .live-avail__bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .live-avail__bullets {
        text-align: left;
        max-width: 340px;
        margin-inline: auto;
    }

    .live-avail__cta-wrap { text-align: center; }

    .live-avail__cta {
        white-space: normal;
        text-align: center;
        justify-content: center;
        width: 100%;
        max-width: 380px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   § 50 — VIP & VVIP Exclusive Section
   ═══════════════════════════════════════════════════════════════ */

.vip-excl {
    color: #F0EAE0;
    overflow: hidden;
}

/* Banner */
.vip-excl__banner {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
    overflow: hidden;
}

.vip-excl__banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/gallery/jacuzzi-wine.jpg');
    background-size: cover;
    background-position: center top;
    filter: brightness(0.22) saturate(0.5);
    z-index: 0;
}

.vip-excl__banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,5,2,0.3) 0%, rgba(8,5,2,0.85) 100%);
}

.vip-excl__off-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #CC2200;
    color: #fff;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    padding: 0.55em 1.1em 0.55em 1.4em;
    border-radius: 0 0 0 var(--radius-lg);
    z-index: 2;
}

.vip-excl__banner-inner {
    position: relative;
    z-index: 1;
}

.vip-excl__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: #D4A853;
    margin-bottom: var(--sp-4);
}

.vip-excl__crown {
    color: #D4A853;
    flex-shrink: 0;
}

.vip-excl__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: var(--fw-light);
    line-height: var(--lh-snug);
    color: #fff;
}

.vip-excl__heading em {
    font-style: italic;
    color: #D4A853;
}

/* Body */
.vip-excl__body {
    background: #0D0906;
    padding: var(--sp-3xl) 0 0;
}

.vip-excl__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--sp-10);
    align-items: start;
    padding-bottom: var(--sp-3xl);
}

.vip-excl__desc {
    font-size: var(--text-base);
    line-height: var(--lh-relaxed);
    color: rgba(240,234,224,0.75);
    max-width: 54ch;
    margin-bottom: var(--sp-8);
}

/* Feature pills */
.vip-excl__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sp-8);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
}

.vip-excl__feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 0.85em 1em;
    font-size: var(--text-sm);
    color: rgba(240,234,224,0.9);
    line-height: 1.4;
}

.vip-excl__feat-icon {
    color: #D4A853;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* CTAs */
.vip-excl__ctas {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
}

.vip-excl__wa-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: #22C55E;
    color: #fff;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    padding: 0.85em 1.5em;
    border-radius: var(--radius-md);
    border: none;
    transition: background var(--transition-base), transform var(--transition-base);
}

.vip-excl__wa-btn:hover {
    background: #16A34A;
    transform: translateY(-1px);
}

.vip-excl__call-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: #F0931C;
    color: #0E0A07;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    padding: 0.85em 1.5em;
    border-radius: var(--radius-md);
    border: none;
    transition: background var(--transition-base), transform var(--transition-base);
}

.vip-excl__call-btn:hover {
    background: #D97C10;
    transform: translateY(-1px);
}

/* Sidebar */
.vip-excl__sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.vip-excl__sidebar-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: var(--sp-6) var(--sp-7);
    padding: 30px;
}

.vip-excl__sidebar-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: rgba(240,234,224,0.55);
    margin-bottom: var(--sp-3);
}

.vip-excl__slot-count {
    display: flex;
    align-items: baseline;
    gap: 0.1em;
    margin-bottom: var(--sp-3);
}

.vip-excl__slot-num {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--fw-light);
    color: #fff;
    line-height: 1;
}

.vip-excl__slot-denom {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: rgba(240,234,224,0.5);
    line-height: 1;
}

.vip-excl__countdown {
    font-family: var(--font-ui);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--fw-semibold);
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: var(--sp-3);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.vip-excl__sidebar-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-xs);
    color: rgba(240,234,224,0.5);
    line-height: 1.4;
}

/* Scarcity bar */
.vip-excl__scarcity {
    background: rgba(204,34,0,0.15);
    border-top: 1px solid rgba(204,34,0,0.3);
    padding: var(--sp-4) 0;
}

.vip-excl__scarcity p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--text-sm);
    color: rgba(240,200,190,0.85);
    line-height: 1.5;
}

/* Shared pulse dot (reused in both sections) */
.vip-excl__pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #EF4444;
    flex-shrink: 0;
    animation: pulse-ring 1.8s ease-in-out infinite;
}

/* Mobile */
@media (max-width: 1023px) {
    .vip-excl__grid {
        grid-template-columns: 1fr;
    }

    .vip-excl__sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .vip-excl__sidebar-card {
        flex: 1;
        min-width: 220px;
    }
}

@media (max-width: 599px) {
    .vip-excl__features {
        grid-template-columns: 1fr;
    }

    .vip-excl__sidebar {
        flex-direction: column;
    }

    .vip-excl__sidebar-card { min-width: 0; }

    .vip-excl__ctas {
        flex-direction: column;
    }

    .vip-excl__wa-btn,
    .vip-excl__call-btn {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════
   § 48 — Services Menu Card — Photo Header
   ═══════════════════════════════════════════════════════════════ */

.svc-menu-card__img-wrap {
    /* Bleed to card edges, sit above the content padding */
    margin: -1.75rem -1.625rem 0.25rem;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
    position: relative;
}

/* Subtle espresso gradient at the bottom so the accent bar & badge float cleanly */
.svc-menu-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 40% 0 0 0;
    background: linear-gradient(to bottom, transparent, rgba(44,26,14,0.55));
    pointer-events: none;
}

.svc-menu-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.svc-menu-card:hover .svc-menu-card__img {
    transform: scale(1.05);
}

/* Accent bar now overlays the image top edge — keep it visible */
.svc-menu-card::before { z-index: 1; }


/* ═══════════════════════════════════════════════════════════════════════════
   § R — COMPLETE RESPONSIVE REMEDIATION
   Zero horizontal scroll at 320 px – 1920 px.
   Fixes are additive — they override only where the existing layout fails.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── R1. Root containment ────────────────────────────────────────────────── */
html {
    width: 100%;
    overflow-x: hidden;
}
body {
    width: 100%;
    max-width: 100%;
    /* overflow-x: hidden already set in § 2 — kept here for explicitness */
}

/* ── R2. Global image safety ─────────────────────────────────────────────── */
img,
video,
svg {
    max-width: 100%;
}
/* Explicit height:auto only on non-aspect-ratio images */
/*img:not([style*="height"]) {*/
/*    height: auto;*/
/*}*/

/* ── R3. Long-string overflow — email / phone / address / URL ────────────── */
address,
.site-footer__link,
.site-footer__copy,
.location-detail__text,
.location-phone-link,
.faq-item__body p,
.hero__location span {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Never break headings or button text */
h1, h2, h3, h4, h5, h6,
.btn {
    overflow-wrap: normal;
    word-break: normal;
}

/* ── R4. Button touch targets ────────────────────────────────────────────── */
.btn {
    min-height: 44px;
}
@media (max-width: 1023px) {
    .btn { min-height: 48px; }
    /* Compact variants keep 44px minimum */
    .btn--sm { min-height: 44px; }
}

/* ── R5. Announcement bar ────────────────────────────────────────────────── */
/*
   Close button is position:absolute; right:var(--sp-4) on the bar.
   Add right padding so the text content doesn't slide under it.
*/
.announcement-bar__inner {
    padding-right: calc(var(--container-pad) + 2rem);
}
@media (max-width: 479px) {
    .announcement-bar__text  { font-size: 0.7rem; line-height: 1.4; }
    .announcement-bar__cta   { font-size: 0.7rem; }
    .announcement-bar__close { right: var(--sp-3); padding: var(--sp-2); }
}

/* ── R6. Hero section ────────────────────────────────────────────────────── */
/* CTA buttons — true full-width on mobile so they never clip */
@media (max-width: 767px) {
    .btn--hero-call,
    .btn--hero-whatsapp,
    .btn--hero-directions {
        width: 100%;
        max-width: 100%;
    }
    /* Reduce gap between hero buttons on very small screens */
    .hero__ctas { gap: var(--sp-3); }
}

/* Trust strip — vertical stack below 480px */
@media (max-width: 479px) {
    .hero__trust {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-2);
        padding: var(--sp-3);
        border-radius: var(--radius-md);
    }
    .hero__trust-divider { display: none; }
    .hero__trust-item    { gap: var(--sp-2); }
    .hero__trust-hours   { display: block; }
}

/* ── R7. Trust bar ───────────────────────────────────────────────────────── */
@media (max-width: 479px) {
    .trust-bar__item-text {
        white-space: normal;
        font-size: var(--text-xs);
    }
    .trust-bar__inner {
        gap: var(--sp-4) var(--sp-5);
    }
}

/* ── R8. Mobile menu ─────────────────────────────────────────────────────── */
/* Clamp panel to dynamic viewport height (handles iOS address bar) */
@media (max-width: 1023px) {
    .mobile-menu {
        max-height: 100dvh;
    }
}

/* ── R9. Gallery ─────────────────────────────────────────────────────────── */
/* At 479px two columns are only ~140px wide — collapse to one */
@media (max-width: 479px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .gallery-item--portrait { grid-row: span 1; }
}

/* ── R10. Needs-filter CTA row ───────────────────────────────────────────── */
@media (max-width: 479px) {
    .needs-filter__cta-row {
        flex-direction: column;
        align-items: stretch;
    }
    .needs-filter__cta-row .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── R11. Services menu cards ────────────────────────────────────────────── */
/* Fix negative image-bleed margin on very narrow phones */
@media (max-width: 374px) {
    .svc-menu-card { padding: 1.25rem 1rem; }
    .svc-menu-card__img-wrap {
        margin: -1.25rem -1rem 0.25rem;
    }
}
/* Collapse CTAs to column on tiny screens */
@media (max-width: 479px) {
    .svc-menu-card__ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .svc-menu-card__ctas .btn {
        width: 100%;
        justify-content: center;
    }
    .svc-menu-card__dir-link {
        margin-left: 0;
        justify-content: center;
    }
}

/* ── R12. Couple section heading ─────────────────────────────────────────── */
@media (max-width: 479px) {
    .couple-section__heading {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

/* ── R13. Premium cards ──────────────────────────────────────────────────── */
@media (max-width: 479px) {
    .premium-card__body { padding: var(--sp-5); }
}

/* ── R14. Offer section card ─────────────────────────────────────────────── */
@media (max-width: 479px) {
    .offer-section__card { padding: var(--sp-8) var(--sp-4); }
}

/* ── R15. Offer game card & code ─────────────────────────────────────────── */
/* Offer code must never overflow */
.offer-code-row { flex-wrap: wrap; }
.offer-code {
    overflow-wrap: anywhere;
    word-break: break-all;
}
@media (max-width: 374px) {
    .offer-game-card { padding: 1.5rem 1rem; }
}

/* ── R16. Live availability stats ────────────────────────────────────────── */
/* Already 2-col at 767px; collapse to 1-col below 479px */
@media (max-width: 479px) {
    .live-avail__stats {
        grid-template-columns: 1fr;
    }
    .live-avail__stats .live-avail__stat-card:last-child {
        grid-column: auto;
    }
}

/* ── R17. VIP section sidebar ────────────────────────────────────────────── */
/* min-width:220px cards can overflow at 360px when flex-direction:row */
@media (max-width: 479px) {
    .vip-excl__sidebar {
        flex-direction: column;
    }
    .vip-excl__sidebar-card { min-width: 0; width: 100%; }
}
/* Badge: shrink on small phones */
@media (max-width: 479px) {
    .vip-excl__off-badge {
        font-size: var(--text-xs);
        padding: 0.4em 0.8em 0.4em 1em;
        letter-spacing: var(--ls-wide);
    }
}

/* ── R18. Map height ─────────────────────────────────────────────────────── */
@media (max-width: 479px) {
    .location-map-iframe { height: 260px; }
}
@media (min-width: 480px) and (max-width: 767px) {
    .location-map-iframe { height: 300px; }
}

/* ── R19. Location CTAs ──────────────────────────────────────────────────── */
@media (max-width: 399px) {
    .location-ctas { grid-template-columns: 1fr; }
}

/* ── R20. Final CTA section ──────────────────────────────────────────────── */
@media (max-width: 479px) {
    .final-cta__heading {
        font-size: clamp(2rem, 9vw, 3rem);
    }
    .final-cta__actions { max-width: 100%; }
}

/* ── R21. Exit intent modal ──────────────────────────────────────────────── */
.exit-intent__card {
    width: min(92vw, 460px);
    max-height: 90dvh;
    overflow-y: auto;
}

/* ── R22. Booking widget ─────────────────────────────────────────────────── */
@media (max-width: 479px) {
    .bw-card { padding: 1.5rem 1rem; }
    .bw-treatment-grid { grid-template-columns: 1fr; }
}

/* ── R23. Services overview (SEO section) ────────────────────────────────── */
@media (max-width: 399px) {
    .svc-overview-grid { grid-template-columns: 1fr; }
}

/* ── R24. Tablet section padding reduction (640–1023px) ─────────────────── */
@media (min-width: 640px) and (max-width: 1023px) {
    .premium-card__body { padding: var(--sp-8) var(--sp-10); }
    .section__header { margin-bottom: var(--sp-8); }
}

/* ── R25. Reduced motion — disable all animations ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration:       0.01ms !important;
        animation-iteration-count: 1     !important;
        transition-duration:      0.01ms !important;
        scroll-behavior:          auto   !important;
    }
    /* Keep pulsing dots visible but static */
    .lav-pill__dot,
    .pvt-label__dot,
    .bw-header__dot,
    .bw-card__pill-dot,
    .vip-excl__pulse-dot,
    .live-avail__pulse-dot {
        animation: none;
        opacity: 1;
    }
    /* Keep reveal elements visible immediately */
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ── R26. Safe-area: sticky bar already uses env() — protect page bottom ─── */
@media (max-width: 1023px) {
    /* Existing rule is calc(72px + env(safe-area-inset-bottom)).
       Ensure page content above the sticky bar is never obscured. */
    .site-footer {
        padding-bottom: calc(var(--sp-8) + env(safe-area-inset-bottom, 0px));
    }
}

/* ── R27. Iframe & map overflow protection ───────────────────────────────── */
iframe {
    max-width: 100%;
    border: 0;
}
.location-map-wrap {
    overflow: hidden; /* already set, belt-and-suspenders */
}

/* ── R28. Focus ring — keyboard accessibility ────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--clr-bronze);
    outline-offset: 3px;
}
.btn:focus-visible {
    outline: 2px solid var(--clr-bronze);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(168, 120, 72, 0.20);
}

/* ── R29. Tablet hero (480–767px) ────────────────────────────────────────── */
/* Hero stacks on mobile; partial-tablet (480–767px) tighten up */
@media (min-width: 480px) and (max-width: 767px) {
    .hero__content {
        padding: var(--sp-8) var(--container-pad) var(--sp-10);
    }
    .hero__ctas { max-width: 480px; }
}

/* ── R30. Prevent hero image from overflowing on tiny viewports ──────────── */
@media (max-width: 479px) {
    .hero__image-wrap {
        aspect-ratio: 4 / 3; /* taller crop on phones = less vertical space wasted */
    }
}

