/* ============================================
   LUXE WELLNESS — PREMIUM DESIGN SYSTEM
   ============================================ */

:root {
    --cream: #FAF8F5;
    --cream-dark: #F2EDE5;
    --blush: #EFE0D4;
    --mocha: #8B6F5C;
    --mocha-dark: #6B5244;
    --mocha-light: #A8856F;
    --gold: #C9A96E;
    --gold-light: #E3C99A;
    --gold-dark: #A88448;
    --dark: #1C1917;
    --text: #3D3530;
    --text-light: #7A6E6A;
    --text-muted: #A09690;
    --white: #FFFFFF;
    --border: rgba(139, 111, 92, 0.15);
    --shadow-sm: 0 2px 12px rgba(28, 25, 23, 0.06);
    --shadow-md: 0 8px 32px rgba(28, 25, 23, 0.1);
    --shadow-lg: 0 20px 60px rgba(28, 25, 23, 0.14);
    --shadow-glow: 0 0 40px rgba(201, 169, 110, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --nav-h: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.serif { font-family: var(--font-serif); }
.gold-text { color: var(--gold); }
.mocha-text { color: var(--mocha); }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section--sm {
    padding: 60px 0;
}

.section--lg {
    padding: 140px 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--mocha-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--mocha); }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.cursor--hover { transform: translate(-50%, -50%) scale(1.5); }
.cursor-ring--hover { width: 60px; height: 60px; opacity: 0.3; }

/* ============================================
   PAGE LOADER
   ============================================ */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--mocha);
    letter-spacing: 0.05em;
}

.loader-bar {
    width: 160px;
    height: 2px;
    background: var(--blush);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--mocha));
    animation: loadBar 1.2s ease-in-out forwards;
    border-radius: 2px;
}

@keyframes loadBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navbar--transparent {
    background: transparent;
}

.navbar--solid {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(139, 111, 92, 0.1), var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-logo-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
    letter-spacing: 0.02em;
}

.nav-logo-tag {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--mocha);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--mocha);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    border: 1.5px solid var(--mocha);
}

.nav-book-btn:hover {
    background: var(--mocha-dark);
    border-color: var(--mocha-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(139, 111, 92, 0.3);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(380px, 100vw);
    height: 100vh;
    background: var(--cream);
    z-index: 1001;
    padding: 100px 40px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: -20px 0 60px rgba(28, 25, 23, 0.12);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--dark);
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    display: block;
}

.mobile-menu a:hover { color: var(--mocha); }

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--mocha);
    color: var(--white);
    border: 1.5px solid var(--mocha);
}

.btn--primary:hover {
    background: var(--mocha-dark);
    border-color: var(--mocha-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139, 111, 92, 0.35);
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
    border: 1.5px solid var(--gold);
}

.btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 110, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--mocha);
    border: 1.5px solid var(--mocha);
}

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

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--mocha);
}

.btn--lg {
    padding: 20px 48px;
    font-size: 0.88rem;
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.75rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    color: var(--mocha);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.btn-icon:hover {
    background: var(--mocha);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-bg.loaded img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(250, 248, 245, 0.92) 0%,
        rgba(250, 248, 245, 0.7) 50%,
        rgba(250, 248, 245, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: var(--nav-h);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-label .line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--dark);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--mocha);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-watch {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    transition: var(--transition);
}

.hero-watch:hover { color: var(--mocha); }

.play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    position: relative;
    z-index: 1;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 60px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--mocha);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-side {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 24px;
}

.hero-side-text {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50% { opacity: 0.4; }
}

/* Floating Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    bottom: -200px;
    right: 10%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--mocha);
    top: 10%;
    right: 30%;
    animation-delay: -3s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(5deg); }
    66% { transform: translate(-10px, 15px) rotate(-3deg); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--mocha);
    padding: 20px 0;
    overflow: hidden;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* ============================================
   CARDS — SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    group: true;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

.service-card-body {
    padding: 28px;
}

.service-card-cat {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.service-card-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.service-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--mocha);
}

.price-sale {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--mocha);
}

.price-original {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ============================================
   FEATURED SERVICES (Homepage)
   ============================================ */
.featured-services {
    background: var(--cream);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 120px;
}

.about-badge-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-badge-text {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 4px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--mocha);
}

