/* ============================================================
   PRERNA-Daynight Outcall Spa — Premium Stylesheet
   Color Palette:
   Deep Emerald: #063B32
   Forest:       #0B5145
   Champagne Gold: #D6B36A
   Ivory:        #F8F4EA
   Dark:         #071C18
   Soft Gold:    #E7D19A
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --emerald: #063B32;
    --forest: #0B5145;
    --gold: #D6B36A;
    --soft-gold: #E7D19A;
    --ivory: #F8F4EA;
    --dark: #071C18;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-muted: #5a6a65;
    --border-gold: rgba(214,179,106,0.35);
    --shadow-emerald: 0 8px 40px rgba(6,59,50,0.18);
    --shadow-gold: 0 4px 24px rgba(214,179,106,0.22);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.22s ease;
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Jost', 'Inter', system-ui, sans-serif;
    --font-accent: 'Cinzel', 'Georgia', serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&family=Cinzel:wght@400;600;700&display=swap');

/* --- Custom Cursor --- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: normal;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.cursor-dot.hover, .cursor-ring.hover {
    width: 14px;
    height: 14px;
    background: var(--gold);
}

.cursor-ring.hover {
    width: 54px;
    height: 54px;
    border-color: var(--soft-gold);
    opacity: 0.4;
}

/* --- Page Transition Overlay --- */
.page-transition-overlay {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 100000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.77,0,0.175,1);
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--soft-gold));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(6, 27, 20, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-gold);
    padding: 1rem 3rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
}

.nav-logo {
    font-family: var(--font-accent);
    font-size: 1.35rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-logo span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--soft-gold);
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 1px;
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248,244,234,0.88);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition-fast);
    font-weight: 400;
}

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

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

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

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 0.5rem 1.4rem !important;
    border-radius: 2px;
    transition: var(--transition) !important;
    font-weight: 500 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--dark) !important;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 9100;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--soft-gold);
    transition: var(--transition);
    transform-origin: center;
}

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

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(380px, 100vw);
    height: 100vh;
    background: var(--dark);
    z-index: 9050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    transition: right 0.55s cubic-bezier(0.77,0,0.175,1);
    border-left: 1px solid var(--border-gold);
}

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

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(214,179,106,0.12);
    transform: translateX(40px);
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.open .mobile-nav-links li {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.open .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-nav-links li:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.open .mobile-nav-links li:nth-child(8) { transition-delay: 0.45s; }
.mobile-menu.open .mobile-nav-links li:nth-child(9) { transition-delay: 0.5s; }

.mobile-nav-links a {
    display: block;
    padding: 1.1rem 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--ivory);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-nav-links a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.mobile-contact-info {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gold);
}

.mobile-contact-info a {
    display: block;
    color: var(--soft-gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/7031704/pexels-photo-7031704.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=1920');
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: heroZoom 18s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1.14); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6,27,20,0.87) 0%,
        rgba(6,59,50,0.72) 50%,
        rgba(7,28,24,0.82) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s ease forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--gold);
    animation: expandLine 0.8s 0.9s ease forwards;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 60px; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.12;
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s ease forwards;
}

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

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 300;
    color: rgba(248,244,234,0.82);
    margin-bottom: 1.4rem;
    opacity: 0;
    animation: fadeUp 0.9s 1.0s ease forwards;
    font-style: italic;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(231,209,154,0.75);
    letter-spacing: 0.06em;
    margin-bottom: 2.8rem;
    opacity: 0;
    animation: fadeUp 0.9s 1.2s ease forwards;
    font-weight: 300;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.6rem auto;
    opacity: 0;
    animation: fadeIn 1s 1.05s ease forwards;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 1.4s ease forwards;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.9rem 2.2rem;
    border: 1.5px solid var(--gold);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    transform: translateX(-101%);
    transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
    z-index: 0;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span, .btn-primary svg {
    position: relative;
    z-index: 1;
    transition: color 0.45s ease;
}

.btn-primary:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--ivory);
    padding: 0.9rem 2.2rem;
    border: 1.5px solid rgba(248,244,234,0.45);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    cursor: none;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(214,179,106,0.08);
}

.btn-emerald {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--emerald);
    color: var(--soft-gold);
    padding: 0.85rem 2rem;
    border: 1.5px solid var(--forest);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: none;
}

.btn-emerald:hover {
    background: var(--forest);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    padding: 0.85rem 2rem;
    border: 1.5px solid #25D366;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: none;
}

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

/* --- Hero Decorative Elements --- */
.hero-deco {
    position: absolute;
    pointer-events: none;
}

