/*
Theme Name: Dream Spa Theme
Theme URI: https://dreamspa.hk
Author: Dream Group
Author URI: https://dreamgroup.hk
Description: Luxury black & gold public-facing website for Dream Spa Hong Kong — massage, body treatments, tanning. Trilingual (EN/ZH/CN) with AI chatbot and booking integration.
Version: 1.0.0
Text Domain: dream-spa-theme
*/

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --ds-black:       #1e1e1e;
    --ds-dark:        #2a2a2a;
    --ds-card:        #323232;
    --ds-gold:        #c9a96e;
    --ds-gold-light:  #dbc08a;
    --ds-gold-dark:   #a88c4f;
    --ds-white:       #f0ece4;
    --ds-cream:       #e8e0d0;
    --ds-text:        #e0dbd3;
    --ds-text-muted:  #b0aba4;
    --ds-border:      #3e3e3e;
    --ds-overlay:     rgba(0, 0, 0, 0.55);
    --ds-radius:      4px;
    --ds-radius-lg:   8px;
    --ds-transition:  0.35s ease;
    --ds-font-serif:  'Playfair Display', 'Noto Serif TC', Georgia, serif;
    --ds-font-sans:   'Lato', 'Noto Sans TC', -apple-system, sans-serif;
    --ds-max-width:   1200px;
    --ds-header-h:    80px;
    --ds-topbar-h:    38px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ds-font-sans);
    background: var(--ds-black);
    color: var(--ds-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--ds-gold); text-decoration: none; transition: color var(--ds-transition); }
a:hover { color: var(--ds-gold-light); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
    font-family: var(--ds-font-serif);
    color: var(--ds-cream);
    line-height: 1.3;
    letter-spacing: 0.04em;
}

.ds-container {
    max-width: var(--ds-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Top Bar ───────────────────────────────────────────── */
.ds-topbar {
    background: #252525;
    color: var(--ds-text-muted);
    font-size: 12px;
    font-weight: 400;
    padding: 10px 0;
    text-align: center;
    letter-spacing: 0.5px;
    height: var(--ds-topbar-h);
    border-bottom: 1px solid var(--ds-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
}

.ds-topbar .ds-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ds-topbar a {
    color: var(--ds-text-muted);
    margin: 0 8px;
}

.ds-topbar a:hover { color: var(--ds-cream); }

.ds-topbar .ds-lang-switcher {
    display: inline-flex;
    gap: 4px;
    margin-left: 16px;
}

.ds-topbar .ds-lang-switcher a {
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.ds-topbar .ds-lang-switcher a.active {
    background: var(--ds-gold);
    color: var(--ds-black);
    border-color: var(--ds-gold);
}

.ds-topbar .ds-lang-switcher a:not(.active):hover {
    border-color: var(--ds-text-muted);
}

.ds-topbar.ds-topbar-hidden {
    transform: translateY(-100%);
    transition: transform 0.35s ease;
}

.ds-topbar {
    transition: transform 0.35s ease;
}

/* WordPress Admin Bar offset */
body.admin-bar .ds-topbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .ds-topbar {
        top: 46px;
    }
}

/* ─── Header / Navbar ───────────────────────────────────── */
.ds-header {
    position: fixed;
    top: var(--ds-topbar-h);
    left: 0;
    right: 0;
    z-index: 1001;
    transition: background var(--ds-transition), box-shadow var(--ds-transition), top var(--ds-transition);
    background: transparent;
    height: var(--ds-header-h);
}

.ds-header.scrolled {
    top: 0;
    background: rgba(30, 30, 30, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ds-header .ds-container {
    height: var(--ds-header-h);
    padding-top: 6px;
}

.ds-header .ds-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.ds-logo {
    font-family: var(--ds-font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--ds-cream) !important;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.ds-logo span {
    color: var(--ds-cream);
    font-weight: 400;
}

.ds-nav { display: flex; align-items: center; gap: 36px; }
.ds-nav a {
    color: var(--ds-cream);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding: 4px 0;
    font-family: var(--ds-font-sans);
}

.ds-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--ds-gold);
    transition: width var(--ds-transition);
}

.ds-nav a:hover::after,
.ds-nav a.active::after { width: 100%; }

.ds-nav a:hover { color: var(--ds-gold); }

.ds-nav .ds-btn-book {
    background: transparent;
    color: var(--ds-cream) !important;
    padding: 10px 28px;
    border: 1px solid var(--ds-cream);
    border-radius: 0;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all var(--ds-transition);
}

.ds-nav .ds-btn-book::after { display: none; }
.ds-nav .ds-btn-book:hover {
    background: var(--ds-cream);
    color: var(--ds-black) !important;
    border-color: var(--ds-cream);
}

/* Mobile menu toggle */
.ds-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ds-white);
    font-size: 28px;
    cursor: pointer;
}

.ds-nav-close { display: none; }

/* ─── Hero Slider ───────────────────────────────────────── */
.ds-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: calc(var(--ds-topbar-h));
}

.ds-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.ds-hero-slide.active { opacity: 1; }

.ds-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
}