.about-feature-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.about-feature-desc {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   BOOKING STEPS
   ============================================ */
.booking-steps {
    background: linear-gradient(135deg, var(--mocha), var(--mocha-dark));
    color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.step-item {
    padding: 48px 24px;
    text-align: center;
    position: relative;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold-light);
    position: relative;
    z-index: 1;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    background: var(--cream-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.team-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-body {
    padding: 24px;
}

.team-card-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card-title {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card-bio {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.team-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    padding: 4px 12px;
    background: var(--blush);
    color: var(--mocha);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--white);
    overflow: hidden;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

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

.testimonial-quote {
    font-size: 3rem;
    line-height: 0;
    color: var(--gold);
    opacity: 0.4;
    font-family: var(--font-serif);
    margin-bottom: 24px;
    display: block;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--blush);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.testimonial-service {
    font-size: 0.75rem;
    color: var(--gold);
    margin-top: 2px;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.star { color: var(--gold); font-size: 0.85rem; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
    cursor: pointer;
}

.gallery-item:nth-child(3n+1) {
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,25,23,0.6), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.95);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-section {
    background: var(--cream);
    min-height: 100vh;
    padding-top: calc(var(--nav-h) + 60px);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.booking-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

/* Multi-step progress */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    position: relative;
}

.progress-line {
    flex: 1;
    height: 1px;
    background: var(--border);
    max-width: 80px;
}

.progress-line.done {
    background: var(--gold);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.progress-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.progress-step.active .progress-dot {
    border-color: var(--mocha);
    background: var(--mocha);
    color: var(--white);
    box-shadow: 0 0 0 6px rgba(139, 111, 92, 0.12);
}

.progress-step.done .progress-dot {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}

.progress-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.progress-step.active .progress-label { color: var(--mocha); }
.progress-step.done .progress-label { color: var(--gold); }

/* Form Steps */
.form-step { display: none; }
.form-step.active { display: block; }

.step-title-main {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Service Selection */
.service-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 8px;
}

.service-select-item {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.service-select-item:hover {
    border-color: var(--mocha);
    background: var(--cream);
}

.service-select-item.selected {
    border-color: var(--mocha);
    background: rgba(139, 111, 92, 0.06);
}

.service-select-item.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    background: var(--mocha);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.ssi-cat {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.ssi-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.ssi-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.ssi-price {
    font-weight: 700;
    color: var(--mocha);
}

/* Staff Selection */
.staff-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.staff-select-item {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.staff-select-item:hover {
    border-color: var(--mocha);
    background: var(--cream);
}

.staff-select-item.selected {
    border-color: var(--mocha);
    background: rgba(139, 111, 92, 0.06);
}

.staff-select-item.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    background: var(--mocha);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.ssi-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 2px solid var(--blush);
}

.ssi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ssi-staff-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.ssi-staff-title {
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Date/Time Selection */
.datetime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.time-slot {
    padding: 10px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--mocha);
    color: var(--mocha);
    background: var(--cream);
}

.time-slot.selected {
    background: var(--mocha);
    border-color: var(--mocha);
    color: var(--white);
}

.time-slot.unavailable {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: line-through;
}

/* Form Fields */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
}

.form-label span {
    color: var(--gold);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--text);
    font-size: 0.92rem;
    transition: var(--transition);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--mocha);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 111, 92, 0.08);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Booking Summary Sidebar */
.booking-summary {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--border);
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.summary-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

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

.summary-item-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.summary-item-value {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
    text-align: right;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--mocha);
}

.summary-total-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.summary-total-price {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--mocha);
}

.booking-nav-btns {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

/* Confirmation */
.booking-success {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--mocha));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2rem;
    color: white;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-ref {
    display: inline-block;
    background: var(--blush);
    color: var(--mocha);
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.1em;
    margin: 16px 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: var(--mocha);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: var(--white);
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-info-value {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 8px;
}

.hours-day {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
}

.hours-time {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    text-align: right;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-body {
    background: #F8F6F3;
    min-height: 100vh;
}

.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: var(--dark);
    padding: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.admin-logo {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-logo-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--white);
}

.admin-logo-tag {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.admin-nav {
    flex: 1;
    padding: 24px 12px;
    overflow-y: auto;
}

.admin-nav-section {
    margin-bottom: 24px;
}

.admin-nav-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
    padding: 0 12px;
    margin-bottom: 8px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-weight: 500;
}

.admin-nav a:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
}

.admin-nav a.active {
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold-light);
}

.admin-nav a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.admin-main {
    margin-left: 260px;
    min-height: 100vh;
}

.admin-topbar {
    background: var(--white);
    height: 68px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-page-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--dark);
}