.hero-deco-circle {
    border: 1px solid rgba(214,179,106,0.18);
    border-radius: 50%;
    animation: floatDeco 8s ease-in-out infinite;
}

.hero-deco-1 {
    width: 300px; height: 300px;
    top: 15%; left: 8%;
    animation-delay: 0s;
}

.hero-deco-2 {
    width: 180px; height: 180px;
    top: 20%; right: 10%;
    animation-delay: 2s;
}

.hero-deco-3 {
    width: 80px; height: 80px;
    bottom: 25%; right: 18%;
    border-color: rgba(214,179,106,0.3);
    animation-delay: 4s;
}

@keyframes floatDeco {
    0%, 100% { transform: translate(0,0) rotate(0deg); }
    33% { transform: translate(8px,-12px) rotate(5deg); }
    66% { transform: translate(-6px,8px) rotate(-3deg); }
}

.hero-deco-line {
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    position: absolute;
    animation: floatLine 6s ease-in-out infinite;
}

.hero-deco-line-1 {
    height: 120px;
    top: 30%;
    left: 5%;
    animation-delay: 1s;
}

.hero-deco-line-2 {
    height: 80px;
    bottom: 20%;
    right: 8%;
    animation-delay: 3s;
}

@keyframes floatLine {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.3); }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(231,209,154,0.6);
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    animation: fadeUp 1s 2s ease forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1px solid rgba(214,179,106,0.5);
    border-radius: 11px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    width: 2px;
    height: 8px;
    background: var(--gold);
    border-radius: 1px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

/* --- Section Base Styles --- */
section {
    position: relative;
}

.section-pad {
    padding: 7rem 0;
}

.section-pad-sm {
    padding: 4.5rem 0;
}

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

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

/* --- Section Titles --- */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.18;
    color: var(--emerald);
    letter-spacing: 0.01em;
}

.section-title em {
    font-style: italic;
    color: var(--forest);
}

.section-title-light {
    color: var(--ivory);
}

.section-title-light em {
    color: var(--soft-gold);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-top: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
}

.section-desc-light {
    color: rgba(248,244,234,0.72);
}

.divider-gold {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--soft-gold));
    margin: 1.6rem 0;
    border-radius: 1px;
}

.divider-gold-center {
    margin: 1.6rem auto;
}

/* --- Intro Section --- */
.intro-section {
    background: var(--ivory);
    padding: 8rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.intro-image-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
    transform: scale(1.02);
}

.intro-image-wrap:hover img {
    transform: scale(1.06);
}

.intro-image-frame {
    position: absolute;
    inset: -12px;
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
    transform: translate(16px, 16px);
}

.intro-badge {
    position: absolute;
    bottom: 2.5rem;
    right: -1.5rem;
    background: var(--dark);
    color: var(--soft-gold);
    padding: 1.5rem;
    border: 1px solid var(--border-gold);
    text-align: center;
    z-index: 2;
    min-width: 140px;
}

.intro-badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.intro-badge-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.4rem;
}

/* --- Service Cards --- */
.services-section {
    background: var(--emerald);
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(214,179,106,0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    background: rgba(255,255,255,0.07);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.service-card-icon {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 44px;
    height: 44px;
    background: rgba(6,59,50,0.85);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--gold);
    color: var(--dark);
    transform: rotate(15deg) scale(1.1);
}

.service-card-body {
    padding: 1.8rem;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 0.7rem;
    letter-spacing: 0.02em;
}

.service-card-desc {
    font-size: 0.88rem;
    color: rgba(248,244,234,0.62);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.service-card-cta:hover {
    color: var(--soft-gold);
    gap: 0.8rem;
}

.service-availability {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(231,209,154,0.5);
    font-style: italic;
    margin-bottom: 1rem;
    display: block;
}

/* --- Why Choose Section --- */
.why-section {
    background: var(--ivory);
    padding: 8rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.why-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(6,59,50,0.1);
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--soft-gold));
    transition: width 0.5s ease;
}

.why-card:hover {
    box-shadow: var(--shadow-gold);
    border-color: rgba(214,179,106,0.3);
    transform: translateY(-4px);
}

.why-card:hover::before {
    width: 100%;
}

.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(6,59,50,0.06);
    border: 1px solid rgba(6,59,50,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    color: var(--emerald);
    font-size: 1.5rem;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--emerald);
    color: var(--gold);
    border-color: var(--emerald);
    transform: scale(1.08) rotate(5deg);
}

.why-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--emerald);
    margin-bottom: 0.7rem;
}

.why-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

/* --- Split Section --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.split-image:hover img {
    transform: scale(1.04);
}

.split-content {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem;
}

.split-content-light {
    background: var(--ivory);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Local SEO Section --- */