.ds-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    z-index: 2;
}

.ds-hero-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
    color: var(--ds-cream);
}

.ds-hero-content h1 span { color: var(--ds-gold); font-weight: 400; }

.ds-hero-content p {
    font-size: 16px;
    color: var(--ds-cream);
    max-width: 600px;
    margin-bottom: 36px;
    letter-spacing: 1px;
    font-weight: 300;
    opacity: 0.85;
}

.ds-hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.ds-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all var(--ds-transition);
}

.ds-hero-dot.active {
    background: var(--ds-cream);
    transform: scale(1.2);
}

/* ─── Buttons ───────────────────────────────────────────── */
.ds-btn {
    display: inline-block;
    padding: 16px 44px;
    border-radius: 0;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--ds-transition);
    border: 1px solid transparent;
    font-family: var(--ds-font-sans);
}

.ds-btn-primary {
    background: transparent;
    color: var(--ds-cream);
    border: 1px solid var(--ds-cream);
}

.ds-btn-primary:hover {
    background: var(--ds-cream);
    color: var(--ds-black);
    transform: none;
    box-shadow: none;
}

.ds-btn-outline {
    background: transparent;
    color: var(--ds-cream);
    border: 1px solid rgba(255,255,255,0.3);
}

.ds-btn-outline:hover {
    border-color: var(--ds-cream);
    color: var(--ds-cream);
}

/* ─── Section Styles ────────────────────────────────────── */
.ds-section {
    padding: 100px 0;
}

.ds-section-alt {
    background: var(--ds-dark);
}

.ds-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ds-section-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.ds-section-header h2 span { color: var(--ds-gold); }

.ds-section-header p {
    color: var(--ds-text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.ds-divider {
    width: 50px;
    height: 1px;
    background: var(--ds-gold);
    margin: 20px auto;
    border-radius: 0;
}

/* ─── Service Cards ─────────────────────────────────────── */
.ds-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.ds-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .ds-brands-grid { grid-template-columns: 1fr; }
}

.ds-service-card {
    display: flex;
    flex-direction: column;
    background: var(--ds-card);
    border-radius: var(--ds-radius-lg);
    overflow: hidden;
    transition: transform var(--ds-transition), box-shadow var(--ds-transition), border-color var(--ds-transition);
    border: 1px solid var(--ds-border);
}

.ds-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 169, 110, 0.4);
}

.ds-service-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ds-service-card-img .ds-price-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(30, 30, 30, 0.85);
    color: var(--ds-gold);
    padding: 6px 14px;
    border-radius: 0;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    backdrop-filter: blur(4px);
}

.ds-service-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.ds-service-card-body .ds-service-options {
    margin-bottom: 12px;
}

.ds-service-card-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.ds-service-card-body p {
    color: var(--ds-text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.ds-service-card-body .ds-duration {
    display: flex;
    justify-content: space-between;
    color: var(--ds-text-muted);
    font-size: 13px;
}

.ds-service-card-body .ds-btn {
    margin-top: auto;
}

.ds-service-card-body .ds-duration-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ds-gold);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius);
    transition: border-color var(--ds-transition), background var(--ds-transition);
    cursor: pointer;
}

.ds-service-card-body .ds-duration-link:hover {
    border-color: var(--ds-gold);
    background: rgba(212, 175, 55, 0.08);
}

