/* ========================================
   SUKOON SPA — STYLESHEET
   Fonts: Cormorant Garamond, DM Sans, Playfair Display
   Palette: Ivory, Muted Gold, Charcoal, Taupe
======================================== */

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

:root {
    --ivory: #FAF7F2;
    --ivory-alt: #F0EDE8;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --charcoal: #2C2C2C;
    --taupe: #8C7B6B;
    --white: #FFFFFF;

    --font-display: 'Cormorant Garamond', serif;
    --font-accent: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;

    --transition: 0.4s ease;
    --radius: 4px;
}

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

body {
    background-color: var(--ivory);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    border-bottom: 1px solid var(--gold);
    color: var(--taupe);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color var(--transition);
}

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

/* ── TYPOGRAPHY ── */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 32px;
}

.center {
    text-align: center;
}

/* ========================================
   NAVBAR
======================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 5%;
    transition: background var(--transition), padding var(--transition);
}

#navbar.scrolled {
    background: rgba(250, 247, 242, 0.96);
    backdrop-filter: blur(10px);
    padding: 14px 5%;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-logo {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.08em;
    transition: color var(--transition);
}

#navbar.scrolled .nav-logo {
    color: var(--charcoal);
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    transition: color var(--transition);
}

#navbar.scrolled .nav-links a {
    color: var(--charcoal);
}

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

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: background var(--transition);
}

#navbar.scrolled .nav-toggle span {
    background: var(--charcoal);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(250, 247, 242, 0.98);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 14px 0;
        border-bottom: 1px solid var(--ivory-alt);
    }

    .nav-links a {
        color: var(--charcoal) !important;
    }

    .nav-toggle {
        display: flex;
    }
}

/* ========================================
   HERO
======================================== */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #1a1410;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    z-index: 0;
}

.hero-video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 15, 10, 0.38);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    animation: fadeUp 1.6s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.12em;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    letter-spacing: 0.2em;
    color: var(--gold-light);
    margin-bottom: 44px;
    font-weight: 300;
}

/* ========================================
   TRUST STRIP
======================================== */
.trust-strip {
    background: var(--charcoal);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 20px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.trust-divider {
    color: var(--taupe);
    opacity: 0.4;
}

@media (max-width: 768px) {
    .trust-strip-inner {
        gap: 10px;
        font-size: 0.65rem;
    }

    .trust-divider {
        display: none;
    }
}

/* ========================================
   ABOUT
======================================== */
#about {
    padding: 110px 0;
    background: var(--ivory);
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-body {
    font-size: 0.95rem;
    color: var(--taupe);
    line-height: 1.85;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--ivory-alt);
    border: 1px solid var(--gold-light);
}

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

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

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

    .about-image {
        aspect-ratio: 16/9;
    }
}

/* ========================================
   SERVICES
======================================== */
#services {
    padding: 110px 0;
    background: var(--ivory-alt);
}

.services-intro {
    font-size: 0.9rem;
    color: var(--taupe);
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

/* Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--gold-light);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.tab-btn.active {
    color: var(--gold);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

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

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Service Menu Rows */
.service-menu {
    max-width: 860px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 0;
    gap: 40px;
    transition: background var(--transition);
}

.service-row:hover .service-name {
    color: var(--gold);
}

.service-row-left {
    flex: 1;
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
    transition: color var(--transition);
}

.service-desc {
    font-size: 0.87rem;
    color: var(--taupe);
    line-height: 1.8;
    max-width: 520px;
}

.service-row-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 120px;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    white-space: nowrap;
}

.service-duration {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
}

.service-divider {
    width: 100%;
    height: 1px;
    background: var(--gold-light);
    opacity: 0.5;
}

/* Service Note */
.service-note {
    margin-top: 48px;
    padding: 20px 32px;
    border: 1px solid var(--gold-light);
    text-align: center;
    background: var(--ivory);
}

.service-note p {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--taupe);
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .service-row {
        flex-direction: column;
        gap: 16px;
    }

    .service-row-right {
        align-items: flex-start;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 0.72rem;
    }
}

/* ========================================
   WOMEN ONLY BANNER
======================================== */
.women-only-banner {
    background: var(--charcoal);
    padding: 80px 0;
    text-align: center;
}

.banner-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.banner-text {
    font-size: 0.92rem;
    color: var(--taupe);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ========================================
   GALLERY
======================================== */
#gallery {
    padding: 110px 0;
    background: var(--ivory);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: var(--ivory-alt);
    cursor: pointer;
}

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

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

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

.gallery-item.video-item:hover video {
    transform: scale(1.06);
}

.gallery-item.video-item::after {
    display: none;
}

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

/* ========================================
   CONTACT
======================================== */
#contact {
    padding: 110px 0;
    background: var(--ivory-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    margin-top: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    font-size: 0.9rem;
    color: var(--taupe);
}

.contact-detail a {
    color: var(--taupe);
    transition: color var(--transition);
}

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

.map-embed {
    margin-top: 24px;
    border: 1px solid var(--gold-light);
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    background: var(--ivory);
    border: 1px solid var(--gold-light);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color var(--transition);
    appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--taupe);
    opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
}

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

.contact-form .btn-primary {
    align-self: flex-start;
    border: 1px solid var(--gold);
}

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

/* ========================================
   FOOTER
======================================== */
footer {
    background: var(--charcoal);
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--taupe);
}

.footer-seo {
    font-size: 0.78rem;
    color: var(--taupe);
    opacity: 0.6;
    max-width: 600px;
    line-height: 1.8;
    margin: 8px 0;
}

.footer-links {
    display: flex;
    gap: 32px;
    margin: 12px 0;
}

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    transition: color var(--transition);
}

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

.footer-copy {
    font-size: 0.72rem;
    color: var(--taupe);
    opacity: 0.4;
}

/* ========================================
   SCROLL REVEAL
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   REDUCED MOTION
======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}