/* ============================================
   Thai Healing Massage 8 — Brand Design System
   Royal Purple · Navy · Lavender · Soft Purple · Gold
   ============================================ */

:root {
    /* Brand board palette */
    --royal-purple: #5C2D91;
    --navy: #0A1628;
    --lavender: #9B7EBD;
    --soft-purple: #C9B8E0;
    --brand-gold: #C9A227;

    --primary: #5C2D91;
    --primary-dark: #45206E;
    --primary-light: #9B7EBD;
    --primary-glow: rgba(92, 45, 145, 0.28);
    --secondary: #0A1628;
    --secondary-light: #142240;
    --secondary-mid: #1E3560;
    --accent: #9B7EBD;
    --accent-dark: #5C2D91;
    --accent-light: #C9B8E0;
    --sage: #7A9E7E;
    --sage-light: #A8C4AB;
    --gold: #C9A227;
    --gold-light: #E0C65A;
    --beige: #F0EBF5;
    --cream: #F7F4FA;
    --cream-dark: #EDE6F4;
    --white: #FFFFFF;
    --text: #1A1520;
    --text-light: #4A4455;
    --text-muted: #7A7485;
    --border: #D9D0E4;
    --on-dark: #FFFFFF;
    --on-dark-muted: rgba(255, 255, 255, 0.78);
    --on-dark-subtle: rgba(255, 255, 255, 0.65);
    --surface-dark-end: #142240;
    --star: var(--gold);
    --badge-open-bg: rgba(122, 158, 126, 0.2);
    --badge-open-text: #5A8260;
    --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 24px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 8px 48px rgba(10, 22, 40, 0.16);
    --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.22);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --nav-height: 88px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Section Shared ---- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 12px;
}
.section-label::before {
    content: '◆';
    font-size: 0.45rem;
    color: var(--primary-light);
    margin-right: 10px;
    vertical-align: middle;
    opacity: 0.9;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
.section-subtitle a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.section-subtitle a:hover { color: var(--primary-dark); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, #A8861A 100%);
    color: var(--secondary);
    border-color: var(--gold);
    font-weight: 700;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #E8D070 0%, var(--gold-light) 55%, var(--gold) 100%);
    border-color: var(--gold-light);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 162, 39, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-service {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary);
}
.btn-service:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.bs-live-note--placeholder {
    background: rgba(107, 63, 160, 0.1);
    border: 1px dashed rgba(107, 63, 160, 0.35);
    color: var(--text-light);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ============================================
   Announcement Bar
   ============================================ */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 38px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary-dark) 50%, var(--secondary) 100%);
    color: var(--accent-light);
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}
.announcement-bar.is-hidden { transform: translateY(-100%); pointer-events: none; }
.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    height: 100%;
    padding: 0 56px 0 20px;
    position: relative;
    flex-wrap: nowrap;
    min-width: 0;
}
.announcement-bar > .container > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--accent-light);
}
.announcement-bar > .container > span:first-child > span {
    overflow: hidden;
    text-overflow: ellipsis;
}
.announcement-bar i.fa-sparkles,
.announcement-bar i.fa-solid.fa-sparkles { color: var(--gold); flex-shrink: 0; }
.announcement-bar p { margin: 0; }
.announcement-bar a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 1px;
    flex-shrink: 0;
    white-space: nowrap;
}
.announcement-bar a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.ann-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, color 0.2s ease;
}
.ann-close:hover { background: rgba(255,255,255,0.18); color: var(--white); }
.announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
}

/* ============================================
   Navigation — Luxury
   ============================================ */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(10, 22, 40, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}
.nav-backdrop.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    padding: 0;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(107, 63, 160, 0.35);
    box-shadow: 0 4px 30px rgba(10, 22, 40, 0.25);
    transition: var(--transition);
}
.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 95, 196, 0.55), transparent);
    pointer-events: none;
}
.navbar.scrolled {
    background: rgba(10, 22, 40, 0.99);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.35);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--nav-height);
    gap: 20px;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1003;
    flex-shrink: 0;
}
.logo-icon {
    font-size: 1.6rem;
    color: var(--primary-light);
    transition: var(--transition);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.navbar .logo-icon,
.navbar.scrolled .logo-icon { color: var(--primary); }
.footer-logo .logo-icon { width: 32px; height: 32px; }

.logo-img {
    height: 54px;
    width: auto;
    flex-shrink: 0;
    display: block;
    transition: var(--transition);
}
.navbar .logo-img,
.navbar.scrolled .logo-img { height: 50px; }
.navbar.scrolled .logo-img { height: 46px; }
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
    filter: brightness(1.05);
}
.footer-logo-img--lockup {
    height: auto;
    width: min(220px, 100%);
    max-height: 200px;
    border-radius: 12px;
}
.logo-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(0.62rem, 1.1vw, 0.82rem);
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
    max-width: 11rem;
}
@media (min-width: 1025px) and (max-width: 1320px) {
    .logo-name { max-width: 9.5rem; font-size: 0.68rem; letter-spacing: 1.2px; }
}
.logo-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.52rem;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    transition: var(--transition);
    font-weight: 600;
    margin-left: 0;
    border-left: none;
    padding-left: 0;
    line-height: 1.4;
}
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-left: 4px;
}
@media (max-width: 767px) {
    .logo-text { display: none; }
}
@media (max-width: 1280px) {
    .logo-tagline { display: none; }
}
@media (max-width: 600px) {
    .logo-img { height: 46px; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    min-width: 0;
}
.nav-mobile-header,
.nav-mobile-footer { display: none; list-style: none; }

.nav-links > li:not(.nav-phone):not(.nav-cta):not(.nav-mobile-header):not(.nav-mobile-footer) > a,
.nav-links .nav-locations-trigger {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 500;
    font-size: 0.78rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease;
}
.nav-links > li:not(.nav-phone):not(.nav-cta):not(.nav-mobile-header):not(.nav-mobile-footer) > a::before,
.nav-links .nav-locations-trigger::before {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.nav-links > li > a:hover,
.nav-links .nav-locations-trigger:hover,
.navbar.scrolled .nav-links > li > a:hover {
    color: var(--primary-light);
    background: rgba(107, 63, 160, 0.18);
}
.nav-links > li > a:hover::before,
.nav-links .nav-locations-trigger:hover::before,
.nav-links > li > a.active::before,
.nav-links .nav-locations-trigger.active::before {
    transform: scaleX(1);
}

@media (min-width: 1025px) and (max-width: 1180px) {
    .nav-links > li > a,
    .nav-links .nav-locations-trigger { padding: 8px 10px; font-size: 0.72rem; letter-spacing: 0.8px; }
}

/* Desktop nav — 3-column grid prevents logo / links / utility overlap */
@media (min-width: 1025px) {
    .nav-container {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 14px;
    }
    .logo {
        grid-column: 1;
        z-index: 2;
    }
    .nav-links {
        grid-column: 2;
        flex: unset;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        justify-content: center;
        justify-self: center;
    }
    .nav-utility {
        grid-column: 3;
        display: flex;
        justify-self: end;
        margin-left: 0;
        z-index: 2;
    }
    .nav-links > li > a.active::after,
    .nav-links .nav-locations-trigger.active::after { display: none; }
}

/* Progressive compaction — hide lower-priority items before they collide */
@media (min-width: 1025px) and (max-width: 1320px) {
    .nav-item-gift { display: none; }
    .nav-phone-link span[data-loc-phone-text] { display: none; }
    .nav-phone-link {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
        gap: 0;
    }
}
@media (min-width: 1025px) and (max-width: 1200px) {
    .nav-item-compact { display: none; }
    .logo-text { display: none; }
    .nav-links > li:not(.nav-mobile-header):not(.nav-mobile-footer) > a,
    .nav-links .nav-locations-trigger {
        padding: 8px 8px;
        font-size: 0.68rem;
        letter-spacing: 0.5px;
    }
    .btn-book-nav {
        padding: 10px 16px !important;
        font-size: 0.72rem !important;
    }
    .nav-book-suffix { display: none; }
    .nav-utility { gap: 10px; }
}
@media (min-width: 1025px) and (max-width: 1080px) {
    .nav-item-team { display: none; }
}

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.14);
    min-width: 220px;
    padding: 8px 0;
    z-index: 100;
    border: 1px solid rgba(107, 63, 160, 0.25);
    overflow: hidden;
}
.nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.nav-locations-dropdown .nav-locations-trigger { display: inline-flex; align-items: center; gap: 7px; }
.nav-loc-chevron { font-size: 0.5rem; color: var(--gold); transition: transform 0.25s ease; }
.nav-locations-dropdown:hover .nav-loc-chevron,
.nav-locations-dropdown.open .nav-loc-chevron { transform: rotate(180deg); }
.nav-locations-dropdown .loc-nav-menu { min-width: 300px; padding: 10px 0 6px; }
.loc-nav-option {
    display: flex; flex-direction: column; align-items: flex-start; width: 100%;
    padding: 14px 22px; border: none; background: transparent; text-align: left; cursor: pointer;
    font-family: inherit; border-bottom: 1px solid rgba(221, 212, 196, 0.6);
    transition: background 0.2s ease;
}
.loc-nav-option:last-of-type { border-bottom: none; }
.loc-nav-option:hover, .loc-nav-option.active { background: var(--cream); }
.loc-nav-option--soon { opacity: 0.65; cursor: default; }
.loc-nav-option-main { font-weight: 600; font-size: 0.88rem; color: var(--secondary); letter-spacing: 0; text-transform: none; }
.loc-nav-option-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; letter-spacing: 0; text-transform: none; }
.loc-nav-check { color: var(--gold); font-size: 0.75rem; }
.loc-nav-divider { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 6px; }
.loc-nav-all {
    display: flex !important; align-items: center; gap: 8px;
    font-weight: 600 !important; color: var(--primary) !important; font-size: 0.82rem !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
}
.loc-nav-all:hover { background: var(--cream) !important; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text) !important;
    font-size: 0.85rem;
    letter-spacing: 0;
    text-transform: none;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--primary) !important; }

