:root {
    --font-serif: 'Zen Old Mincho', serif;
    --font-en: 'Cormorant Garamond', serif;
    --color-bg: #F4F2EE;
    /* Warm off-white, paper-like */
    --color-text: #2C2C2C;
    /* Soft sumi ink black */
    --color-accent: #8E8070;
    /* Muted earth tone */
    --easing: cubic-bezier(0.2, 0.0, 0.2, 1);
}

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

html.lenis {
    height: auto;
}

body {
    font-family: var(--font-serif);
    background-color: var(--color-bg);
    color: var(--color-text);
    /* For smooth scroll placeholder */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Removed opacity: 0 to prevent white screen if JS fails */

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.6;
}

/* Typography Utility */
.vert-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.2em;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    max-width: 200px;
    height: auto;
    opacity: 0;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s var(--easing);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 3rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: opacity 0.4s var(--easing);
}

.nav-links a {
    color: #fff;
    transition: color 0.4s var(--easing);
}

.nav.scrolled .nav-links a {
    color: var(--color-text);
}

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

.nav-links a {
    font-family: var(--font-en);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.reserve-btn {
    border: 1px solid currentColor;
    padding: 0.8rem 2.5rem !important;
    border-radius: 50px;
    transition: background 0.4s, color 0.4s !important;
}

.reserve-btn:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

.menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    mix-blend-mode: difference;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    transition: transform 0.4s, top 0.4s;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    animation: zoomSlide 15s ease-in-out infinite;
}

@keyframes zoomSlide {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

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

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
}

.hero-subtitle {
    font-family: var(--font-en);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    opacity: 0;
    /* Animate in */
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-en);
    font-size: 0.9rem;
}

.scroll-indicator .line {
    width: 1px;
    height: 80px;
    background: #fff;
    animation: scrollLine 2s infinite;
    transform-origin: top;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}


/* Concept Section */
.concept {
    padding: 10rem 0;
    background: #fff;
}

.concept-subtitle {
    text-align: center;
    font-size: 1rem;
    opacity: 0.5;
    margin-top: -3rem;
    margin-bottom: 5rem;
    letter-spacing: 0.3em;
}

.concept-lead {
    max-width: 800px;
    margin: 0 auto 8rem;
    text-align: center;
}