.ds-service-card-body .ds-duration-selected {
    border-color: var(--ds-gold) !important;
    background: rgba(212, 175, 55, 0.15) !important;
}

.ds-service-card-body .ds-btn-ready {
    background: var(--ds-gold) !important;
    color: var(--ds-black) !important;
    border-color: var(--ds-gold) !important;
}

.ds-service-card-body .ds-duration-hint {
    font-size: 11px;
    color: var(--ds-text-muted);
    margin-top: 6px;
    text-align: center;
    display: none;
}

@keyframes ds-highlight-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
    50%  { box-shadow: 0 0 0 6px rgba(212,175,55,0.15); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

.ds-highlight-options .ds-duration-link {
    border-color: var(--ds-gold) !important;
    animation: ds-highlight-pulse 0.6s ease 3;
}

/* ─── Therapist Grid ────────────────────────────────────── */
.ds-therapist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 64px;
}

.ds-therapist-card {
    text-align: left;
    background: transparent;
    border-radius: 0;
    padding: 0 0 40px;
    border: none;
    border-bottom: 1px solid var(--ds-border);
    transition: border-color 0.3s;
}

.ds-therapist-card:hover {
    border-color: var(--ds-gold);
}

.ds-therapist-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--ds-radius);
    overflow: hidden;
    margin-bottom: 28px;
    background: var(--ds-dark);
}

.ds-therapist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-therapist-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ds-therapist-name {
    font-family: var(--ds-font-serif);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--ds-cream);
    margin: 0 0 12px;
    text-transform: uppercase;
    line-height: 1.1;
}

.ds-therapist-meta {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 13px;
    color: var(--ds-text);
    margin-bottom: 8px;
    font-family: var(--ds-font-sans);
    letter-spacing: 0.5px;
}

.ds-therapist-meta span {
    display: inline-block;
}

.ds-therapist-meta-sep {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: var(--ds-text-muted);
    margin: 0 14px;
    opacity: 0.4;
    vertical-align: middle;
}

.ds-therapist-role {
    color: var(--ds-text-muted);
    font-size: 13px;
    font-style: italic;
    font-family: var(--ds-font-sans);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.ds-therapist-status {
    color: var(--ds-gold);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.ds-therapist-zh {
    color: var(--ds-gold);
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    font-family: var(--ds-font-serif);
    margin-bottom: 12px;
    line-height: 1.5;
}

.ds-therapist-bio {
    color: var(--ds-text);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-family: var(--ds-font-sans);
}

.ds-therapist-book {
    align-self: flex-start;
    padding: 10px 28px;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: auto;
}

/* Legacy avatar (fallback when no photo) */
.ds-therapist-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--ds-dark);
    border: 1px solid rgba(201, 169, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--ds-gold);
    font-family: var(--ds-font-serif);
    overflow: hidden;
}

.ds-therapist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .ds-therapist-grid {
        grid-template-columns: 1fr;
        gap: 48px 0;
    }
    .ds-therapist-name {
        font-size: clamp(24px, 9vw, 36px);
        letter-spacing: 4px;
    }
}

/* ─── Promotions ────────────────────────────────────────── */
.ds-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.ds-promo-card {
    background: linear-gradient(135deg, var(--ds-card) 0%, rgba(212,175,55,0.08) 100%);
    border-radius: var(--ds-radius-lg);
    padding: 40px;
    border: 1px solid rgba(212,175,55,0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}



.ds-promo-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ds-promo-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    min-height: 68px;
    display: flex;
    align-items: flex-start;
}

.ds-promo-card .ds-promo-price {
    font-size: 36px;
    font-family: var(--ds-font-serif);
    color: var(--ds-gold);
    font-weight: 700;
    margin-bottom: 12px;
    min-height: 54px;
    display: flex;
    align-items: center;
}

.ds-promo-card .ds-promo-original {
    text-decoration: line-through;
    color: var(--ds-text-muted);
    font-size: 18px;
    margin-left: 8px;
}

.ds-promo-card ul {
    list-style: none;
    margin: 16px 0 24px;
    flex: 1;
}

.ds-promo-card ul li {
    padding: 6px 0;
    color: var(--ds-text);
    font-size: 14px;
}

.ds-promo-card ul li::before {
    content: '✦ ';
    color: var(--ds-gold);
}