.local-seo-section {
    background: var(--forest);
    padding: 8rem 0;
}

.local-seo-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 6rem;
    align-items: start;
}

.local-seo-text p {
    font-size: 0.95rem;
    color: rgba(248,244,234,0.75);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.local-seo-sidebar {
    position: sticky;
    top: 7rem;
}

.info-card {
    background: rgba(6,27,20,0.6);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.info-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(248,244,234,0.72);
    font-size: 0.88rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(214,179,106,0.08);
    line-height: 1.5;
    font-weight: 300;
}

.info-list li:last-child { border-bottom: none; }

.info-list-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Location Section --- */
.location-section {
    background: var(--ivory);
    padding: 8rem 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.location-info {
    padding-right: 2rem;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(6,59,50,0.1);
}

.location-detail:last-of-type {
    border-bottom: none;
}

.location-detail-icon {
    width: 42px;
    height: 42px;
    background: rgba(6,59,50,0.06);
    border: 1px solid rgba(6,59,50,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    flex-shrink: 0;
}

.location-detail-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.location-detail-value {
    font-size: 0.92rem;
    color: var(--emerald);
    font-weight: 400;
    line-height: 1.5;
}

.map-container {
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    position: relative;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 420px;
}

.map-label {
    background: var(--dark);
    color: var(--soft-gold);
    padding: 0.8rem 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    border-top: 1px solid var(--border-gold);
}

/* --- Process Steps --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), var(--gold), var(--border-gold), transparent);
}

.process-step {
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.step-circle {
    width: 64px;
    height: 64px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    font-size: 1.3rem;
    background: var(--dark);
    transition: var(--transition);
}

.process-step:hover .step-circle {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.08);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--ivory);
    margin-bottom: 0.6rem;
    font-weight: 400;
}

.step-desc {
    font-size: 0.85rem;
    color: rgba(248,244,234,0.6);
    line-height: 1.7;
    font-weight: 300;
}

/* --- FAQ Accordion --- */
.faq-section {
    background: var(--ivory);
    padding: 8rem 0;
}

.faq-list {
    max-width: 820px;
    margin: 3.5rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(6,59,50,0.12);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid rgba(6,59,50,0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    cursor: none;
    transition: color 0.3s ease;
    gap: 1rem;
}

.faq-question-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--emerald);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.open .faq-question-text {
    color: var(--forest);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(6,59,50,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--emerald);
    transition: var(--transition);
    font-size: 0.9rem;
}

.faq-item.open .faq-icon {
    background: var(--emerald);
    color: var(--gold);
    border-color: var(--emerald);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding-bottom: 1.5rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

/* --- Contact Form --- */
.contact-form-section {
    background: var(--emerald);
    padding: 8rem 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--soft-gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(214,179,106,0.2);
    border-radius: 3px;
    padding: 0.85rem 1rem;
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    -webkit-appearance: none;
}

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

.form-select option {
    background: var(--dark);
    color: var(--ivory);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(248,244,234,0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(214,179,106,0.12);
}

.form-input.error,
.form-textarea.error {
    border-color: #e07070;
}

.form-error {
    font-size: 0.75rem;
    color: #e07070;
    margin-top: 0.35rem;
    display: none;
}

.form-error.visible { display: block; }

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

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

/* --- Breadcrumb --- */
.breadcrumb-bar {
    background: var(--dark);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(214,179,106,0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    list-style: none;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(248,244,234,0.5);
}

.breadcrumb li:last-child {
    color: var(--gold);
}

.breadcrumb a {
    color: rgba(231,209,154,0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb-sep {
    color: rgba(214,179,106,0.3);
    font-size: 0.6rem;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
    background: var(--dark);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(11,81,69,0.4) 0%, transparent 70%);
    pointer-events: none;
}

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

.page-hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.15;
    max-width: 700px;
}

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

.page-hero-desc {
    font-size: 1rem;
    color: rgba(248,244,234,0.65);
    max-width: 560px;
    margin-top: 1.2rem;
    font-weight: 300;
    line-height: 1.75;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border-gold);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-tagline {
    font-size: 0.78rem;
    color: rgba(231,209,154,0.55);
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.footer-about {
    font-size: 0.85rem;
    color: rgba(248,244,234,0.5);
    line-height: 1.8;
    font-weight: 300;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: rgba(248,244,234,0.55);
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
    font-weight: 300;
    display: inline-block;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.footer-contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.9rem;
}

.footer-contact-text {
    font-size: 0.85rem;
    color: rgba(248,244,234,0.58);
    line-height: 1.6;
    font-weight: 300;
}

.footer-contact-text a {
    color: rgba(248,244,234,0.58);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-text a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(214,179,106,0.1);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(248,244,234,0.35);
    letter-spacing: 0.05em;
    font-weight: 300;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(248,244,234,0.35);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* --- Mobile Bottom Bar --- */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 8000;
    background: var(--dark);
    border-top: 1px solid var(--border-gold);
    grid-template-columns: repeat(3, 1fr);
}

.mobile-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    text-decoration: none;
    color: var(--soft-gold);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    gap: 0.3rem;
    transition: background 0.25s ease, color 0.25s ease;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    min-height: 56px;
}

.mobile-cta-btn:hover, .mobile-cta-btn:active {
    background: rgba(214,179,106,0.1);
    color: var(--gold);
}

.mobile-cta-btn:nth-child(2) {
    border-left: 1px solid var(--border-gold);
    border-right: 1px solid var(--border-gold);
    background: rgba(214,179,106,0.06);
}

.mobile-cta-btn svg {
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

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

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

/* --- Text Highlight --- */
.text-gold { color: var(--gold); }
.text-ivory { color: var(--ivory); }
.text-emerald { color: var(--emerald); }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* --- About Content --- */
.about-content-section {
    background: var(--ivory);
    padding: 8rem 0;
}

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

.about-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-item {
    padding: 1.5rem;
    background: rgba(6,59,50,0.04);
    border: 1px solid rgba(6,59,50,0.1);
    border-radius: 3px;
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--gold);
    background: rgba(214,179,106,0.04);
}

.value-icon {
    color: var(--emerald);
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    display: block;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--emerald);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.value-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
}

/* --- Massage Page Services --- */
.massage-services-section {
    background: var(--ivory);
    padding: 8rem 0;
}

.massage-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(6,59,50,0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: var(--transition);
}

.massage-service-item:nth-child(even) {
    direction: rtl;
}

.massage-service-item:nth-child(even) > * {
    direction: ltr;
}

.massage-service-item:hover {
    box-shadow: var(--shadow-emerald);
    transform: translateY(-4px);
}

.massage-service-img {
    overflow: hidden;
    height: 380px;
}

.massage-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.massage-service-item:hover .massage-service-img img {
    transform: scale(1.05);
}

.massage-service-content {
    background: var(--white);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.massage-service-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(6,59,50,0.07);
    line-height: 1;
    margin-bottom: -0.5rem;
}

.massage-service-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.massage-service-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* --- Outcall Process Section --- */
.outcall-section {
    background: var(--dark);
    padding: 8rem 0;
}

/* --- Notification / Toast --- */
.toast {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    background: var(--dark);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 1rem 1.5rem;
    color: var(--ivory);
    font-size: 0.88rem;
    z-index: 99000;
    transform: translateX(calc(100% + 2rem));
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    max-width: 300px;
    box-shadow: var(--shadow-gold);
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--emerald);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: none;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 7000;
    font-size: 0.9rem;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* --- Highlight Strip --- */
.highlight-strip {
    background: linear-gradient(90deg, var(--dark) 0%, var(--emerald) 50%, var(--dark) 100%);
    padding: 1rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.strip-inner {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: stripScroll 20s linear infinite;
    width: max-content;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(231,209,154,0.7);
    font-weight: 400;
}

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

@keyframes stripScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 1.2rem 1.5rem;
    }
    .navbar.scrolled {
        padding: 0.9rem 1.5rem;
    }
    .nav-links {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .intro-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .intro-image-frame {
        display: none;
    }
    .intro-badge {
        right: 1rem;
    }
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-content, .split-content-light {
        padding: 4rem 2rem;
    }
    .local-seo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .local-seo-sidebar {
        position: static;
    }
    .location-grid {
        grid-template-columns: 1fr;
    }
    .location-info {
        padding-right: 0;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .process-steps::before { display: none; }
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .massage-service-item {
        grid-template-columns: 1fr;
    }
    .massage-service-item:nth-child(even) {
        direction: ltr;
    }
    .massage-service-img {
        height: 260px;
    }
    .massage-service-content {
        padding: 2.5rem;
    }
    .mobile-cta-bar {
        display: grid;
    }
    .footer {
        padding-bottom: 80px;
    }
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 640px) {
    .section-pad { padding: 5rem 0; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-actions { flex-direction: column; align-items: center; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .page-hero { padding: 7rem 0 4rem; }
    .container { padding: 0 1.2rem; }
    .hero-deco-1 { display: none; }
}

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

/* --- Focus States --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* --- Print --- */
@media print {
    .navbar, .mobile-cta-bar, .cursor-dot, .cursor-ring, .back-to-top { display: none; }
    body { cursor: auto; }
}