.concept-lead p {
    font-size: 1.1rem;
    line-height: 2.2;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.concept-lead p:first-child {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.strength-card {
    background: var(--color-bg);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    position: relative;
    transition: transform 0.4s var(--easing), box-shadow 0.4s;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.strength-number {
    font-family: var(--font-en);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-accent);
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    line-height: 1;
}

.strength-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.strength-subtitle {
    font-family: var(--font-en);
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.strength-list {
    list-style: none;
    padding: 0;
}

.strength-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    position: relative;
    opacity: 0.85;
}

.strength-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

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

.section-title-center {
    font-family: var(--font-en);
    font-size: 4rem;
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 300;
}

/* Menu Section */
.menu {
    padding: 8rem 0;
    background: var(--color-bg);
}

.menu-subtitle {
    text-align: center;
    font-size: 1rem;
    opacity: 0.5;
    margin-top: -3rem;
    margin-bottom: 3rem;
    letter-spacing: 0.3em;
}

.menu-notice {
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.6;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.tab-btn {
    font-family: var(--font-en);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.4s var(--easing);
    white-space: nowrap;
}

.tab-btn:hover {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

.tab-btn.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.menu-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.menu-item-full {
    background: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.menu-item-full.highlight {
    border: 2px solid var(--color-accent);
    background: linear-gradient(135deg, #fff 0%, rgba(142, 128, 112, 0.05) 100%);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-size: 1.3rem;
    font-weight: 500;
    flex: 1;
}

.menu-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.menu-time {
    font-family: var(--font-en);
    font-size: 0.8rem;
    opacity: 0.5;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.menu-price-full {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-accent);
}

.menu-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.sets-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 10rem 0;
    background: #fff;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1rem;
    opacity: 0.5;
    margin-top: -3rem;
    margin-bottom: 5rem;
    letter-spacing: 0.3em;
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0 1rem;
}

.gallery-item {
    aspect-ratio: 4/5;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--easing);
}

/* Hover overlay for desktop */
.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

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

.gallery-item-overlay .gallery-stylist {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.gallery-item-overlay .gallery-model {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

/* Mobile info (hidden on desktop) */
.gallery-item-mobile-info {
    display: none;
    text-align: center;
    padding: 0.8rem 0.5rem;
    background: rgba(255, 255, 255, 0.9);
}

.gallery-item-mobile-info .gallery-stylist {
    font-size: 0.85rem;
    color: var(--color-text);
}

.gallery-item-mobile-info .gallery-model {
    font-size: 0.75rem;
    color: var(--color-accent);
    margin-top: 0.2rem;
}

/* Hide View Details text */
.gallery-item::after {
    display: none;
}

/* Stylists Section */
.stylists {
    padding: 10rem 0;
    background: var(--color-bg);
}

.stylists-subtitle {
    text-align: center;
    font-size: 1rem;
    opacity: 0.5;
    margin-top: -3rem;
    margin-bottom: 5rem;
    letter-spacing: 0.3em;
}

.stylists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stylist-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s var(--easing), box-shadow 0.4s;
    position: relative;
}

.stylist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--color-accent);
    transition: height 0.6s var(--easing);
}

.stylist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stylist-card:hover::before {
    height: 100%;
}

.stylist-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s var(--easing), box-shadow 0.4s;
}

.stylist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s, transform 0.4s;
}

.stylist-card:hover .stylist-photo {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stylist-card:hover .stylist-photo img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.stylist-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stylist-name {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.stylist-role {
    font-family: var(--font-en);
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
}

.stylist-career {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.stylist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--color-bg);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.stylist-card:hover .tag {
    background: #fff;
    border-color: var(--color-accent);
}

.stylist-meta {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.meta-item:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.meta-label {
    font-weight: 500;
    opacity: 0.6;
    min-width: 80px;
}

.meta-value {
    text-align: right;
    flex: 1;
    line-height: 1.6;
}

.stylist-message {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.8;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid var(--color-accent);
}

/* Space Section */
.space {
    padding: 10rem 0;
    background: #fff;
}

.space-subtitle {
    text-align: center;
    font-size: 1rem;
    opacity: 0.5;
    margin-top: -3rem;
    margin-bottom: 5rem;
    letter-spacing: 0.3em;
}

.space-lead {
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: center;
}

.space-lead p {
    font-size: 1.1rem;
    line-height: 2.2;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.space-lead p:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.space-gallery {
    column-count: 3;
    column-gap: 1.5rem;
    margin-bottom: 6rem;
}

.gallery-photo {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-bg);
    cursor: pointer;
    margin-bottom: 1.5rem;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.gallery-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--easing), filter 0.6s;
    filter: brightness(0.95);
}

.gallery-photo:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s var(--easing);
}

.gallery-photo:hover .photo-caption {
    transform: translateY(0);
}

.photo-caption h4 {
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
}

.photo-caption p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.6;
}

.facilities {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--color-bg);
    border-radius: 8px;
    text-align: center;
}

.facilities h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.facilities-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.facilities-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    padding-left: 1.2rem;
}

.facilities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* Visiting Beauty Section */
.visiting {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.visiting-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.visiting-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.visiting-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.95) 0%, rgba(142, 128, 112, 0.9) 100%);
    z-index: 1;
}

.visiting .container {
    position: relative;
    z-index: 2;
}

.visiting-title {
    color: #fff;
}

.visiting-subtitle {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -3rem;
    margin-bottom: 5rem;
    letter-spacing: 0.3em;
}

.visiting-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem;
}

.visiting-intro p {
    font-size: 1.3rem;
    line-height: 2;
    color: #fff;
}

.visiting-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.visiting-tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-serif);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s var(--easing);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visiting-tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.visiting-tab-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.visiting-tab-btn i {
    font-size: 1.1rem;
}

.visiting-tab-content {
    position: relative;
}

.visiting-tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.visiting-tab-panel.active {
    display: block;
}

.visiting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.visiting-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s, box-shadow 0.4s;
}

.visiting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.card-icon i {
    font-size: 3rem;
}

.visiting-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--color-text);
}

.visiting-card ul {
    list-style: none;
    padding: 0;
}

.visiting-card li {
    padding: 1rem 0;
    line-height: 1.8;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.visiting-card li i {
    color: var(--color-accent);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.area-main {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--color-accent);
}

.area-detail {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.area-note {
    font-size: 0.9rem;
    opacity: 0.6;
    text-align: center;
}

.visiting-menu {
    margin-bottom: 6rem;
}

.visiting-menu h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.menu-icon {
    font-size: 2.5rem;
}

.visiting-menu-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.visiting-menu-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.visiting-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.visiting-menu-item.highlight {
    border: 3px solid var(--color-accent);
    background: rgba(142, 128, 112, 0.1);
}

.vm-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: var(--color-accent);
}

.vm-icon i {
    font-size: 2.5rem;
}

.vm-content {
    flex: 1;
}

.vm-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--color-text);
}