/* Featured / Premium package card */
.ds-promo-card-featured {
    border-color: var(--ds-gold);
    box-shadow: 0 0 30px rgba(212,175,55,0.15);
}

/* Package tier badge */
.ds-package-tier {
    display: inline-block;
    font-family: var(--ds-font-serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ds-text-muted);
    border: 1px solid var(--ds-text-muted);
    padding: 4px 16px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.ds-package-tier-premium {
    color: var(--ds-gold);
    border-color: var(--ds-gold);
    background: rgba(212,175,55,0.1);
}

.ds-package-validity {
    font-size: 13px;
    color: var(--ds-text-muted);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px;
    margin-bottom: 20px;
    margin-top: auto;
}

.ds-promo-footnote {
    text-align: center;
    color: var(--ds-gold);
    font-size: 15px;
    margin-top: 24px;
}

/* Side-by-side Early Bird + Birthday grid */
.ds-promo-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Highlight promo card (Early Bird, Birthday) */
.ds-promo-highlight {
    background: linear-gradient(135deg, var(--ds-card) 0%, rgba(212,175,55,0.08) 100%);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--ds-radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ds-promo-highlight::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.ds-promo-highlight-badge {
    display: inline-block;
    font-family: var(--ds-font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--ds-gold);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ds-promo-badge-birthday {
    font-size: 36px;
}

.ds-promo-highlight-price {
    margin-bottom: 20px;
}

.ds-promo-highlight-amount {
    font-family: var(--ds-font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--ds-gold);
}

.ds-promo-highlight-duration {
    font-size: 22px;
    color: var(--ds-text-muted);
    margin-left: 4px;
}

.ds-promo-subtitle {
    font-size: 16px;
    color: var(--ds-text);
    margin-bottom: 12px;
    font-weight: 600;
}

.ds-promo-highlight-details ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.ds-promo-highlight-details ul li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--ds-text);
}

.ds-promo-highlight-details ul li::before {
    content: '✦ ';
    color: var(--ds-gold);
}

.ds-promo-terms {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ds-promo-terms p {
    font-size: 12px;
    color: var(--ds-text-muted);
    margin: 2px 0;
}

/* Birthday gifts */
.ds-birthday-gifts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.ds-birthday-gift {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--ds-radius);
    font-size: 15px;
    color: var(--ds-text);
}

.ds-birthday-gift-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: var(--ds-gold);
    color: #000;
    font-weight: 700;
    font-size: 14px;
}

/* ─── Welcome / About Section ───────────────────────────── */
.ds-welcome {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ds-welcome-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.ds-welcome-text h2 span { color: var(--ds-gold); }

.ds-welcome-text p {
    margin-bottom: 16px;
    color: var(--ds-text-muted);
    font-size: 16px;
}

.ds-welcome-img {
    border-radius: var(--ds-radius-lg);
    overflow: hidden;
    height: 450px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--ds-border);
}

/* ─── Blog ──────────────────────────────────────────────── */
.ds-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.ds-blog-card {
    background: var(--ds-card);
    border-radius: var(--ds-radius-lg);
    overflow: hidden;
    border: 1px solid var(--ds-border);
    transition: all var(--ds-transition);
}

.ds-blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--ds-gold);
}

.ds-blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.ds-blog-card-body {
    padding: 24px;
}

.ds-blog-card-body .ds-blog-date {
    color: var(--ds-gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ds-blog-card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.ds-blog-card-body p {
    color: var(--ds-text-muted);
    font-size: 14px;
}

/* ─── Contact Section ───────────────────────────────────── */
.ds-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.ds-contact-info .ds-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.ds-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ds-gold);
    font-size: 20px;
    flex-shrink: 0;
}

.ds-info-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    font-family: var(--ds-font-sans);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ds-info-item .ds-coming-soon {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--ds-gold);
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 2px 10px;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--ds-font-sans);
}

.ds-info-item p {
    color: var(--ds-text-muted);
    font-size: 14px;
}

.ds-contact-form {
    background: var(--ds-card);
    border-radius: var(--ds-radius-lg);
    padding: 40px;
    border: 1px solid var(--ds-border);
}

