:root {
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --dark: #0a0e17;
    --dark-soft: #111827;
    --dark-card: #151c2a;
    --text: #e2e8f0;
    --text-muted: #8a94a6;
    --white: #fefcf9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

/* NAV */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 14, 23, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-dim);
}

nav {
    padding: 1.5rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

/* HAMBURGER */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 6rem 6rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
}

.hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 400px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('images/hero/hero_1.webp') center/cover fixed;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 14, 23, 0.55) 0%, rgba(10, 14, 23, 0.2) 40%, transparent 70%);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover { background: var(--gold-light); }

.btn-text {
    color: var(--gold);
    padding-left: 0;
}

.btn-text::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-left: 12px;
    transition: width 0.3s;
}

.btn-text:hover::after { width: 60px; }

/* DIVIDER */
.divider {
    width: 60px;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
    margin: 0 auto;
}

/* INTRO */
.intro {
    padding: 8rem 3rem;
    text-align: center;
    background: var(--dark-soft);
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
}

.intro h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
}

.intro h2 em { color: var(--gold); font-style: italic; }

.intro p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* SECTION TAGS */
.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

/* SERVICES */
.services {
    padding: 8rem 3rem;
    background: var(--dark);
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.service-card {
    background: var(--dark);
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: background 0.4s;
}

.service-card:hover { background: var(--dark-card); }

a.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

/* IMAGE + TEXT ROWS */
.image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.image-row.reverse { direction: rtl; }
.image-row.reverse > * { direction: ltr; }

.image-panel {
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

/* AUTO GALLERY */
.auto-gallery {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.auto-gallery .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.auto-gallery .slide.active {
    opacity: 1;
}

.text-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 6rem;
    background: var(--dark-soft);
}

.text-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.text-panel p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.text-panel.alt { background: var(--dark); }

/* MASSAGE / PRICING */
.massage {
    padding: 8rem 3rem;
    background: var(--dark-soft);
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
}

.massage-header {
    text-align: center;
    margin-bottom: 4rem;
}

.massage-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text);
}

.massage-header p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.95rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.massage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.massage-item {
    background: var(--dark-soft);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.massage-item:hover { background: var(--dark-card); }

.massage-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text);
}

.massage-item .price {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    white-space: nowrap;
}

.massage-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.recovery-passes {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.pass-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
}

.massage-pricing-section {
    max-width: 800px;
    margin: 5rem auto 0;
}

.highlight-gold {
    color: var(--gold);
}

.info-link {
    color: var(--text-muted);
    text-decoration: none;
}

.info-link:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    margin-top: 4rem;
}

.divider-spaced {
    margin-bottom: 3rem;
}

/* GALLERY */
.gallery {
    padding: 8rem 3rem;
    background: var(--dark);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text);
}

.gallery-header p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.gallery-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-grid .g-item {
    background-size: cover;
    background-position: center;
    background-color: var(--dark-card);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-grid .g-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0);
    transition: background 0.4s;
}

.gallery-grid .g-item:hover::after {
    background: rgba(10, 14, 23, 0.2);
}

/* Bento layout — item 1 is featured (2x2), item 8 spans 2 cols */
.gallery-grid .g-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-grid .g-item:nth-child(7) {
    grid-column: 2 / 4;
    grid-row: span 2;
}

.gallery-grid .g-item:nth-child(8) {
    grid-column: 1;
}

.gallery-grid .g-item:nth-child(9) {
    grid-column: 1;
}


/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(5, 8, 15, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 3px;
    transform: scale(0.92);
    transition: transform 0.35s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    font-family: inherit;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
    line-height: 1;
    padding: 1rem;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--gold-light);
    transform: scale(1.15);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.15);
}

.gallery-spacer { height: 4rem; }

/* FEATURE BANNER */
.feature-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--gold-dim);
}

.feature-card {
    padding: 5rem 4rem;
    text-align: center;
    background: var(--dark-soft);
    border-right: 1px solid var(--gold-dim);
}

.feature-card:last-child { border-right: none; }

.feature-card h3 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 380px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* INFO */
.info-section {
    padding: 6rem 3rem;
    background: var(--dark);
    border-top: 1px solid var(--gold-dim);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.info-block h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.info-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 2;
}

/* CTA */
.cta {
    padding: 8rem 3rem;
    text-align: center;
    background: url('images/cta/cta_2.webp') center/cover fixed;
    border-top: none;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0.65);
    z-index: 1;
}

.cta > * {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

/* CONTACT BUTTONS */
.contact-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--gold);
    color: var(--dark);
    border: 1px solid var(--gold);
    transition: all 0.3s;
    border-radius: 2px;
}

.contact-btn:hover {
    background: var(--gold-light);
}

/* MOBILE */
@media (max-width: 900px) {
    .hero-content { padding: 8rem 2.5rem 4rem; }
    .menu-toggle { display: block; }
    nav { padding: 1.2rem 2rem; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgb(10, 14, 23);
        backdrop-filter: blur(20px);
        height: 60vh;
        height: 60dvh;
        bottom: auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 100;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    .services-grid { grid-template-columns: 1fr; }
    .image-row { grid-template-columns: 1fr; }
    .image-row.reverse { direction: ltr; }
    .text-panel { padding: 4rem 2.5rem; }
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 1.5rem;
        scrollbar-width: none;
    }
    .gallery-grid::-webkit-scrollbar { display: none; }
    .gallery-grid .g-item {
        scroll-snap-align: center;
        min-width: 80vw;
        aspect-ratio: 4/3;
        flex-shrink: 0;
        border-radius: 4px;
    }
    .gallery-grid .g-item:nth-child(1),
    .gallery-grid .g-item:nth-child(8) {
        grid-column: auto;
        grid-row: auto;
    }
    .feature-banner { grid-template-columns: 1fr; }
    .feature-card { border-right: none; border-bottom: 1px solid var(--gold-dim); }
    .info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-row { flex-direction: column; align-items: center; }
    .massage-grid { grid-template-columns: 1fr; }
    .hero-image {
        background-attachment: scroll;
        will-change: transform;
    }
    .cta {
        background-image: none;
        overflow: hidden;
    }
    .cta-parallax-bg {
        position: absolute;
        inset: -60% 0;
        background: url('images/cta/cta_2.webp') center/cover;
        will-change: transform;
        z-index: 0;
    }
}