.nav-phone a,
.navbar.scrolled .nav-phone a {
    color: var(--primary) !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
    font-size: 0.84rem;
}
.nav-phone a i {
    color: var(--gold);
    margin-right: 4px;
}

/* Desktop utility cluster — phone + book, separate from menu links */
.nav-utility {
    display: none;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-left: 8px;
}
.nav-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.2px;
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid rgba(139, 95, 196, 0.45);
    background: rgba(107, 63, 160, 0.18);
    transition: var(--transition);
}
.nav-phone-link i {
    color: var(--primary-light);
    font-size: 0.82rem;
}
.nav-phone-link:hover {
    color: var(--white);
    border-color: var(--primary-light);
    background: rgba(107, 63, 160, 0.32);
    box-shadow: 0 4px 16px rgba(107, 63, 160, 0.25);
}
.nav-utility-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, rgba(139, 95, 196, 0.55), transparent);
    flex-shrink: 0;
}

.btn-book-nav {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%) !important;
    color: var(--white) !important;
    padding: 11px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.78rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: 1px solid rgba(139, 95, 196, 0.5) !important;
    box-shadow: 0 4px 18px rgba(107, 63, 160, 0.35);
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-book-nav:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-light) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 63, 160, 0.45);
}
.btn-book-nav::before { display: none; }

.nav-actions {
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 1003;
}
.phone-link,
.navbar.scrolled .phone-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.18), rgba(107, 63, 160, 0.12));
    border: 1px solid rgba(107, 63, 160, 0.35);
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.88rem;
    transition: var(--transition);
}
.phone-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.mobile-book { font-size: 0.8rem; padding: 8px 16px !important; }

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--secondary-light), var(--primary-dark));
    border: 1px solid rgba(139, 95, 196, 0.45);
    border-radius: 50%;
    cursor: pointer;
    padding: 0 12px;
    z-index: 1003;
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.3);
    transition: var(--transition);
}
.hamburger:hover {
    border-color: var(--primary-light);
    box-shadow: 0 6px 20px rgba(107, 63, 160, 0.4);
}
.hamburger span,
.navbar.scrolled .hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--primary-light);
    transition: var(--transition);
    border-radius: 2px;
}
.hamburger.active {
    background: var(--secondary);
    border-color: var(--primary-light);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(6px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: 0;
        width: min(92vw, 380px);
        height: calc(100dvh - var(--nav-height));
        height: calc(100vh - var(--nav-height));
        z-index: 1002;
        background:
            linear-gradient(165deg, var(--secondary) 0%, #121f38 42%, var(--primary-dark) 100%);
        flex-direction: column;
        flex: none;
        justify-content: flex-start;
        padding: 0;
        gap: 0;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -12px 0 60px rgba(10, 22, 40, 0.45);
        overflow-y: auto;
        overflow-x: hidden;
        align-items: stretch;
        transform: translateX(105%);
        border-left: 1px solid rgba(139, 95, 196, 0.25);
    }
    .nav-links.open { transform: translateX(0); }

    .phone-link { display: none !important; }

    .nav-mobile-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 24px 22px;
        border-bottom: 1px solid rgba(139, 95, 196, 0.2);
        background:
            radial-gradient(circle at 50% 0%, rgba(139, 95, 196, 0.12) 0%, transparent 55%);
        flex-shrink: 0;
    }
    .nav-mobile-logo {
        height: 56px;
        width: auto;
        margin-bottom: 12px;
        filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
    }
    .nav-mobile-brand {
        font-family: var(--font-display);
        font-size: 1.15rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold-light);
        margin-bottom: 8px;
    }
    .nav-mobile-tagline {
        font-size: 0.72rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--on-dark-muted);
        line-height: 1.5;
    }

    .nav-links > li:not(.nav-mobile-header):not(.nav-mobile-footer) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-links > li > a,
    .nav-links .nav-locations-trigger {
        color: rgba(255, 255, 255, 0.92) !important;
        padding: 18px 28px;
        font-size: 0.82rem;
        letter-spacing: 2px;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent !important;
    }
    .nav-links > li > a::before,
    .nav-links .nav-locations-trigger::before { display: none; }
    .nav-links > li > a:hover,
    .nav-links .nav-locations-trigger:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        color: var(--gold-light) !important;
        padding-left: 32px;
    }
    .nav-links > li > a.active,
    .nav-links .nav-locations-trigger.active {
        color: var(--primary-light) !important;
        background: rgba(107, 63, 160, 0.18) !important;
        box-shadow: inset 3px 0 0 var(--primary-light);
    }
    .nav-links a.active::after { display: none; }

    .nav-dropdown .dropdown-menu,
    .nav-locations-dropdown .loc-nav-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        display: none;
        background: rgba(0, 0, 0, 0.18);
        min-width: 0;
    }
    .nav-dropdown .dropdown-menu::before { display: none; }
    .nav-dropdown.open .dropdown-menu,
    .nav-locations-dropdown.open .loc-nav-menu { display: block; }

    .loc-nav-option {
        padding: 16px 28px 16px 36px;
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }
    .loc-nav-option-main { color: var(--white); }
    .loc-nav-option-sub { color: var(--on-dark-subtle); }
    .loc-nav-option:hover, .loc-nav-option.active {
        background: rgba(139, 95, 196, 0.1);
    }
    .loc-nav-all {
        color: var(--gold-light) !important;
        padding: 16px 28px !important;
    }
    .loc-nav-all:hover { background: rgba(255,255,255,0.05) !important; }

    .nav-mobile-footer {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 24px 24px calc(28px + env(safe-area-inset-bottom));
        margin-top: auto;
        border-top: 1px solid rgba(139, 95, 196, 0.25);
        background: rgba(0, 0, 0, 0.15);
        flex-shrink: 0;
    }
    .nav-mobile-book {
        width: 100%;
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%) !important;
        border-color: var(--primary-light) !important;
        color: var(--white) !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        box-shadow: 0 8px 24px rgba(107, 63, 160, 0.35);
    }
    .nav-mobile-book:hover {
        background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-light) 100%) !important;
        color: var(--white) !important;
    }
    .nav-mobile-call {
        width: 100%;
        color: var(--white) !important;
        border-color: rgba(255, 255, 255, 0.35) !important;
        background: transparent !important;
    }
    .nav-mobile-call:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: var(--gold) !important;
        color: var(--gold-light) !important;
    }
    .nav-mobile-locations {
        text-align: center;
        font-size: 0.78rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--on-dark-muted);
        padding: 8px 0 0;
    }
    .nav-mobile-locations i { color: var(--gold); margin-right: 6px; }
    .nav-mobile-locations:hover { color: var(--gold-light); }

    .nav-actions { display: flex; }
    .nav-utility { display: none !important; }
    .nav-phone, .nav-cta { display: none !important; }
}