.admin-content {
    padding: 32px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stat-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-icon.mocha { background: rgba(139,111,92,0.1); color: var(--mocha); }
.stat-card-icon.gold { background: rgba(201,169,110,0.1); color: var(--gold-dark); }
.stat-card-icon.green { background: rgba(72,187,120,0.1); color: #2F855A; }
.stat-card-icon.blue { background: rgba(66,153,225,0.1); color: #2B6CB0; }

.stat-card-trend {
    font-size: 0.72rem;
    padding: 4px 8px;
    border-radius: 50px;
    font-weight: 600;
}

.trend-up { background: rgba(72,187,120,0.1); color: #2F855A; }
.trend-down { background: rgba(245,101,101,0.1); color: #C53030; }

.stat-card-value {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Admin Tables */
.admin-table-wrap {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
}

.admin-table-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-table-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

.admin-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    min-width: 220px;
}

.admin-search input {
    border: none;
    background: none;
    font-size: 0.85rem;
    color: var(--text);
    outline: none;
    width: 100%;
}

table.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    padding: 14px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: left;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.admin-table td {
    padding: 16px 20px;
    font-size: 0.875rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(250, 248, 245, 0.6);
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.status-pending { background: rgba(237,137,54,0.1); color: #C05621; }
.status-confirmed { background: rgba(66,153,225,0.1); color: #2B6CB0; }
.status-completed { background: rgba(72,187,120,0.1); color: #276749; }
.status-cancelled { background: rgba(245,101,101,0.1); color: #C53030; }
.status-no_show { background: rgba(160,150,144,0.1); color: #4A5568; }

/* Admin Login */
.admin-login-wrap {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.admin-login-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.admin-login-logo {
    text-align: center;
    margin-bottom: 40px;
}

.login-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.login-bg-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -200px;
}

.login-bg-2 {
    width: 400px;
    height: 400px;
    background: var(--mocha);
    bottom: -150px;
    left: -100px;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--dark), var(--mocha-dark));
    padding: calc(var(--nav-h) + 80px) 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1920&q=40') center/cover;
    opacity: 0.08;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: var(--gold); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--mocha), var(--mocha-dark));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1920&q=20') center/cover;
    opacity: 0.06;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 48px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    margin: 20px 0 28px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.55);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ============================================
   FILTER TABS
   ============================================ */
.filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1.5px solid var(--border);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.filter-tab:hover {
    border-color: var(--mocha);
    color: var(--mocha);
}

.filter-tab.active {
    background: var(--mocha);
    border-color: var(--mocha);
    color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { max-width: 500px; margin: 0 auto; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-summary { position: static; }
    .testimonials-track { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-card { position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --nav-h: 68px; }
    .nav-links, .nav-book-btn { display: none; }
    .nav-hamburger { display: flex; }
    .section { padding: 70px 0; }
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-track { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .service-select-grid { grid-template-columns: 1fr; }
    .datetime-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .booking-form-wrap { padding: 32px 24px; }
    .admin-sidebar { width: 220px; }
    .admin-main { margin-left: 220px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .team-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(3n+1) { grid-row: span 1; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRINT & MISC
   ============================================ */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.divider-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-wave svg {
    display: block;
}

.skeleton {
    background: linear-gradient(90deg, var(--blush) 25%, var(--cream-dark) 50%, var(--blush) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert-success {
    background: rgba(72,187,120,0.1);
    color: #276749;
    border: 1px solid rgba(72,187,120,0.3);
}

.alert-error {
    background: rgba(245,101,101,0.1);
    color: #C53030;
    border: 1px solid rgba(245,101,101,0.3);
}

.alert-info {
    background: rgba(66,153,225,0.1);
    color: #2B6CB0;
    border: 1px solid rgba(66,153,225,0.3);
}