.ds-contact-form h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.ds-form-group {
    margin-bottom: 20px;
}

.ds-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ds-text-muted);
    margin-bottom: 6px;
}

.ds-form-group input,
.ds-form-group textarea,
.ds-form-group select {
    width: 100%;
    background: var(--ds-dark);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius);
    padding: 12px 16px;
    color: var(--ds-white);
    font-family: var(--ds-font-sans);
    font-size: 14px;
    transition: border-color var(--ds-transition);
}

.ds-form-group input:focus,
.ds-form-group textarea:focus,
.ds-form-group select:focus {
    outline: none;
    border-color: var(--ds-gold);
}

.ds-form-group textarea { resize: vertical; min-height: 120px; }

/* ─── Recruitment ───────────────────────────────────────── */
.ds-recruit-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.ds-benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.ds-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--ds-card);
    padding: 20px;
    border-radius: var(--ds-radius);
    border: 1px solid var(--ds-border);
}

.ds-benefit-item .ds-benefit-icon {
    color: var(--ds-gold);
    font-size: 24px;
    flex-shrink: 0;
}

.ds-benefit-item h4 {
    font-size: 15px;
    font-family: var(--ds-font-sans);
    font-weight: 600;
    margin-bottom: 4px;
}

.ds-benefit-item p {
    color: var(--ds-text-muted);
    font-size: 13px;
}

/* ─── Footer ────────────────────────────────────────────── */
.ds-footer {
    background: #222222;
    border-top: 1px solid var(--ds-border);
    padding: 60px 0 24px;
}

.ds-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.ds-footer-brand .ds-logo {
    font-size: 24px;
    margin-bottom: 16px;
    display: inline-block;
}

.ds-footer-brand p {
    color: var(--ds-text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    max-width: 300px;
}

.ds-footer-social {
    display: flex;
    gap: 12px;
}

.ds-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--ds-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ds-text-muted);
    transition: all var(--ds-transition);
}

.ds-footer-social a:hover {
    border-color: var(--ds-gold);
    color: var(--ds-gold);
}

.ds-footer-col h4 {
    font-size: 16px;
    font-family: var(--ds-font-sans);
    font-weight: 700;
    color: var(--ds-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ds-footer-col ul { list-style: none; }
.ds-footer-col ul li { margin-bottom: 10px; }
.ds-footer-col ul a {
    color: var(--ds-text-muted);
    font-size: 14px;
}
.ds-footer-col ul a:hover { color: var(--ds-gold); }

/* Footer Contact Locations */
.ds-footer-contact p {
    color: var(--ds-text-muted);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.ds-footer-location {
    margin-bottom: 16px;
}

.ds-footer-location-label {
    font-family: var(--ds-font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ds-cream);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ds-coming-soon {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--ds-gold);
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 2px 10px;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ds-footer-phone {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ds-footer-phone a {
    color: var(--ds-text-muted);
    font-size: 14px;
}

.ds-footer-phone a:hover { color: var(--ds-gold); }

.ds-footer-bottom {
    border-top: 1px solid var(--ds-border);
    padding-top: 24px;
    text-align: center;
    color: var(--ds-text-muted);
    font-size: 13px;
}

/* ─── Booking Modal ─────────────────────────────────────── */
.ds-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.ds-modal-overlay.active { display: flex; }

.ds-modal {
    background: var(--ds-dark);
    border-radius: var(--ds-radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    border: 1px solid var(--ds-border);
    position: relative;
}

.ds-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--ds-text-muted);
    font-size: 24px;
    cursor: pointer;
}

.ds-modal-close:hover { color: var(--ds-white); }

/* ─── Booking Page ──────────────────────────────────────── */
.ds-booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 40px 0 48px;
}

.ds-booking-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 70px;
}

.ds-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--ds-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--ds-text-muted);
    transition: all var(--ds-transition);
}

.ds-booking-step-indicator.active .ds-step-num {
    border-color: var(--ds-gold);
    color: var(--ds-black);
    background: var(--ds-gold);
}

.ds-booking-step-indicator.completed .ds-step-num {
    border-color: var(--ds-gold);
    color: var(--ds-gold);
    background: transparent;
}

.ds-step-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ds-text-muted);
}