body.nav-open .navbar {
    background: rgba(10, 22, 40, 0.98);
    border-bottom-color: rgba(139, 95, 196, 0.4);
}
body.nav-open .logo-img { filter: brightness(1.15); }
body.nav-open .hamburger {
    position: relative;
    z-index: 1004;
}

@media (max-width: 1024px) {
    .nav-links > li > a.active,
    .nav-links .nav-locations-trigger.active {
        color: var(--gold-light) !important;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--nav-height);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=1920&h=1080&fit=crop') center 30%/cover no-repeat,
        linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    z-index: 0;
    animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0%   { transform: scale(1.05) translateY(0); }
    100% { transform: scale(1.15) translateY(-1.5%); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(92, 45, 145, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(10, 22, 40, 0.4) 0%, transparent 50%),
        linear-gradient(180deg,
            rgba(10, 22, 40, 0.78) 0%,
            rgba(10, 22, 40, 0.58) 45%,
            rgba(10, 22, 40, 0.92) 100%
        );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 20px;
}
.hero-badge {
    display: inline-block;
    background: rgba(10, 22, 40, 0.45);
    border: 1px solid rgba(201, 162, 39, 0.65);
    color: var(--gold-light);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--gold-light);
    font-weight: 500;
    font-style: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero .btn-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, #A8861A 100%);
    border-color: var(--gold);
    color: var(--secondary);
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 700;
}
.hero .btn-primary:hover {
    background: linear-gradient(135deg, #E8D070 0%, var(--gold-light) 55%, var(--gold) 100%);
    border-color: var(--gold-light);
    color: var(--secondary);
}
.hero .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    padding: 16px 36px;
    font-size: 0.95rem;
}
.hero .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}
.hero-info {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}
.hero-info-item i { color: var(--gold); }
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}
.hero-scroll span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}
.trust-item i {
    font-size: 1.1rem;
    color: var(--primary);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 100px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-feature i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}
.about-feature strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.about-feature span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Benefits of Massage Therapy */
.benefits-section {
    padding: 80px 0;
    background: var(--cream);
}
.benefits-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.benefits-grid li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.45;
}
.benefits-grid li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 350px; }
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.05); }
.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.service-card-body {
    padding: 28px;
}
.service-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.service-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}
.service-pricing {
    margin-bottom: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.88rem;
}
.price-row .price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}
.service-addon {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.service-addon i { color: var(--primary); margin-right: 4px; }

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: var(--transition);
}
.gallery-item:hover::after {
    background: rgba(0,0,0,0.2);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-large { grid-column: span 2; }
.gallery-large img { height: 320px; }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-large { grid-column: span 2; }
    .gallery-item img { height: 200px; }
    .gallery-large img { height: 220px; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-large { grid-column: span 1; }
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews-section {
    padding: 100px 0;
    background: var(--cream);
}
.reviews-widget-wrap {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.reviews-widget-wrap iframe {
    display: block;
    width: 100%;
    height: 1000px;
    border: 0;
    background: #fff;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.review-stars {
    margin-bottom: 16px;
    color: var(--star);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}
.review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.review-author strong { display: block; font-size: 0.9rem; }
.review-author span { font-size: 0.8rem; color: var(--text-muted); }

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

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(196, 147, 63, 0.15) 0%, transparent 70%);
}
.cta-section .container { position: relative; }
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-section p {
    color: var(--on-dark-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-section .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}
.cta-section .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

/* ============================================
   Locations Section
   ============================================ */
.locations-section {
    padding: 100px 0;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.location-single {
    max-width: 640px;
    margin: 0 auto;
}
.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.location-card:hover {
    box-shadow: var(--shadow-md);
}
.location-info {
    padding: 32px;
}
.new-badge {
    display: inline-block;
    background: var(--badge-open-bg);
    color: var(--badge-open-text);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.location-info h3 i { color: var(--primary); margin-right: 6px; font-size: 1.2rem; }
.location-details p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}
.location-details i {
    color: var(--primary);
    width: 18px;
    margin-right: 8px;
}
.location-details a { color: var(--primary); font-weight: 500; }
.location-details a:hover { text-decoration: underline; }
.location-hours {
    margin: 20px 0;
    padding: 16px;
    background: var(--cream-dark);
    border: 1px solid rgba(107, 63, 160, 0.25);
    border-radius: var(--radius-md);
}
.location-hours h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.location-hours h4 i { margin-right: 6px; color: var(--primary); }
.hours-grid {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}

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

/* ============================================
   Booking Section
   ============================================ */
.booking-section {
    padding: 100px 0;
    background: var(--white);
}
.booking-widget {
    max-width: 900px;
    margin: 0 auto 30px;
    min-height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--border);
    position: relative;
}
.booking-widget iframe {
    width: 100%;
    height: 700px;
    border: none;
}
.booking-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.booking-fallback {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}
.booking-phones {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--cream);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item[open] summary { color: var(--primary); }
.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
}
.footer-logo .logo-icon { color: var(--primary-light); }
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.88rem;
    opacity: 0.7;
}
.footer-links a:hover { opacity: 1; color: var(--primary-light); }
.footer-location {
    margin-bottom: 16px;
}
.footer-location strong {
    color: var(--white);
    font-size: 0.88rem;
    display: block;
    margin-bottom: 4px;
}
.footer-location p {
    font-size: 0.82rem;
    margin-bottom: 2px;
}
.footer-location a {
    color: var(--primary-light);
    font-size: 0.88rem;
    font-weight: 500;
}
.footer-email { margin-top: 16px; }
.footer-email a {
    color: var(--primary-light);
    font-size: 0.88rem;
}
.footer-reviews {
    margin-top: 18px;
}
.footer-reviews iframe {
    display: block;
    border: 0;
    background: transparent;
    max-width: 100%;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.82rem;
}
.footer-credit a { color: var(--primary-light); font-weight: 500; }
.footer-credit a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Mobile Sticky Bar
   ============================================ */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 0;
}
.mobile-sticky-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-weight: 600;
    font-size: 0.9rem;
}
.sticky-call { color: var(--secondary); background: var(--cream); border-top: 1px solid rgba(107, 63, 160, 0.15); }
.sticky-book { color: var(--white); background: linear-gradient(135deg, var(--primary-light), var(--primary)); font-weight: 700; letter-spacing: 0.5px; }