.vm-time {
    font-family: var(--font-en);
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.vm-price {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-accent);
}

.visiting-flow h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.flow-icon {
    font-size: 2.5rem;
}

.flow-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.step-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    flex: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-content h4 i {
    color: var(--color-accent);
}

.step-content p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.8;
}

.flow-connector {
    width: 3px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    margin-left: 28px;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 10rem 0;
    background: var(--color-bg);
}

.faq-subtitle {
    text-align: center;
    font-size: 1rem;
    opacity: 0.5;
    margin-top: -3rem;
    margin-bottom: 5rem;
    letter-spacing: 0.3em;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question span:first-child {
    flex: 1;
    line-height: 1.6;
}

.faq-icon {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--easing), padding 0.4s;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    line-height: 1.9;
    opacity: 0.85;
    font-size: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Access & Footer */
.access {
    padding: 10rem 0;
    background: var(--color-bg);
}

.access-subtitle {
    text-align: center;
    font-size: 1rem;
    opacity: 0.5;
    margin-top: -3rem;
    margin-bottom: 5rem;
    letter-spacing: 0.3em;
}

.access-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: start;
}

.access-images {
    position: sticky;
    top: 100px;
}

.access-img-main {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.access-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--easing);
}

.access-img-main:hover img {
    transform: scale(1.05);
}

.access-img-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.access-img-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s var(--easing);
}

.access-img-secondary img:hover {
    transform: translateY(-5px);
}

.access-info-section {
    width: 100%;
}

.access-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.access-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.access-card.full-width {
    grid-column: span 2;
}

.access-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.3rem;
}

.access-content {
    flex: 1;
}

.access-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

.access-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

.access-content a {
    color: var(--color-accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.access-content a:hover {
    opacity: 0.7;
}

.access-map-container {
    margin-top: 6rem;
}

.access-map-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.access-map-container h3 i {
    color: var(--color-accent);
}

.access-map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.access-map iframe {
    display: block;
    width: 100%;
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    font-family: var(--font-en);
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .space-gallery {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1.5rem;
    }

    .nav-links {
        display: none;
        /* Hide desktop nav */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
        padding: 2rem;
    }

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

    .nav-links a {
        color: var(--color-text);
        font-size: 2rem;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .concept-lead {
        margin-bottom: 5rem;
        padding: 0 1rem;
    }

    .concept-lead p {
        font-size: 1rem;
    }

    .concept-lead p:first-child {
        font-size: 1.3rem;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .strength-card {
        padding: 2.5rem 2rem;
    }

    .strength-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1.5rem;
    }

    .menu-tabs {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .menu-content {
        padding: 0 1rem;
    }

    .menu-item-full {
        padding: 1.5rem;
    }

    .menu-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-meta {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.5rem;
    }

    .menu-item-name {
        font-size: 1.1rem;
    }

    .menu-price-full {
        font-size: 1.3rem;
    }

    .space-lead {
        padding: 0 1rem;
        margin-bottom: 4rem;
    }

    .space-lead p {
        font-size: 1rem;
    }

    .space-lead p:first-child {
        font-size: 1.2rem;
    }

    .space-gallery {
        column-count: 2;
        column-gap: 1rem;
    }

    .photo-caption {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    }

    .facilities {
        padding: 2rem 1.5rem;
    }

    .facilities-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }

    .visiting-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visiting-card {
        padding: 2rem 1.5rem;
    }

    .visiting-menu-grid {
        grid-template-columns: 1fr;
    }

    .visiting-menu-item {
        flex-direction: row;
        align-items: center;
    }

    .vm-icon {
        font-size: 2rem;
    }

    .flow-step {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .step-marker {
        align-self: center;
    }

    .step-content {
        text-align: center;
    }

    .step-content h4 {
        justify-content: center;
    }

    .flow-connector {
        margin-left: 0;
        width: 2px;
        height: 30px;
        align-self: center;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
        gap: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .access-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .access-images {
        position: static;
    }

    .access-img-main {
        height: 300px;
    }

    .access-img-secondary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .access-img-secondary img {
        height: 200px;
    }

    .access-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .access-card {
        padding: 1.5rem;
    }

    .access-card.full-width {
        grid-column: span 1;
    }

    .access-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .access-map iframe {
        height: 300px;
    }

    .gallery-track {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 4/5;
    }

    .gallery-item-overlay {
        display: none;
    }

    .gallery-item-mobile-info {
        display: block;
    }

    .stylists-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .stylist-card {
        padding: 2rem 1.5rem;
    }

    .meta-item {
        flex-direction: column;
        gap: 0.3rem;
    }

    .meta-value {
        text-align: left;
    }
}