.ds-booking-step-indicator.active .ds-step-label { color: var(--ds-cream); }

.ds-booking-step-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: var(--ds-border);
    margin: 0 8px;
    margin-bottom: 20px;
}

.ds-booking-step-content { display: none; }
.ds-booking-step-content.active { display: block; max-width: 760px; margin: 0 auto; }

.ds-booking-step-content h3 {
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: center;
}

.ds-booking-cat {
    color: var(--ds-gold);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ds-border);
}

.ds-booking-service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ds-card);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius);
    padding: 16px 20px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all var(--ds-transition);
    gap: 16px;
}

.ds-booking-service-card .ds-booking-service-info {
    flex: 1;
    min-width: 0;
}

.ds-booking-service-card .ds-booking-price {
    flex-shrink: 0;
    white-space: nowrap;
}

.ds-booking-service-card:hover,
.ds-booking-service-card.selected {
    border-color: var(--ds-gold);
    background: rgba(201,169,110,0.08);
}

.ds-booking-service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ds-booking-service-info strong { color: var(--ds-cream); font-size: 15px; }

.ds-booking-price {
    color: var(--ds-gold);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--ds-font-serif);
}

/* Grouped service cards (booking step 1) */
.ds-booking-service-group {
    margin-bottom: 8px;
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius);
    overflow: hidden;
    transition: border-color var(--ds-transition);
}

.ds-booking-service-group:hover {
    border-color: rgba(201,169,110,0.4);
}

.ds-booking-service-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ds-card);
    padding: 16px 20px;
    cursor: pointer;
    transition: background var(--ds-transition);
    position: relative;
    gap: 16px;
}

.ds-booking-service-group-header .ds-booking-service-info {
    flex: 1;
    min-width: 0;
}

.ds-booking-service-group-header .ds-booking-price {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 15px;
}

.ds-booking-service-group-header::after {
    content: '\25BC';
    color: var(--ds-gold);
    font-size: 10px;
    margin-left: 12px;
    transition: transform 0.2s;
}

.ds-booking-service-group.expanded .ds-booking-service-group-header::after {
    transform: rotate(180deg);
}

.ds-booking-service-group-header:hover {
    background: rgba(201,169,110,0.06);
}

.ds-booking-duration-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.15);
}

.ds-booking-service-group.expanded .ds-booking-duration-options {
    max-height: 300px;
}

.ds-booking-duration-card {
    border-radius: 0 !important;
    border: none !important;
    border-top: 1px solid var(--ds-border) !important;
    margin-bottom: 0 !important;
    padding-left: 40px !important;
}

.ds-booking-duration-card:hover,
.ds-booking-duration-card.selected {
    background: rgba(201,169,110,0.12) !important;
}

.ds-booking-therapists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.ds-booking-therapist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--ds-card);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius);
    cursor: pointer;
    transition: all var(--ds-transition);
    text-align: center;
}

.ds-booking-therapist-card:hover,
.ds-booking-therapist-card.selected {
    border-color: var(--ds-gold);
    background: rgba(201,169,110,0.08);
}

.ds-booking-therapist-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.ds-booking-therapist-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ds-gold);
    color: var(--ds-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--ds-font-serif);
}

.ds-booking-therapist-card strong { color: var(--ds-cream); font-size: 14px; }

.ds-booking-datetime {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.ds-booking-field label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ds-text-muted);
    margin-bottom: 8px;
}

.ds-booking-field input,
.ds-booking-field select,
.ds-booking-field textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--ds-card);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius);
    color: var(--ds-cream);
    font-family: var(--ds-font-sans);
    font-size: 14px;
    transition: border-color var(--ds-transition);
}

.ds-booking-field input:focus,
.ds-booking-field select:focus,
.ds-booking-field textarea:focus {
    border-color: var(--ds-gold);
    outline: none;
}

.ds-booking-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
}

.ds-booking-slot {
    padding: 10px;
    background: var(--ds-card);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius);
    color: var(--ds-cream);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--ds-transition);
    text-align: center;
}

.ds-booking-slot:hover:not(.disabled),
.ds-booking-slot.selected {
    border-color: var(--ds-gold);
    background: rgba(201,169,110,0.12);
    color: var(--ds-gold);
}