@media (max-width: 768px) {
    .mobile-sticky-bar { display: flex; }
    .footer { padding-bottom: 80px; }
}
body.nav-open .mobile-sticky-bar { display: none; }

/* ============================================
   Booking Modal
   ============================================ */
.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.booking-modal.active { display: flex; }
.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}
.booking-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    height: 85vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.booking-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 10;
    background: rgba(0,0,0,0.06);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}
.booking-modal-iframe-wrap {
    width: 100%;
    height: 100%;
}
.booking-modal-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 998;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

@media (min-width: 769px) {
    .back-to-top { bottom: 30px; }
}

/* ============================================
   Loading Skeleton
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream) 50%, var(--cream-dark) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   Utility
   ============================================ */
.text-center { text-align: center; }

@media (max-width: 768px) {
    .about-section, .services-section, .neighborhoods-section,
    .gallery-section, .reviews-section, .cta-section,
    .locations-section, .booking-section, .faq-section { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
}

/* Temporary: hide on-site pricing while booking runs through MassageBook */
.bs-variant-price,
.bs-price,
.bs-price-old,
.bs-per,
.price-row-clickable .price,
.price-original,
.price-suffix {
    display: none !important;
}

/* ============================================
   SenseBS — Service Pricing Tier Rows
   ============================================ */
.price-row-clickable {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    margin: 4px 0;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: inherit;
    background: var(--cream);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.price-row-clickable:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateX(2px);
}
.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 6px;
    font-size: 0.85em;
}
.price-suffix {
    font-size: 0.7em;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 4px;
}

/* ============================================
   Booking Iframe Wrap (Safari iOS)
   ============================================ */
.booking-iframe-wrap {
    width: 100%;
    height: 100%;
    min-height: 700px;
    border-radius: var(--radius-lg);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--cream);
}
.booking-widget {
    -webkit-overflow-scrolling: touch;
}
.booking-modal-iframe-wrap {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
}

/* (Old conflicting promo-popup block was removed in favor of the
   canonical block under "Promotions Popup (driven by /api/promotions)" further below.) */

/* ============================================
   Promotion — Banner (TOP/BOTTOM)
   ============================================ */
.promo-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 10px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.promo-banner.pos-top { top: 0; }
.promo-banner.pos-bottom { bottom: 0; }
.promo-banner-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.promo-banner-text {
    font-size: 0.9rem;
}
.promo-banner-cta {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 999px;
    color: inherit;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.4);
}
.promo-banner-cta:hover { background: rgba(255,255,255,0.3); }
.promo-banner-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
}
.promo-banner-close:hover { opacity: 1; }

/* ============================================
   Promotion — Slide-In / Floating
   ============================================ */
.promo-slidein {
    position: fixed;
    z-index: 9500;
    width: 320px;
    max-width: calc(100vw - 32px);
    padding: 22px 22px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    transform: translateX(120%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.promo-slidein.open { transform: translateX(0); }
.promo-slidein.pos-bottom-right { bottom: 24px; right: 24px; }
.promo-slidein.pos-bottom-left { bottom: 24px; left: 24px; transform: translateX(-120%); }
.promo-slidein.pos-bottom-left.open { transform: translateX(0); }
.promo-slidein.pos-top-right { top: 80px; right: 24px; }
.promo-slidein.pos-top-left { top: 80px; left: 24px; transform: translateX(-120%); }
.promo-slidein.pos-top-left.open { transform: translateX(0); }
.promo-slidein strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.promo-slidein p {
    margin: 0 0 12px;
    font-size: 0.9rem;
    opacity: 0.85;
}
.promo-slidein-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
}
.promo-slidein-close:hover { opacity: 1; }

@media (max-width: 600px) {
    .promo-slidein {
        left: 16px !important;
        right: 16px !important;
        width: auto;
        bottom: 16px;
        top: auto;
        transform: translateY(120%);
    }
    .promo-slidein.open { transform: translateY(0); }
}

/* ============================================
   Standalone Page (Gift Cards / Privacy / Terms)
   ============================================ */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 3rem;
    margin: 0 0 12px;
    color: var(--primary);
}
.page-hero p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-light, #666);
}
.page-section {
    padding: 60px 0 100px;
}
.page-section .container {
    max-width: 880px;
}
.page-section h2 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.8rem;
    margin: 36px 0 14px;
    color: var(--primary);
}
.page-section h3 {
    font-size: 1.15rem;
    margin: 24px 0 10px;
    color: var(--text);
}
.page-section p, .page-section li {
    line-height: 1.7;
    color: var(--text);
    font-size: 0.96rem;
}
.page-section ul, .page-section ol {
    padding-left: 22px;
    margin: 12px 0;
}
.page-section li { margin-bottom: 6px; }
.page-section .meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.page-widget-wrap {
    margin: 32px auto;
    max-width: 720px;
    border-radius: var(--radius-lg);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    background: var(--cream);
}
.page-widget-wrap iframe {
    width: 100%;
    min-height: 720px;
    border: none;
    display: block;
}

/* ============================================
   Hero — Trust Strip + 3-Button CTA
   ============================================ */
.hero-buttons-3 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 30px;
}
.hero-buttons-3 .btn {
    flex: 0 1 auto;
    min-width: 160px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    justify-content: center;
    margin-top: 18px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: rgba(255,255,255,0.95);
    white-space: nowrap;
}
.hero-trust-emoji {
    font-size: 1.05em;
    line-height: 1;
}
@media (max-width: 768px) {
    .hero-trust {
        gap: 10px 16px;
        padding: 14px 18px;
        border-radius: 18px;
    }
    .hero-trust-item {
        font-size: 0.82rem;
    }
    .hero-buttons-3 .btn {
        min-width: 0;
        flex: 1 1 auto;
        justify-content: center;
    }
}

/* ============================================
   Neighborhoods / Local SEO Section
   ============================================ */
.neighborhoods-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 50px 0 30px;
}
.neighborhood-card {
    background: var(--white);
    padding: 28px 26px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}
