* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Language switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
    color: #fff;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.lang-switcher.scrolled .lang-btn {
    color: rgba(0, 0, 0, 0.35);
}

.lang-switcher.scrolled .lang-btn.active,
.lang-switcher.scrolled .lang-btn:hover {
    color: #2c2825;
}

.lang-switcher.scrolled .lang-divider {
    color: rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #2c2825;
    background: #f5f3ef;
}

/* Navigation */
nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-toggle {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    padding: 16px 18px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle-text {
    text-indent: 6px;
}

/* Mobile fullscreen menu (hidden on desktop) */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1500;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(20, 17, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    overflow: hidden;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.mobile-menu-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-list li {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-list li:first-child {
    border-top: none;
}

.mobile-menu-list a {
    display: block;
    padding: 22px 30px;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-indent: 6px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.nav-toggle-icon {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: translateY(2px) rotate(-45deg);
    transition: transform 0.3s ease;
}

.nav-toggle.open .nav-toggle-icon {
    transform: translateY(-2px) rotate(135deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu a {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #fff;
}

/* Main content */
main {
    padding-bottom: 0;
}

section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    scroll-margin-top: 0;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('photo/cover.JPG') center/cover no-repeat #1e1b18;
    color: #fff;
    max-width: 100%;
    position: relative;
}

.hero h1 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero p {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    text-decoration: none;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.btn-book {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 40px;
    background: #fff;
    color: #2c2825;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
}

.btn-book:hover {
    background: #2c2825;
    color: #fff;
}

/* Section headings */
h2 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e0d8;
}

h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 30px 0 15px;
    color: #3d3830;
}

p {
    margin-bottom: 15px;
}

ul {
    margin: 15px 0 15px 20px;
}

li {
    margin-bottom: 8px;
}

/* Services card */
.services-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #e5e0d8;
    color: #2c2825;
}

.services-card h2 {
    text-align: left;
    color: #2c2825;
}

.services-card .btn-cta {
    display: block;
    text-align: center;
}

.btn-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: #2c2825;
    color: #fff;
    text-decoration: none;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.btn-cta:hover {
    background: #4a443d;
}

/* Appointment policy notice */
.policy-notice {
    margin-top: 30px;
    padding: 28px 32px;
    background: #fff;
    border: 1px solid #e5e0d8;
    border-left: 3px solid #2c2825;
}

.policy-notice h3 {
    margin: 0 0 14px;
    color: #2c2825;
}

.policy-notice p {
    color: #5a5249;
    margin-bottom: 10px;
}

.policy-notice p:last-child {
    margin-bottom: 0;
}

/* Prices */
.price-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ece7df;
}

.price-list .service-name a {
    color: #2c2825;
    text-decoration: none;
}

.price-list .service-name a:hover {
    color: #000;
}

.price-list .service-price {
    color: #7a7268;
    white-space: nowrap;
    margin-left: 20px;
}

/* Massage list */
.massage-list {
    display: flex;
    flex-direction: column;
}

.massage-item {
    background: none;
    border: none;
    border-bottom: 1px solid #ece7df;
    text-align: left;
    padding: 20px 0;
    font-family: inherit;
    font-size: 1.1rem;
    color: #3d3830;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.massage-item-info {
    flex: 1;
    min-width: 0;
}

.massage-item-title {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.massage-item-desc {
    display: block;
    font-size: 0.85rem;
    color: #9a9088;
    margin-top: 4px;
    line-height: 1.4;
}

.massage-item::after {
    content: '\2192';
    font-size: 1.2rem;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.massage-item:hover {
    color: #000;
}

.massage-item:hover::after {
    transform: translateX(4px);
}

/* Modal overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    padding: 40px 20px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.open {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.modal-overlay.visible {
    opacity: 1;
}

.modal-card {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0;
    max-width: 700px;
    width: 100%;
    position: relative;
    margin: auto;
    transform: translateY(20px);
    transition: transform 0.3s;
    overflow: hidden;
}

.modal-overlay.visible .modal-card {
    transform: translateY(0);
}

.modal-card h2 {
    padding-right: 40px;
}

.modal-card > h2,
.modal-card > h3,
.modal-card > p,
.modal-card > ul {
    padding-left: 40px;
    padding-right: 40px;
}

.modal-card > ul {
    padding-left: 60px;
}

.modal-card > h2:first-of-type {
    padding-top: 5px;
}

.modal-card > *:last-child {
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.modal-cta {
    text-align: center;
    padding: 25px 40px 35px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Gallery */
.gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ede9e3;
}

.gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .gallery-prev,
    .gallery-next {
        transition: background 0.2s;
    }

    .gallery-prev:hover,
    .gallery-next:hover {
        background: rgba(0, 0, 0, 0.6);
    }
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

.gallery-prev::before,
.gallery-next::before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
}

.gallery-prev::before {
    transform: rotate(-135deg) translate(-2px, 2px);
}

.gallery-next::before {
    transform: rotate(45deg) translate(-2px, 2px);
}

.gallery-fullscreen {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    color: #fff;
    font-size: 1rem;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .gallery-fullscreen {
        transition: background 0.2s;
    }

    .gallery-fullscreen:hover {
        background: rgba(0, 0, 0, 0.6);
    }
}

.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.gallery-dot.active {
    background: #fff;
}

/* Fullscreen gallery */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-lightbox .gallery-prev,
.gallery-lightbox .gallery-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
}

.gallery-lightbox .gallery-prev:hover,
.gallery-lightbox .gallery-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-lightbox .gallery-prev {
    left: 20px;
}

.gallery-lightbox .gallery-next {
    right: 20px;
}

.gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Accordion (FAQ) */
.accordion-item {
    border-bottom: 1px solid #ece7df;
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #3d3830;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.accordion-trigger:hover {
    color: #000;
}

.accordion-trigger::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion-item.open .accordion-trigger::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p,
.accordion-content ul,
.accordion-content li {
    color: #9a9088;
}

.accordion-content p:last-child,
.accordion-content ul:last-child {
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #1e1b18;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    scroll-margin-top: 0;
}

footer h2 {
    color: #fff;
    border-bottom-color: #4a443d;
}

.contacts-list {
    display: inline-flex;
    flex-direction: column;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-label {
    display: flex;
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

.contact-address {
    align-items: flex-start;
}

.contact-address .contact-label {
    padding-top: 4px;
}

.contact-address-text {
    color: #fff;
    line-height: 1.4;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}

.contact-address-text:hover {
    text-decoration-color: #fff;
}

.hero-address {
    display: block;
    width: 100%;
    margin-top: 24px;
    background: none;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 4px;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.hero-address:hover {
    color: #fff;
    text-decoration-color: #fff;
}

.navigate-card {
    max-width: 420px;
    text-align: center;
    padding: 40px 30px 30px;
}

.navigate-card h2 {
    border-bottom: none;
    padding: 0;
    margin-bottom: 8px;
}

.navigate-card p {
    color: #7a7268;
    margin-bottom: 24px;
}

.navigate-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.navigate-option {
    display: block;
    padding: 14px 20px;
    background: #f5f3ef;
    color: #2c2825;
    text-decoration: none;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid #e5e0d8;
    transition: background 0.2s, color 0.2s;
}

.navigate-option:hover {
    background: #2c2825;
    color: #fff;
    border-color: #2c2825;
}

.navigate-card > h2,
.navigate-card > p,
.navigate-card > .navigate-options {
    padding-left: 0;
    padding-right: 0;
}

.navigate-card > *:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .lang-switcher {
        opacity: 0;
        pointer-events: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 40px 20px;
    }

    h2 {
        font-size: 1.4rem;
    }

    .services-card {
        padding: 25px 20px;
    }

    .policy-notice {
        padding: 20px;
    }

    .modal-overlay {
        padding: 20px 12px;
    }

    .modal-card > h2,
    .modal-card > h3,
    .modal-card > p,
    .modal-card > ul {
        padding-left: 20px;
        padding-right: 20px;
    }

    .modal-card > ul {
        padding-left: 40px;
    }

    .price-list li {
        flex-direction: column;
        gap: 5px;
    }

    .price-list .service-price {
        margin-left: 0;
        color: #9a9088;
    }
}