.ds-booking-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ds-booking-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.ds-booking-form {
    max-width: 500px;
    margin: 0 auto;
}

.ds-booking-form .ds-booking-field { margin-bottom: 16px; }

.ds-booking-summary {
    background: var(--ds-card);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius);
    padding: 20px 24px;
    margin: 24px 0;
}

.ds-booking-summary h4 {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ds-gold);
    margin-top: 12px;
}

.ds-booking-summary h4:first-child { margin-top: 0; }

.ds-booking-summary p {
    color: var(--ds-cream);
    font-size: 14px;
    margin-top: 2px;
}

.ds-text-muted { color: var(--ds-text-muted); }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 992px) {
    .ds-welcome { grid-template-columns: 1fr; }
    .ds-contact-grid { grid-template-columns: 1fr; }
    .ds-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .ds-hero-content h1 { font-size: 36px; letter-spacing: 5px; }
    .ds-benefits-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .ds-nav { display: none; }
    .ds-menu-toggle { display: block; }

    .ds-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(30, 30, 30, 0.98);
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 1010;
        backdrop-filter: blur(12px);
    }

    .ds-nav.open a {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .ds-nav-close {
        display: none;
    }

    .ds-nav.open .ds-nav-close {
        display: block;
        position: absolute;
        top: calc(80px + env(safe-area-inset-top, 0px));
        right: calc(20px + env(safe-area-inset-right, 0px));
        background: none;
        border: none;
        color: var(--ds-cream);
        font-size: 44px;
        line-height: 1;
        cursor: pointer;
        padding: 12px;
        opacity: 0.9;
        min-width: 56px;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ds-nav.open .ds-nav-close:hover { opacity: 1; }

    body.menu-open { overflow: hidden; }

    .ds-hero-content h1 { font-size: 28px; letter-spacing: 4px; }
    .ds-hero-content p { font-size: 16px; }
    .ds-section { padding: 60px 0; }
    .ds-section-header h2 { font-size: 24px; letter-spacing: 3px; }
    .ds-promo-grid { grid-template-columns: 1fr; }
    .ds-promo-highlight-grid { grid-template-columns: 1fr; }
    .ds-promo-highlight { padding: 24px; }
    .ds-promo-highlight-amount { font-size: 36px; }
    .ds-birthday-gift { padding: 10px 14px; font-size: 14px; }
    .ds-services-grid { grid-template-columns: 1fr; }
    .ds-blog-grid { grid-template-columns: 1fr; }
    .ds-therapist-grid { grid-template-columns: 1fr; gap: 32px; }
    .ds-therapist-name { font-size: 26px; letter-spacing: 4px; }
    .ds-booking-datetime { grid-template-columns: 1fr; }
    .ds-booking-progress { gap: 0; }
    .ds-step-label { font-size: 10px; }
    .ds-booking-step-line { max-width: 40px; }

    .dg-chatbot-container {
        width: calc(100% - 32px);
        right: 16px;
        bottom: 88px;
        max-height: 60vh;
    }
}

.ds-topbar-phone-icon { color: var(--ds-cream); }

@media (max-width: 768px) {
    :root { --ds-topbar-h: 52px; }
    .ds-topbar { font-size: 11px; padding: 4px 8px; height: var(--ds-topbar-h); text-align: left; }
    .ds-topbar .ds-container { justify-content: space-between; align-items: center; padding: 0; }
    .ds-topbar .ds-container > span:first-child { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 0; text-align: left; }
    .ds-topbar-sep { display: none !important; }
    .ds-hero-content h1 { font-size: 22px; letter-spacing: 3px; }
    .ds-modal { padding: 24px; }
}

/* ─── Animations ────────────────────────────────────────── */
.ds-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ds-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Utility ───────────────────────────────────────────── */
.ds-text-gold { color: var(--ds-gold); }
.ds-text-center { text-align: center; }
.ds-mt-2 { margin-top: 16px; }
.ds-mt-4 { margin-top: 32px; }
.ds-mb-2 { margin-bottom: 16px; }
.ds-mb-4 { margin-bottom: 32px; }
.ds-gap-2 { gap: 16px; }
.ds-flex { display: flex; }
.ds-flex-center { display: flex; align-items: center; justify-content: center; }