.neighborhood-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.neighborhood-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.4rem;
    margin: 0 0 12px;
    color: var(--primary);
}
.neighborhood-card h3 i {
    color: var(--primary);
    font-size: 0.85em;
}
.neighborhood-card p {
    margin: 0;
    line-height: 1.65;
    font-size: 0.94rem;
    color: var(--text);
}
.neighborhoods-also {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light, #666);
    font-size: 0.95rem;
    line-height: 1.7;
}
.neighborhoods-also a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
.neighborhoods-also a:hover {
    opacity: 0.8;
}
@media (max-width: 768px) {
    .neighborhoods-section {
        padding: 70px 0;
    }
    .neighborhood-card {
        padding: 22px 20px;
    }
}

/* ============================================
   Booking Modal — Loader Spinner
   ============================================ */
.booking-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
    gap: 14px;
    background: var(--cream);
}
.booking-loader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(0,0,0,0.08);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: bookingSpin 0.9s linear infinite;
}
.booking-loader-text {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.4px;
}
@keyframes bookingSpin {
    to { transform: rotate(360deg); }
}

/* Booking modal: wider on desktop for embedded widget */
@media (min-width: 769px) {
    .booking-modal-content {
        max-width: 720px !important;
    }
}

/* ============================================
   Promo Popup — refined (countdown, schedule)
   ============================================ */
.promo-popup-schedule {
    margin: 8px 0;
    padding: 8px 14px;
    background: rgba(0,0,0,0.06);
    border-radius: 999px;
    font-size: 0.85rem;
    display: inline-block;
}
.promo-popup-cta {
    border: none;
    cursor: pointer;
    margin-top: 12px;
}

/* ============================================
   Brand Sections — Team, Why, Stats, Booking, Modal
   ============================================ */

/* About image accent + badge */
.about-image { position: relative; }
.about-image-accent {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    bottom: -20px;
    right: -20px;
    z-index: -1;
    opacity: 0.7;
}
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: -28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 22px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: 4px solid var(--white);
}
.about-badge-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.about-badge-label {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
    font-weight: 600;
}
.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
}

/* ---- Team Section ---- */
.team-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
}
.team-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(44,122,92,0.04) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(201,123,58,0.04) 0%, transparent 30%);
    pointer-events: none;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.team-photo {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.team-card:hover .team-photo img {
    transform: scale(1.08);
}
.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 42, 32, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.team-specialties span {
    background: rgba(212, 162, 86, 0.95);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
}
.team-info {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--secondary);
}
.team-title {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.team-bio {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.team-availability {
    background: var(--cream);
    color: var(--primary-dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    border-left: 3px solid var(--accent);
}
.team-info .btn {
    align-self: flex-start;
}

/* ---- Why-Choose-Us Section ---- */
.why-section {
    padding: 100px 0;
    background:
        linear-gradient(180deg, var(--secondary) 0%, var(--surface-dark-end) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(139, 95, 196, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(107, 63, 160, 0.14) 0%, transparent 40%);
}
.why-section .section-label { color: var(--gold); }
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.75); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
}
.why-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
    border-color: rgba(212, 162, 86, 0.4);
}
.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(107, 63, 160, 0.35);
}
.why-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.why-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---- Stats Section ---- */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.stats-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(212, 162, 86, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 90% 50%, rgba(212, 162, 86, 0.10) 0%, transparent 30%);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
    position: relative;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ---- Reviews CTA bar ---- */
.reviews-cta {
    margin-top: 48px;
    text-align: center;
}
.reviews-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 24px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--gold);
}
.rating-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1;
}
.rating-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin: 8px 0;
    letter-spacing: 4px;
}
.rating-count {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ---- Booking Options Cards ---- */
.booking-card-wrap { max-width: 1100px; margin: 0 auto; }
.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.booking-option {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}
.booking-option:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.booking-option-featured {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    border-color: var(--primary);
    transform: scale(1.04);
}
.booking-option-featured:hover { transform: scale(1.04) translateY(-6px); }
.booking-option-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(107, 63, 160, 0.4);
}
.booking-option-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px var(--primary-glow);
}
.booking-option h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.booking-option p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ---- Booking Modal Form ---- */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.booking-modal.active {
    display: flex;
    animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.82);
    backdrop-filter: blur(6px);
}
.booking-modal-content {
    position: relative;
    background: var(--white);
    width: 100%;
    max-width: 600px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 40px;
    animation: slideUp 0.35s cubic-bezier(0.4,0,0.2,1);
}
.booking-modal-content.booking-modal-content--widget {
    overflow: hidden !important;
    padding: 18px 20px 12px !important;
    box-shadow: var(--shadow-xl);
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.booking-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    font-size: 1.6rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.booking-modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}
.booking-modal-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.booking-modal-header h3 {
    font-size: 2rem;
    margin-bottom: 6px;
    color: var(--secondary);
}
.booking-modal-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.booking-form .form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}
.booking-form .form-row .form-group { margin-bottom: 0; }
.booking-form label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}
.btn-full { width: 100%; margin-top: 8px; }
.booking-fineprint {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
}
.booking-fineprint a {
    color: var(--primary);
    font-weight: 600;
}
.booking-success {
    text-align: center;
    padding: 30px 10px;
}
.booking-success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 18px;
    animation: pulse 1.4s ease infinite;
}
@keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.booking-success h3 { font-size: 1.8rem; margin-bottom: 10px; }
.booking-success p { color: var(--text-light); margin-bottom: 22px; }

/* ---- Mobile tweaks ---- */
@media (max-width: 768px) {
    .about-image-badge {
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 16px 22px;
    }
    .about-badge-num { font-size: 2rem; }
    .booking-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .booking-form .form-row .form-group { margin-bottom: 16px; }
    .booking-modal-content { padding: 28px 20px; }
    .booking-option-featured { transform: none; }
    .booking-option-featured:hover { transform: translateY(-6px); }
    .team-photo { height: 280px; }
    .team-section, .why-section { padding: 70px 0; }
}

/* ---- Mobile hero spacing fix ---- */
@media (max-width: 768px) {
    :root { --nav-height: 72px; }
    .hero {
        min-height: 90vh;
        padding-top: var(--nav-height);
        padding-bottom: 60px;
        align-items: flex-start;
    }
    .hero-content { padding-top: 24px; }
    .hero-badge { font-size: 0.7rem; padding: 6px 16px; letter-spacing: 1.5px; }
    .hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); margin-bottom: 12px; line-height: 1.15; }
    .hero-tagline { font-size: 1rem; margin-bottom: 24px; }
    .hero-buttons-3 { flex-direction: column; gap: 10px; align-items: center; }
    .hero-buttons-3 .btn { width: 100%; max-width: 320px; }
    .hero-trust {
        flex-direction: column;
        gap: 8px;
        margin-top: 24px;
        padding: 16px;
    }
    .hero-trust-item { font-size: 0.85rem; }
    .hero-scroll { display: none; }
    .navbar .logo-tagline { font-size: 0.62rem; }
    .navbar .logo-name { font-size: 0.95rem; }
}

/* ---- Announcement bar responsive ---- */
.announcement-bar .ann-short { display: none; }
@media (max-width: 900px) {
    .announcement-bar .ann-full { display: none; }
    .announcement-bar .ann-short { display: inline; }
}
@media (max-width: 768px) {
    .announcement-bar { font-size: 0.74rem; }
    .announcement-bar .container { gap: 10px; padding: 0 44px 0 12px; }
    .announcement-bar a { font-size: 0.74rem; }
    .ann-close { right: 8px; width: 24px; height: 24px; font-size: 1rem; }
}
@media (max-width: 420px) {
    .announcement-bar a { display: none; }
}

/* ============================================
   Brand Sections — Philosophy / Blog / Contact
   ============================================ */

/* ---- Philosophy ---- */
.philosophy-section {
    padding: 100px 0;
    background:
        linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}
.philosophy-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 162, 86, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.philosophy-content p {
    color: var(--text-light);
    font-size: 1.02rem;
    margin-bottom: 16px;
    line-height: 1.75;
}
.philosophy-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem !important;
    color: var(--primary-dark) !important;
    border-left: 3px solid var(--accent);
    padding: 12px 0 12px 24px;
    margin-top: 22px !important;
    line-height: 1.5 !important;
}
.philosophy-pillars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.pillar {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}
.pillar:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent);
}
.pillar i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px var(--primary-glow);
}
.pillar strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 4px;
}
.pillar span {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* ---- Blog ---- */
.blog-section {
    padding: 100px 0;
    background: var(--cream);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(107, 63, 160, 0.35);
}
.blog-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-meta {
    display: flex;
    gap: 14px;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 12px;
    font-weight: 500;
}
.blog-meta i { margin-right: 4px; color: var(--primary); }
.blog-body h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--secondary);
}
.blog-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}
.blog-readmore {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-readmore i { transition: transform 0.3s; }
.blog-readmore:hover { color: var(--accent); }
.blog-readmore:hover i { transform: translateX(4px); }

/* ---- Contact ---- */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-card {
    display: flex;
    gap: 18px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent);
}
.contact-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px var(--primary-glow);
}
.contact-card h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--secondary);
}
.contact-card a {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-card a:hover { color: var(--accent); }
.contact-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}
.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.contact-form .form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}
.contact-form .form-row .form-group { margin-bottom: 0; }
.contact-form label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}
.contact-fineprint {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
}
.contact-fineprint a {
    color: var(--primary);
    font-weight: 600;
}
.contact-success {
    text-align: center;
    padding: 40px 20px;
}
.contact-success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 18px;
    animation: pulse 1.4s ease infinite;
}
.contact-success h3 { font-size: 1.8rem; margin-bottom: 10px; }
.contact-success p { color: var(--text-light); }

/* ---- Mobile ---- */
@media (max-width: 900px) {
    .philosophy-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .philosophy-section, .blog-section, .contact-section { padding: 70px 0; }
}
@media (max-width: 600px) {
    .contact-form { padding: 24px 20px; }
    .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form .form-row .form-group { margin-bottom: 16px; }
}

/* ==========================================================
   Booking Widget Modal — single scroll surface (iframe only)
   ========================================================== */
html.booking-modal-open,
html.booking-modal-open body {
    overflow: hidden !important;
    height: 100%;
}

.booking-modal-content.booking-modal-content--widget {
    max-width: 900px !important;
    width: min(94vw, 900px);
    height: min(90vh, 860px);
    max-height: 90vh;
    max-height: 90dvh;
    padding: 18px 20px 12px !important;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
    box-sizing: border-box;
}
.booking-modal-content--widget .booking-modal-header {
    flex: 0 0 auto;
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid var(--border);
}
.booking-modal-content--widget .booking-modal-header h3 {
    margin: 0;
    font-size: 1.35rem;
}
.booking-modal-content--widget .booking-modal-iframe-wrap {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    background: var(--cream);
    position: relative;
}
.booking-modal-content--widget .booking-modal-iframe-wrap::before {
    content: "Loading booking…";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.95rem;
    z-index: 0;
    pointer-events: none;
}
.booking-modal-content--widget .booking-modal-iframe-wrap:has(iframe)::before {
    display: none;
}
.booking-modal-content--widget .booking-modal-iframe-wrap iframe {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 1000px;
    min-height: 1000px;
    border: 0;
    display: block;
    background: #fff;
    border-radius: 12px;
}
.booking-modal-content--widget .booking-fineprint {
    flex: 0 0 auto;
    text-align: center;
    margin: 10px 0 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.booking-modal-content--widget .booking-fineprint a { color: var(--primary); text-decoration: none; }

@media (max-width: 768px) {
    .booking-modal { padding: 0 !important; align-items: stretch !important; }
    .booking-modal.active .booking-modal-content--widget {
        animation: bookModalSlideUp 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .booking-modal-content.booking-modal-content--widget {
        max-width: 100% !important;
        width: 100% !important;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0 !important;
        padding: 14px 12px 10px !important;
        padding-top: calc(env(safe-area-inset-top, 0px) + 14px) !important;
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 10px) !important;
    }
    .booking-modal-content--widget .booking-modal-header {
        padding-right: 48px;
        text-align: left;
    }
    .booking-modal-content--widget .booking-modal-header h3 {
        font-size: 1.2rem;
    }
    .booking-modal-content--widget .booking-modal-iframe-wrap {
        border-radius: 8px;
    }
    .booking-modal-close {
        top: calc(env(safe-area-inset-top, 0px) + 10px) !important;
        right: 12px !important;
        width: 42px !important;
        height: 42px !important;
        font-size: 1.6rem !important;
        background: var(--cream) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .booking-modal-content--widget .booking-fineprint {
        font-size: 0.72rem;
        margin: 8px 0 0;
        line-height: 1.4;
    }
}

@keyframes bookModalSlideUp {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Backdrop click area on mobile when modal is full-screen */
@media (max-width: 768px) {
    .booking-modal-overlay { display: none; }
}

/* ==========================================================
   Promotions Popup (driven by /api/promotions)
   ========================================================== */
.promo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 42, 32, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.promo-popup-overlay.show { opacity: 1; }

.promo-popup {
    position: relative;
    background: var(--white);
    color: var(--text);
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    transform: scale(0.94) translateY(16px);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    display: flex;
    flex-direction: column;
}
.promo-popup-overlay.show .promo-popup { transform: scale(1) translateY(0); }

.promo-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.92);
    color: var(--secondary);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
}
.promo-popup-close:hover { background: #fff; transform: scale(1.05); }

.promo-popup-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--cream);
    flex-shrink: 0;
}
.promo-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-popup-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.promo-popup-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.78rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    align-self: center;
    margin: 0;
}
.promo-popup-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin: 0;
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 600;
}
.promo-popup-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    max-width: 340px;
}
.promo-popup-timer {
    font-size: 0.82rem;
    color: var(--accent-dark);
    background: rgba(107, 63, 160, 0.14);
    padding: 7px 14px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    margin: 0;
}
.promo-popup-code {
    background: var(--cream);
    border: 1px dashed var(--border);
    padding: 10px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.88rem;
    width: 100%;
    margin: 4px 0 0;
}
.promo-popup-code strong { color: var(--secondary); letter-spacing: 1px; }
.promo-popup-copy {
    background: var(--primary);
    color: #fff;
    border: 0;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.promo-popup-copy:hover { background: var(--primary-dark); }
.promo-popup-cta {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    background: var(--primary);
    color: #fff;
    transition: all 0.2s;
    margin-top: 4px;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.promo-popup-cta::after {
    content: '→';
    transition: transform 0.2s;
}
.promo-popup-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(107, 63, 160, 0.3);
}
.promo-popup-cta:hover::after { transform: translateX(3px); }

/* Variant: when no image, give the body more breathing room at the top */
.promo-popup:not(:has(.promo-popup-image)) .promo-popup-body {
    padding-top: 36px;
}

@media (max-width: 480px) {
    .promo-popup { max-width: 92vw; border-radius: 16px; }
    .promo-popup-image { height: 170px; }
    .promo-popup-body { padding: 22px 22px 24px; gap: 10px; }
    .promo-popup-title { font-size: 1.45rem; }
    .promo-popup-desc { font-size: 0.9rem; }
}

/* ==========================================================
   Promotions Banner (top/bottom bar)
   ========================================================== */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #fff;
    z-index: 9998;
    padding: 10px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    animation: slideDownBanner 0.4s ease;
}
.promo-banner-bottom { top: auto; bottom: 0; }
@keyframes slideDownBanner {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.promo-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.promo-banner-cta {
    background: #fff;
    color: var(--primary);
    border: 0;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.promo-banner-cta:hover { transform: translateY(-1px); }
.promo-banner-close {
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    padding: 0 4px;
}
.promo-banner-close:hover { opacity: 1; }

/* Footer email link */
.footer-email-link {
    display: block;
    color: var(--cream-dark, #f0eae0);
    margin-top: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-email-link:hover { color: var(--accent-light, #E8B388); }

/* ==========================================================
   Dynamic SenseBS Service Cards (replaces static grid)
   Pattern inspired by thaiaromabodywork.com
   ========================================================== */
.bs-cat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 auto 36px;
    padding: 0 12px;
    max-width: 900px;
}
.bs-cat-pill {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--border);
    padding: 9px 20px;
    border-radius: 99px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.bs-cat-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}
.bs-cat-pill.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 16px var(--primary-glow);
}

.bs-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin: 0;
}

.bs-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md, 0 8px 24px rgba(0,0,0,0.06));
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.bs-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(15, 42, 32, 0.14);
    border-color: var(--primary-light);
}
.bs-service-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream-dark, #f0eae0);
}
.bs-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.bs-service-card:hover .bs-service-image img {
    transform: scale(1.06);
}
.bs-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.bs-service-body {
    padding: 24px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.bs-service-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 10px;
    color: var(--secondary);
    line-height: 1.25;
}
.bs-service-desc {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 18px;
    flex: 1;
}
.bs-variants-label {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 8px;
}
.bs-variants {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
}
.bs-variant-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.bs-variant-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.bs-variant-duration {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.2;
}
.bs-variant-price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
    line-height: 1.2;
}
.bs-variant-price .bs-price {
    font-size: 1.05rem;
}
.bs-variant-price .bs-price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-right: 4px;
    font-weight: 500;
}
.bs-variant-price .bs-per {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    margin-left: 4px;
}
.bs-variant-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.bs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.18s;
    font-family: inherit;
    line-height: 1.2;
    white-space: nowrap;
}
.bs-btn-ghost {
    background: transparent;
    color: var(--secondary);
    border-color: var(--border);
}
.bs-btn-ghost:hover {
    background: var(--cream);
    border-color: var(--secondary);
    color: var(--secondary);
}
.bs-btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.bs-btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 63, 160, 0.25);
}
@media (max-width: 480px) {
    .bs-variant-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    .bs-variant-actions {
        width: 100%;
        justify-content: stretch;
    }
    .bs-variant-actions .bs-btn {
        flex: 1;
    }
}

.bs-live-note {
    text-align: center;
    margin-top: 36px;
    color: var(--text-light);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.bs-live-note i {
    color: var(--primary);
    background: var(--primary-glow);
    padding: 6px;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}

@media (max-width: 600px) {
    .bs-services-grid { grid-template-columns: 1fr; gap: 22px; }
    .bs-service-body { padding: 20px 18px 18px; }
    .bs-cat-pill { padding: 8px 16px; font-size: 0.82rem; }
}

/* ==========================================================
   Multi-page Nav: active state + nav CTA button
   ========================================================== */
.nav-links > li > a.active,
.nav-links .nav-locations-trigger.active {
    color: var(--primary-light) !important;
    font-weight: 700;
}
@media (max-width: 1024px) {
    .nav-links > li > a.active,
    .nav-links .nav-locations-trigger.active {
        color: var(--gold-light) !important;
    }
}

/* ==========================================================
   Page Hero (smaller, used on inner pages)
   ========================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-mid) 55%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(139, 95, 196, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(107, 63, 160, 0.12) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.page-hero-label::before {
    content: '◆';
    font-size: 0.45rem;
    margin-right: 10px;
    opacity: 0.85;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin: 0 0 14px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.1;
}
.page-hero p {
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
    color: var(--on-dark-muted);
    line-height: 1.6;
}
.page-hero-breadcrumb {
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--on-dark-subtle);
}
.page-hero-breadcrumb a { color: var(--gold); text-decoration: none; }
.page-hero-breadcrumb a:hover { text-decoration: underline; }

/* ==========================================================
   Footer Multi-Column Grid
   ========================================================== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 48px;
    padding: 60px 0 40px;
}
.footer-about .footer-logo-img { height: 56px; margin-bottom: 16px; }
.footer-tagline { color: rgba(255,255,255,0.75); line-height: 1.6; font-size: 0.92rem; }
.footer-links h4, .footer-contact h4, .footer-cta h4, .footer-locations-col h4 {
    color: var(--white);
    font-size: 0.92rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 18px;
    font-weight: 700;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
    color: rgba(255,255,255,0.75);
    margin: 0 0 12px;
    font-size: 0.92rem;
    line-height: 1.5;
}
.footer-contact a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact strong { color: var(--white); }
.footer-cta p { color: var(--on-dark-muted); font-size: 0.92rem; margin: 0 0 16px; }
.footer-cta .btn { width: 100%; }
.footer-cta .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.35); }
.footer-cta .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); color: var(--gold); }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 0 32px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Loading state for API-driven sections */
.bs-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.bs-loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Gallery page grid */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-page-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}
.gallery-page-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15,42,32,0.18);
}
.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.gallery-page-item:hover img { transform: scale(1.08); }
.gallery-page-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px 18px 18px;
    background: linear-gradient(to top, rgba(15,42,32,0.92), transparent);
    color: #fff;
    transform: translateY(40%);
    opacity: 0.85;
    transition: all 0.3s;
}
.gallery-page-item:hover .gallery-page-overlay {
    transform: translateY(0);
    opacity: 1;
}
.gallery-page-overlay h4 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}
.gallery-page-overlay p {
    margin: 0;
    font-size: 0.82rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* ==========================================================
   Promotions list page
   ========================================================== */
.promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 28px;
}
.promo-list-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent);
    display: flex;
    flex-direction: column;
}
.promo-list-image { aspect-ratio: 16/9; overflow: hidden; }
.promo-list-image img { width: 100%; height: 100%; object-fit: cover; }
.promo-list-body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
.promo-list-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    align-self: flex-start;
    margin-bottom: 14px;
}
.promo-list-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 12px;
    color: var(--secondary);
}
.promo-list-body p { color: var(--text-light); margin: 0 0 16px; line-height: 1.55; }
.promo-list-timer {
    background: rgba(201,123,58,0.1);
    color: var(--accent-dark);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px;
    align-self: flex-start;
}
.promo-list-code {
    background: var(--cream-dark);
    border: 1px dashed var(--border);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 18px;
    text-align: center;
}
.promo-list-code strong { color: var(--secondary); letter-spacing: 1px; }
.promo-list-card .btn { margin-top: auto; }

/* Empty promotions state */
.empty-promotions {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 64px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 640px;
    margin: 0 auto;
}
.empty-promotions-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}
.empty-promotions h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--secondary);
    margin: 0 0 12px;
}
.empty-promotions p {
    color: var(--text-light);
    margin: 0 0 8px;
    line-height: 1.6;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================
   Blog list page
   ========================================================== */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.blog-list-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(15,42,32,0.14);
}
.blog-list-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cream);
}
.blog-list-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-list-card:hover .blog-list-image img { transform: scale(1.06); }
.blog-list-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-list-body { padding: 24px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-list-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 10px;
    color: var(--secondary);
    line-height: 1.25;
}
.blog-list-body p {
    color: var(--text-light);
    line-height: 1.55;
    font-size: 0.93rem;
    margin: 0 0 18px;
    flex: 1;
}
.blog-list-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.blog-list-meta i { margin-right: 4px; }
.blog-list-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.blog-list-more:hover { color: var(--primary-dark); }

/* Service card "View details" link */
.bs-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    transition: gap 0.2s, color 0.2s;
}
.bs-detail-link:hover { color: var(--primary-dark); gap: 10px; }
.bs-service-image { display: block; cursor: pointer; }

/* Multi-Location UX */
.footer-grid--5 { grid-template-columns: 1.2fr 1fr 1.2fr 1fr 1fr; }
@media (max-width: 1100px) { .footer-grid--5 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid--5 { grid-template-columns: 1fr; } }
.footer-loc-item { margin-bottom: 14px; font-size: 0.88rem; }
.footer-loc-item strong { color: var(--gold-light); display: block; margin-bottom: 4px; }
.footer-loc-item a { color: rgba(255,255,255,0.75); }
.footer-loc-all { display: inline-block; margin-top: 8px; font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.loc-badge-soon { font-size: 0.65rem; padding: 2px 8px; border-radius: 20px; background: rgba(107,63,160,0.15); color: var(--primary); margin-left: 4px; }
.loc-badge-flag { font-size: 0.65rem; padding: 2px 8px; border-radius: 20px; background: rgba(201,162,39,0.2); color: var(--accent-dark); margin-left: 4px; }
@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        flex-direction: column;
    }
    .nav-links > li:not(.nav-mobile-header):not(.nav-mobile-footer) {
        flex-shrink: 0;
    }
}
.loc-map-section { padding: 60px 0 80px; background: var(--cream); }
.loc-map-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: start; }
@media (max-width: 960px) { .loc-map-layout { grid-template-columns: 1fr; } }
.loc-map-canvas { width: 100%; height: 520px; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 2px solid rgba(201,162,39,0.25); z-index: 1; }
.loc-map-hint { text-align: center; margin-top: 12px; font-size: 0.82rem; color: var(--text-muted); }
.loc-cards-stack { display: flex; flex-direction: column; gap: 16px; max-height: 560px; overflow-y: auto; }
.loc-card { position: relative; background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-md); border: 2px solid transparent; transition: var(--transition); }
.loc-card--active { border-color: var(--gold); }
.loc-card--soon { opacity: 0.88; }
.loc-card-ribbon { position: absolute; top: 12px; right: 12px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; background: var(--primary); color: #fff; }
.loc-card-ribbon--gold { background: linear-gradient(135deg, var(--gold), var(--accent-dark)); color: var(--secondary); }
.loc-card-header h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 4px; }
.loc-card-area { font-size: 0.82rem; color: var(--primary); margin-bottom: 12px; }
.loc-card-meta { list-style: none; margin: 0 0 16px; padding: 0; }
.loc-card-meta li { font-size: 0.85rem; margin-bottom: 6px; }
.loc-card-meta i { width: 18px; color: var(--gold); margin-right: 6px; }
.loc-card-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.btn-ghost { background: transparent; border: 1px dashed var(--border); color: var(--text-light); padding: 10px 16px; border-radius: var(--radius-sm); cursor: pointer; font-size: 0.85rem; }
.loc-map-pin { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: var(--shadow-md); }
.loc-map-pin i { transform: rotate(45deg); font-size: 14px; }
.loc-map-pin--gold { background: linear-gradient(135deg, var(--gold), var(--accent-dark)); color: var(--secondary); border: 2px solid #fff; }
.loc-map-pin--soon { background: var(--primary); color: #fff; border: 2px solid #fff; }
.loc-areas-section { padding: 60px 0 80px; background: var(--white); }
.loc-areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.loc-area-pill { padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; background: var(--cream); border: 1px solid var(--border); color: var(--text-light); }
.loc-home-section { padding: 80px 0; background: var(--secondary); color: var(--white); }
.loc-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .loc-home-grid { grid-template-columns: 1fr; } }
.loc-home-grid .section-title { color: var(--white); }
.loc-home-grid .section-subtitle { color: var(--on-dark-muted); }
.loc-home-grid .section-label { color: var(--gold); }
.loc-home-map { height: 360px; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid rgba(201,162,39,0.3); }
.loc-home-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.loc-home-card-mini { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: rgba(255,255,255,0.06); border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.1); color: inherit; text-decoration: none; transition: var(--transition); }
.loc-home-card-mini:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }
.loc-home-card-mini strong { font-size: 0.95rem; color: var(--gold-light); }
.loc-home-card-mini span { font-size: 0.8rem; opacity: 0.7; }
.book-loc-picker { max-width: 720px; margin: -32px auto 32px; padding: 0 20px; position: relative; z-index: 2; }
.book-loc-picker-inner { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-lg); }
.book-loc-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.book-loc-opt { padding: 16px; border-radius: var(--radius-md); border: 2px solid var(--border); background: var(--cream); cursor: pointer; text-align: left; }
.book-loc-opt.selected { border-color: var(--gold); background: var(--white); }
.book-loc-opt.disabled { opacity: 0.55; cursor: not-allowed; }
.book-loc-opt strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.book-loc-opt span { font-size: 0.78rem; color: var(--text-muted); }

/* ==========================================================
   Brand utilities — contrast on dark backgrounds
   ========================================================== */
.btn-outline-on-dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-on-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    color: var(--gold-light);
}
.text-on-dark-muted { color: var(--on-dark-muted); }
.text-on-dark-subtle { color: var(--on-dark-subtle); }
.footer-locations-col h4 {
    color: var(--white);
    font-size: 0.92rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 18px;
    font-weight: 700;
}

/* Brand lockup refinements */
.hero-trust-emoji { color: var(--primary-light); font-size: 0.65rem; vertical-align: middle; }
.footer-brand-lockup .logo-tagline { opacity: 0.85; }
.page-hero-label::before { content: '◆'; color: var(--primary-light); margin-right: 8px; font-size: 0.55rem; vertical-align: middle; }
