:root {
    --primary-color: #2E233A;
    --secondary-color: #B8A7D3;
    --accent-color: #9B8BB4;
    --text-color: #333;
    --light-color: #fff;
    --gold-accent: #d4af37;
    --spacing: 2rem;
}

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

/* html {
    scroll-behavior: auto;
} */

body {
    font-family: 'Castoro Titling';
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f9f7f3, #ffffff);
    /* 부드러운 배경 그라데이션 */
}

main {
    flex: 1;
}

/* Hidden Sections for new design */
.policy-container,
#gallery,
#about {
    display: none;
}

/* Header & Navigation - Louis Vuitton Inspired */
/* Header & Navigation - Louis Vuitton Inspired */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled a,
.navbar.scrolled .logo-text,
.navbar.scrolled .instagram-link {
    color: #1a1a1a;
}

.navbar.scrolled .logo-text .logo-subtitle {
    color: #1a1a1a;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    font-family: 'Castoro Titling';
    background-color: transparent;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    padding: 0 5%;
    padding: 0 5%;
    height: 120px;
}

.navbar:hover {
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-list .list-item {
    display: inline-block;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    display: flex;
    align-items: center;
    z-index: 1001;
}

/* Text Logo Styles - Louis Vuitton Inspired */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar:hover .logo-text {
    color: #1a1a1a;
}

.logo-text span:first-child {
    font-family: 'Jost', sans-serif;
    /* Geometric Sans-serif like Futura */
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    /* Wide tracking */
    text-transform: uppercase;
}

.logo-text span:last-child {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.navbar:hover a {
    color: #1a1a1a;
}

.navbar a:hover {
    color: #fff;
}

.navbar:hover a:hover {
    color: #8b7ba8;
}

.navbar a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar:hover a:hover::after {
    background-color: #1a1a1a;
}

.navbar a.logo:hover {
    color: inherit;
    transform: none;
}

.navbar a.logo:hover::after {
    width: 0;
}

/* Instagram icon in navbar */
.navbar .instagram-link {
    font-size: 1.2rem;
    color: #fff;
}

.navbar:hover .instagram-link {
    color: #1a1a1a;
}

.navbar .instagram-link:hover {
    color: #8b7ba8;
}

.navbar .instagram-link:hover::after {
    display: none;
}

/* Hide booking link from main nav - moved to hero */
.navbar .booking-link {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Hide fallback image when video is playing */
.hero-video:not([src=""])~.hero-fallback {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        background-color: #fff;
        /* Always white on mobile */
        padding: 0 4%;
        padding: 0 4%;
        height: 80px;
    }

    .navbar a,
    .navbar .logo-text,
    .navbar .instagram-link {
        color: #1a1a1a !important;
        /* Always black text on mobile */
    }

    /* Mobile Logo Text Styles */
    .logo-text span:first-child {
        font-size: 1.5rem;
    }

    .logo-text span:last-child {
        font-size: 0.5rem;
        margin-top: 3px;
    }

    .mobile-menu-header .logo-text span:first-child {
        font-size: 1.5rem;
        /* Match navbar logo size */
    }

    .mobile-menu-header .logo-text span:last-child {
        font-size: 0.5rem;
        /* Match navbar logo size */
    }

    .mobile-nav-toggle {
        display: block;
        position: relative;
        z-index: 1001;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .mobile-nav-toggle span {
        background-color: #1a1a1a;
        height: 2px;
    }

    .navbar ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        /* Stretch to fill width */
        padding: 0;
        padding-top: 80px;
        transition: right 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        z-index: 2000;
        /* Higher than toggle */
        box-shadow: none;
    }

    /* Remove divider line */
    .navbar ul::before {
        display: none;
    }

    .navbar ul.active {
        right: 0;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        position: relative;
        height: 80px;
        /* Match standard header height (80px) */
        /* Match standard header height */
    }

    .mobile-menu-header .menu-logo {
        display: flex;
        align-items: center;
    }

    .menu-close-btn {
        position: absolute;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
        color: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-header .menu-close-btn:hover {
        transform: none;
        /* No rotation needed for X */
    }

    /* Navigation List Items */
    .navbar ul .list-item {
        width: 100%;
        text-align: left;
        padding: 0 40px;
        /* Increased left padding for balance */
        margin-bottom: 3px;
        /* Minimal vertical gap */
        border-bottom: none;
        /* Remove divider line */
        margin-top: 0;
        display: block;
    }

    /* Instagram item special case logic if needed, or keep same */

    .navbar ul .list-item a {
        font-family: 'Jost', sans-serif;
        font-size: 1.4rem;
        /* Increased font size */
        font-weight: 400;
        color: #1a1a1a;
        letter-spacing: 1px;
        text-transform: uppercase;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar ul .list-item a:hover {
        color: #1a1a1a;
        /* Keep black */
        background-color: #f9f9f9;
    }

    .mobile-only-icon {
        font-size: 0.8rem;
        color: #1a1a1a;
    }

    nav ul li {
        margin: 0;
    }

    /* Hide desktop-only elements in mobile menu if they exist */
    .mobile-menu-header {
        display: flex;
    }
}

/* Hide Mobile Menu Header on Desktop */
@media (min-width: 769px) {

    .mobile-menu-header,
    .mobile-only-icon {
        display: none !important;
    }
}

/* Mobile Service Menu (Drill-Down) */
.mobile-service-menu {
    position: fixed;
    top: 0;
    /* Full screen */
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 2100;
    /* Higher than main menu */
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-service-menu.active {
    transform: translateX(0);
}

.mobile-service-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    position: relative;
    height: 70px;
    background: #fff;
}

.back-btn {
    position: absolute;
    left: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-title {
    font-family: 'Jost', sans-serif;
    /* Consistent font */
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    color: #1a1a1a;
}

.mobile-service-list {
    padding: 20px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    /* Space between columns */
    row-gap: 30px;
    /* Space between rows */
}

.mobile-service-item {
    display: flex;
    flex-direction: column;
    /* Stack image and text vertically */
    align-items: center;
    /* Center align items */
    padding: 0;
    /* Remove internal padding */
    border-bottom: none;
    /* Remove separators */
    cursor: pointer;
    transition: transform 0.2s ease;
    text-align: center;
    /* Center text */
    text-decoration: none;
    color: inherit;
}

.mobile-service-item:active {
    transform: scale(0.98);
    /* Subtle tap effect */
    background-color: transparent;
    /* Remove background highlight */
}

.mobile-service-item img {
    width: 100%;
    /* Full width of the grid cell */
    aspect-ratio: 4/3;
    /* Consistent aspect ratio */
    object-fit: cover;
    margin-right: 0;
    /* Reset margin */
    margin-bottom: 12px;
    /* Space below image */
    display: block;
}

.mobile-service-item span {
    flex-grow: 1;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    /* Slightly larger for readability */
    color: #1a1a1a;
    font-weight: 400;
    text-transform: none;
    line-height: 1.3;
}

.mobile-service-item i {
    display: none;
    /* Hide chevron icon */
}

/* Desktop Submenu Styles (Hidden) */
@media (min-width: 769px) {

    .submenu-toggle,
    .nav-submenu,
    .mobile-service-menu {
        display: none !important;
    }

    /* Ensure clean layout */
    .link-wrapper {
        display: inline-block;
    }
}

.mobile-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    text-align: left;
}

.stylist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    transform: none !important;
    /* Prevent sliding transformation */
    transition: none !important;
    /* Disable transition */
    display: grid !important;
    /* Ensure grid display */
    width: 100% !important;
    /* Full width */
}

.slider-nav,
.slider-dots {
    display: none !important;
}

.stylist-slider-container {
    overflow: visible !important;
    padding: 0 !important;
}

.stylist-card {
    height: 300px;
    margin-bottom: 10px;
}

.stylist-image {
    height: 220px;
}

.stylist-info {
    /* padding: 8px 5px 6px; */
    padding: 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.stylist-info h3 {
    font-size: 0.9rem;
    margin-top: 3px;
    margin-bottom: 2px;
}

.stylist-info p {
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.stylist-info .specialty,
.stylist-info .languages {
    font-size: 0.7rem;
    line-height: 1.1;
    margin-bottom: 2px;
}

.stylist-info .languages {
    margin-bottom: 0;
}

.members-section {
    padding: 2rem 1rem;
}

/* Hero Section - Luxury Style */
/* Hero Section - Luxury Style */
.hero {
    position: relative;
    height: 75vh;
    /* Further reduced from 85vh */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    overflow: hidden;
    margin-top: 0;
    padding-bottom: 10vh;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    margin-top: 0;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-content p {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    line-height: 1.3;
}

/* Luxury CTA Button - Louis Vuitton Style */
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: transparent;
    color: var(--light-color);
    font-family: 'Castoro Titling';
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: var(--light-color);
    color: #1a1a1a;
    border-color: var(--light-color);
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        align-items: flex-end;
        padding-bottom: 12vh;
    }

    .hero-content h1 {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .hero-content p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 0.75rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 0.75rem;
    }
}

/* Service Category Grid - Louis Vuitton Style */
.service-categories {
    padding: 60px 5%;
    background-color: #fff;
}



.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    /* Remove underline */
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 15px;
}

.category-item span {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a1a1a;
    display: block;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-categories {
        padding: 40px 4%;
    }



    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-item img {
        margin-bottom: 10px;
    }

    .category-item span {
        font-size: 1.2rem;
    }
}

/* ======================================
   New Book By Category Design - Luxury
   ====================================== */

.selection-view {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.selection-view.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.selection-view.active {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Main Cards Container */
.main-card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.main-card {
    flex: 1;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 4/3;
    /* Landscape rectangular shape */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-card .card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.main-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.main-card .card-title {
    font-family: 'Castoro Titling', serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

/* Hover Effects */
.main-card:hover img {
    transform: scale(1.05);
}

.main-card:hover .overlay {
    background: rgba(0, 0, 0, 0.1);
}

.main-card:hover .card-title {
    transform: scale(1.05);
    letter-spacing: 6px;
}

/* Back Button */
.back-to-main-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    cursor: pointer;
    margin-bottom: 30px;
    padding: 10px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.back-to-main-btn:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

/* Responsive Adjustments for New Design */
@media (max-width: 768px) {
    .main-card-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-card {
        aspect-ratio: 16/9;
        /* More horizontal on mobile */
    }

    .main-card .card-title {
        font-size: 1.5rem;
    }
}

/* ======================================
   Service Category Modal - Luxury Style
   ====================================== */

/* Modal Overlay */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.service-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    max-width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2001;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.service-modal.active {
    right: 0;
}

/* Modal Header */
.modal-header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    z-index: 10;
}

.modal-header h2 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a1a;
    padding: 5px;
    transition: opacity 0.2s ease;
}

.modal-close:hover {
    opacity: 0.6;
}

/* Modal Content */
.modal-content {
    padding: 0;
}

/* Accordion Service Items */
.service-accordion {
    border-bottom: 1px solid #e8e8e8;
}

.service-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.service-accordion-header:hover {
    background-color: #f8f8f8;
}

.service-accordion-header h3 {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 0;
}

.service-accordion-header .accordion-icon {
    font-size: 1.2rem;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.service-accordion.active .accordion-icon {
    transform: rotate(45deg);
}

/* Accordion Content */
.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fafafa;
}

.service-accordion.active .service-accordion-content {
    max-height: 1000px;
}

/* Service Items List */
.service-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 16px 30px;
    border-top: 1px solid #efefef;
    gap: 15px;
}

.service-list-item span {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.5px;
    flex: 1;
    line-height: 1.4;
    word-break: keep-all;
}

/* Book Button */
.book-btn {
    background-color: #2E233A;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
}

.book-btn:hover {
    background-color: #1a1a1a;
}

/* Mobile Responsive Modal */
@media (max-width: 768px) {
    .service-modal {
        width: 100%;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 1rem;
    }

    .service-accordion-header {
        padding: 18px 20px;
    }

    .service-accordion-header h3 {
        font-size: 0.9rem;
    }

    .service-list-item {
        padding: 14px 20px 14px 35px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .service-list-item span {
        font-size: 0.8rem;
        flex: 1;
    }
}

/* Services Section */
.services-container {
    width: 70%;
    margin: auto;
}

.services-container h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-family: 'castoro Titling';
    color: var(--primary-color);
    font-style: italic;
}

.services-container a {
    text-decoration: none;
    color: inherit;
}

.service-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.service-header {
    cursor: pointer;
    font-size: 1.3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header {
    outline: none;
    /* 포커스 시 윤곽선 제거 */
}

/* .service-content {
      
} */
.service-content {
    display: none;
    overflow: hidden;
    padding: 10px 0;
    transition: all 0.3s ease-out;
}

.service-content.active {
    display: block;
    overflow: visible;
    margin-bottom: 20px;
}

/* Sub-category styles */
.sub-category {
    margin-bottom: 10px;
}

.sub-category-header {
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    background-color: #f8f9fa;
    padding-left: 15px;
    padding-right: 15px;
    margin: 5px 0;
    border-radius: 5px;
}

.sub-category-header:hover {
    background-color: #e9ecef;
}

.sub-category-content {
    display: none;
    overflow: hidden;
    padding-left: 20px;
    transition: all 0.3s ease-out;
}

.sub-category-content.active {
    display: block;
    overflow: visible;
}

.sub-toggle-icon {
    font-size: 1.2em;
    font-weight: bold;
    color: #52416e;
}

.service-row {
    display: flex;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.service-row p {
    flex: 1;
    margin: 0;
    line-height: 1.4;
    word-break: break-word;
}

@media (max-width: 768px) {
    .service-content.active {
        margin-bottom: 15px;
    }

    .service-row {
        word-break: break-word;
        gap: 10px;
        margin: 0px 7px 7px;
    }

    .book-button {
        padding: 5px 8px 4px;
        font-size: 0.75rem;
        border-radius: 14px;
        width: 50px;
    }

    .service-row p {
        flex: 1;
        word-break: break-word;
        /* Add word break for long text */
        hyphens: auto;
        /* Enable hyphenation */
        margin: 0;
        line-height: 1.4;
    }

    /* Mobile sub-category styles */
    .sub-category-header {
        font-size: 1em;
        padding: 8px 10px;
        margin: 3px 0;
    }

    .sub-category-content {
        padding-left: 10px;
    }

    .sub-toggle-icon {
        font-size: 1.1em;
    }
}

@media (max-width: 600px) {
    .service-row {
        /* gap: 20px;  */
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .service-row p {
        flex: 1;
        word-break: break-word;
        /* Add word break for long text */
        hyphens: auto;
        /* Enable hyphenation */
        margin: 0;
        line-height: 1.3;
    }

    .service-row .book-button {
        margin-left: auto;
        /* Push button to the right */
        padding: 6px 6px 4px;
        font-size: 0.65rem;
        border-radius: 13px;
        width: 45px;
    }
}

.book-button {
    /* margin-top: 10px; */
    padding: 4px 10px 3px;
    background-color: #52416e;
    border: none;
    color: white !important;
    border-radius: 16px;
    /* font-weight: bold; */
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60px;
    text-align: center;
    flex-shrink: 0;
    margin-left: auto;
}

.book-button:hover {
    /* background-color: #c19b2e; */
    /* transform: translateY(-2px); */
    color: #B8A7D3 !important;

    /* transform: scale(1.05); */
    border: 2px solid #B8A7D3;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-row1 {
    border-bottom: 1px solid #eee;
}

.service-row1>div {
    border-bottom: none;
}

.service-row1>p {
    margin-top: 10px !important;
    /* Adjust the value as needed */
}



/* Our Team */
.stylist-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 3rem auto;
    overflow: visible;
    padding: 0 40px;
}

.stylist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stylist-card {
    position: relative;
    /* overflow: hidden; Removed to prevent text cutoff */
    background-color: transparent;
    box-shadow: none;
    transition: transform 0.3s ease;
    width: 100%;
    height: auto !important;
    display: flex;
    flex-direction: column;
}

.stylist-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.slider-nav,
.slider-dots {
    display: none;
}

.stylist-image {
    width: 100%;
    aspect-ratio: 3/4;
    height: auto;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

.stylist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    transform: scale(1.01);
}

.stylist-card:hover .stylist-image img {
    transform: scale(1.03);
}

.stylist-info {
    text-align: center;
    background: transparent;
    color: #1a1a1a;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

.stylist-info h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 5px;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stylist-info p {
    color: #666;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.stylist-info .specialty {
    display: block;
    font-size: 0.8rem;
    color: #333;
    font-family: 'Jost', sans-serif;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.stylist-info .languages {
    display: block;
    font-size: 0.8rem;
    color: #555;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    margin-top: 5px;
}

@media (max-width: 1200px) {
    .stylist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .stylist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        transform: none !important;
        transition: none !important;
        display: grid !important;
        width: 100% !important;
        padding: 0 15px;
    }

    .slider-nav,
    .slider-dots {
        display: none !important;
    }

    .stylist-slider-container {
        overflow: visible !important;
        padding: 0 !important;
    }

    .stylist-card {
        height: auto !important;
        margin-bottom: 20px;
    }

    .stylist-image {
        height: auto;
        aspect-ratio: 3/4;
        margin-bottom: 15px;
    }

    .stylist-info {
        padding: 0;
        height: auto;
        display: block;
    }

    .stylist-info h3 {
        font-size: 0.9rem;
        margin-top: 3px;
        margin-bottom: 2px;
    }

    .stylist-info p {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .stylist-info .specialty,
    .stylist-info .languages {
        font-size: 0.7rem;
        line-height: 1.1;
        margin-bottom: 2px;
    }

    .stylist-info .languages {
        margin-bottom: 0;
    }

    .members-section {
        padding: 2rem 1rem;
    }
}

#our-services {
    display: none;
}

/* Members Section */
.members-section {
    padding: 4rem 2rem 1rem 2rem;
    background-color: rgba(184, 167, 211, 0.05);
    border-radius: 15px;
    margin: 0 auto 0 auto;
}

.members-header {
    text-align: center;
    margin-bottom: 3rem;
}

.members-header .subtitle {
    font-family: 'Castoro Titling', serif;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-top: 2rem;
}



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

/* Member Header */
.members-header,
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

/* Filter Chips Styling */
.team-filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px auto 40px;
    max-width: 900px;
    padding: 0 15px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 50px;
    /* Pill shape */
    padding: 10px 24px;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

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

.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 6px rgba(46, 35, 58, 0.2);
}

.members-content>p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Stylist Grid Animation */
.stylist-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.stylist-card.hidden {
    display: none;
    /* Hide filtered items */
}

.stylist-card.fade-in {
    animation: fadeIn 0.5s forwards;
}

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

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

@media (max-width: 768px) {
    .members-section {
        padding: 2rem 1rem;
    }

    .members-header h2 {
        font-size: 2rem;
    }

    .members-content>p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Gallery Section */

.gallery {
    padding: 40px 10px;
    background-color: #f0f0f5;
    margin-bottom: 50px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-header .subtitle {
    display: block;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-family: 'Castoro Titling';
    color: var(--secondary-color);
}

.gallery-header h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    font-style: italic;
}

.gallery-header .hashtag {
    display: block;
    font-size: 1.4em;
    color: #888;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2em;
}

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

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 15px;
    }

    .gallery-header h2 {
        font-size: 2em;
    }

    .gallery-header .hashtag {
        font-size: 1.2em;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    padding: 2rem;
}



.members-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow-x: auto;
}

.services-category {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    scroll-margin-top: 100px;
    /* Offset for fixed header */
}

/* Ensure the section acts as a scroll target correctly */
#service-categories {
    scroll-margin-top: 110px;
    /* Precise offset for "BOOK BY CATEGORY" header */
}

.service-column {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 15px;
    width: 400px;
    /* 일정한 크기 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

h2,
h3,
h4 {
    color: #333;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: 'Castoro Titling';
}

/* Unified Section Header Styles */
/* Unified Section Header Styles */
.members-header h2,
.section-header h2,
#team h2,
#service-categories h2,
#business-policies-content h2,
#business-info h2,
.about-header-minimal h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;

    text-transform: uppercase;
    /* Ensure all are uppercase like BOOK BY CATEGORY */
    font-family: 'Castoro Titling';
    font-weight: normal;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {

    .service-categories h2,
    .members-header h2,
    .section-header h2,
    #team h2 {
        font-size: 1.5rem !important;
        /* Unified Mobile Size */
        margin-bottom: 20px;
    }
}

ul {
    list-style: none;
    padding: 0;
    padding: 0;
}

li {
    margin: 8px 0;
    color: #666;
    font-size: 0.95rem;
}



/* Direction Section */
.direction-section {
    display: flex;
    flex-direction: row;
    /* Ensure row layout for content */
    justify-content: space-between;
    padding: 0;
    /* Remove padding as it's handled by children */
    background-color: var(--light-color);
    width: 100%;
    height: 600px;
    /* Set height here for map/info area */
}

.direction-section .book-visit,
.direction-section .map-container {
    flex: 1;
    /* Ensure both take equal space */
    margin: 0 1rem;
    /* Add equal margin on both sides */
}


.direction-section .map-container {
    width: 55%;
    /* Match new design width */
    height: 100%;
    margin: 0;
}

.book-visit {
    background-color: #ffffff;
    /* border-radius: 15px; Removed for new full-width design */
    box-shadow: none;
    /* Removed for cleaner look */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    padding: 40px;

    width: 45%;
    /* Match new design width */
    height: 100%;
    border: 0;
    object-fit: cover;
    overflow-y: auto;
}

.address-box,
.contact-box {
    margin-top: 15px;
    font-size: 1rem;
    color: #333;
}

.hours-list {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 1rem;
    gap: 10px;
    /* 간격을 늘리기 위해 추가 */
}

.direction-btn:hover {
    background-color: #B8A7D3;
}

@media (max-width: 768px) {
    .direction-section {
        flex-direction: column;
        /* Stack elements vertically */
        align-items: center;
        /* Center align items */
        height: auto !important;
        /* Allow height to adjust to content */
        padding-bottom: 0;
    }


    .direction-section .map-container,
    .direction-section .business-map,
    .direction-section #map {
        width: 100%;
        height: 400px !important;
        /* Force height on mobile */
        margin-bottom: 2rem;
        display: block;
        /* Ensure block display */
    }

    .direction-section .book-visit,
    .direction-section .map-container {
        width: 100%;
        /* Full width on mobile */
        margin-bottom: 2rem;
        /* Add space between elements */
    }

    .direction-section iframe {
        width: 100%;
        /* Full width for the map */
        height: 300px;
        /* Adjust height as needed */
    }

    .info-column {
        width: 100%;
        height: auto;
        padding: 2rem 5%;
        overflow-y: visible;
        /* Remove scroll on mobile */
    }
}

.policy-container {
    max-width: 750px;
    margin: 40px auto;
    padding: 30px 20px;
    background-color: transparent;
}

.policy-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.7rem;
    margin-bottom: 35px;
    font-family: 'Castoro Titling';
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: none;
    padding-bottom: 0;
}

.policy-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold-accent);
}

.policy-section {
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    box-shadow: none;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.policy-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0;
    text-align: left;
    font-weight: 500;
    font-family: 'Castoro Titling';
    background-color: var(--primary-color);
    padding: 12px 18px;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.policy-section h4::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gold-accent);
}

.policy-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    padding: 18px;
    background-color: white;
    border: 1px solid #eee;
    border-top: none;
    font-size: 0.95rem;
}

.policy-section p:last-of-type {
    border-radius: 0 0 8px 8px;
}

.policy-section p+p {
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .policy-container {
        width: 90%;
        margin: 25px auto;
        padding: 15px 10px;
    }

    .policy-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .policy-section {
        width: 95%;
    }

    .policy-section h4 {
        font-size: 1rem;
        padding: 10px 12px;
    }

    .policy-section p {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Business Info Section */
/* Business Info Section - Store Locator Redesign */
#business-info {
    background-color: #ffffff;
    padding: 0;
    width: 100%;
}

.business-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    max-width: none;
    height: auto;
    /* Fixed height for split view removed */
}

/* Map Column - Left (55%) */
.map-column {
    width: 55%;
    height: 100%;
}

.business-map {
    width: 100%;
    height: 100%;
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Ensure map is interactable */
}

/* Custom Marker Styling */
/* Custom Marker Styling */
.luxury-text-marker {
    background: transparent;
    border: none;
}

.marker-pin {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #d4af37;
    /* Gold border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
}

.marker-pin span {
    font-family: 'Jost', sans-serif;
    font-size: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.1;
    text-transform: uppercase;
}

/* Info Column - Right (45%) */
.info-column {
    width: 45%;
    height: 100%;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
}

.locator-header {
    margin-bottom: 3rem;
}

.locator-header h2 {
    font-family: 'Castoro Titling', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

/* Store List Styling */
.store-list {
    border-top: 1px solid #e0e0e0;
}

.store-item {
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.store-item h3 {
    font-family: 'Castoro Titling', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.store-address,
.store-phone {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.store-hours-list {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: #555;
    max-width: 300px;
}

.store-social {
    display: flex;
    gap: 20px;
    margin-top: 1rem;
}

.store-social a {
    color: #1a1a1a;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.store-social a:hover {
    color: #8b7ba8;
}


.instagram-icon,
.Facebook-icon,
.Youtube-icon,
.LinkedIn-icon {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.instagram-icon:hover,
.Facebook-icon:hover,
.Youtube-icon:hover,
.LinkedIn-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Set specific size for YouTube, LinkedIn, and Facebook icons */
.Youtube-icon,
.LinkedIn-icon,
.Facebook-icon {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .policy-container {
        width: 100%;
        max-width: none;
        margin: 30px 0;
        padding: 20px 0;
        border-radius: 0;
        box-shadow: none;
    }

    .policy-section {
        width: 100%;
        padding: 15px 10px;
        margin-bottom: 15px;
        border-radius: 0;
    }

    .business-content {
        flex-direction: column;
        height: auto;
    }

    .map-column {
        width: 100%;
        height: 300px;
        /* Fixed height for map on mobile */
    }

    .info-column {
        width: 100%;
        height: auto;
        padding: 2rem;
        overflow-y: visible;
    }

    .locator-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .store-item {
        padding: 1.5rem 0;
    }
}

/* ABOUT US Section */
.about {
    padding: 4rem 2rem;
    background-color: #fff;
    margin-top: -10px;
    margin-bottom: -10px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* 'Cormorant Garamond' */
.about-header h2 {
    font-family: 'Castoro Titling';
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-style: italic;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(184, 167, 211, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.about-text {
    text-align: left;
    padding: 1rem;
}

.about-text p,
.about-services p,
.about-booking p {
    margin-bottom: 1rem;
    font-family: 'Castoro Titling';
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-services {
    text-align: left;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-list {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
}

.services-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0;
    font-family: 'Castoro Titling';
}

.services-list li::before {
    content: none;
}

.about-booking {
    text-align: left;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.about-booking p {
    font-family: 'Castoro Titling';
    text-align: left;
}

.booking-cta {
    font-weight: bold;
    /* margin: 1.5rem 0; */
    font-size: 1.0rem;
}

.about-footer {
    margin-top: 3rem;
    padding: 2rem 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-footer h3 {
    font-family: 'Castoro Titling';
    font-style: italic;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.vertical-line {
    width: 1px;
    height: 100px;
    background-color: var(--primary-color);
    margin: 1.5rem auto;
    opacity: 0.6;
}

.vision-mission {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Castoro Titling';
    line-height: 1.8;
    color: #4a4a4a;
}

.vision-mission p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: left;
}

.vision-mission .vision {
    margin-bottom: 1.5rem;
    text-align: left;
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1rem;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    /* Adjusting all about grid sections for mobile view */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        margin-bottom: 4rem;
        /* Add space between grid sections */
    }

    .about-image {
        position: relative;
        z-index: 1;
        margin: 0 auto;
        max-width: 100%;
        /* 이미지 최대 너비 100%로 확장 */
        width: 100%;
    }

    .about-image img {
        width: 110%;
        /* 이미지 너비 110%로 확장 */
        height: auto;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-width: none;
        /* max-width 제한 해제 */
        margin-left: -5%;
        /* 좌우 중앙 정렬을 위한 마진 조정 */
    }

    .about-grid:nth-child(1) .about-text {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        padding: 1.5rem;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    .about-grid:nth-child(2) .about-services {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        padding: 1rem;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    .about-grid:nth-child(2) .services-list {
        text-align: left;
        padding-left: 0;
        margin-bottom: 0;
    }

    .about-grid:nth-child(2) .services-list li {
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
    }

    .about-grid:nth-child(3) .about-booking {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        padding: 0.75rem;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    .about-grid:nth-child(3) .about-booking p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    /* General styling for paragraphs */
    .about-text p,
    .about-services p {
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    /* Add specific margin for about-booking paragraphs */
    .about-booking p {
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
        text-align: left;
    }
}

@media (max-width: 480px) {

    .about-grid:nth-child(1) .about-text,
    .about-grid:nth-child(2) .about-services {
        padding: 1.2rem;
        width: 85%;
    }

    .about-grid:nth-child(3) .about-booking {
        padding: 0.8rem 1.2rem;
        /* Further reduced for mobile */
        width: 85%;
        text-align: left;
    }

    .about-text p,
    .about-services p,
    .about-booking p {
        font-size: 0.9rem;
    }

    .services-list li {
        font-size: 0.9rem;
    }
}

/* Stylist grid and members section styles */
@media (max-width: 600px) {
    .stylist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .members-section {
        padding: 2rem 1rem;
    }
}

/* Hidden Sections as per user request */
#our-services {
    display: none !important;
}

/* Footer Redesign */
footer {
    background-color: #fff;
    color: #000;
    padding: 60px 20px 40px;
    border-top: 1px solid #eee;
    font-family: 'Jost', sans-serif;
    clear: both;
    /* Ensure it clears any floats */
    position: relative;
    /* Establish stacking context */
    z-index: 10;
    /* Ensure it sits above if needed, or at least correctly stacked */
    margin-top: 50px;
    /* Add spacing from previous section */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Footer Top: Country Selector */
.footer-left {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.country-selector {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #000;
    /* Underline style like reference */
    padding-bottom: 2px;
}

.flag-icon {
    width: 16px;
    height: auto;
}

/* Footer Center: Logo */
.footer-center {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.footer-logo-text {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    color: #000;
}

/* Footer Right: Links */
.footer-right {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center links on mobile/small screens by default */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li a {
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    text-transform: capitalize;
    /* Reference image has Mixed Case or capitalize */
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #000;
    text-decoration: underline;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .footer-left {
        width: 25%;
        justify-content: flex-start;
    }

    .footer-center {
        width: 50%;
        margin: 0;
    }

    .footer-logo-text {
        font-size: 1.8rem;
        /* Larger on desktop */
    }

    .footer-right {
        width: 25%;
        justify-content: flex-end;
    }
}

/* Business Policies Links - New Additions */
.mobile-policy-item {
    margin-top: 10px !important;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px !important;
}

@media (min-width: 769px) {
    .mobile-policy-item {
        display: none !important;
    }
}

.mobile-about-item {
    margin-top: 0 !important;
    border-top: none !important;
    padding-top: 5px !important;
}

@media (min-width: 769px) {
    .mobile-about-item {
        display: none !important;
    }
}

.policy-mobile-link {
    font-size: 0.9rem !important;
    text-transform: capitalize !important;
    color: #666 !important;
    letter-spacing: 0.5px !important;
}

.team-policy-wrapper {
    text-align: center;
    padding: 20px 0 40px;
    background-color: transparent;
}

.team-policy-wrapper a {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    /* Darker color for visibility */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid transparent;
    /* Hidden by default */
    padding-bottom: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.team-policy-wrapper a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Minimal Luxury About Section */
.about-minimal {
    display: block !important;
    /* Force visibility - always show */
    padding: 100px 20px;
    background-color: #fff;
    text-align: center;
}

.about-minimal-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-header-minimal h2 {
    font-family: 'Castoro Titling', serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.separator-line {
    width: 60px;
    height: 1px;
    background-color: #1a1a1a;
    margin: 0 auto 40px;
}

.about-intro-text {
    margin-bottom: 60px;
}

.location-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 15px;
}

.main-desc {
    font-family: 'Castoro Titling', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
    max-width: 90%;
    margin: 0 auto;
}

.about-image-minimal {
    margin-bottom: 60px;
}

.about-image-minimal img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    /* Clean image without shadow for modern look */
}

.about-philosophy {
    margin-bottom: 60px;
    padding: 0 10px;
}

.about-philosophy h3 {
    font-family: 'Castoro Titling', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.philosophy-text {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-services-minimal h4 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 500;
}

.minimal-service-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.minimal-service-list li {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: #555;
    position: relative;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-minimal {
        padding: 60px 20px;
    }

    .about-header-minimal h2 {
        font-size: 2rem;
    }

    .main-desc {
        font-size: 1.2rem;
    }

    .about-philosophy h3 {
        font-size: 1.5rem;
    }
}

/* Styled Business Policies Section - Minimal Design */
#business-policies-content {
    display: block;
    /* Always visible */
    padding: 10px 5% 80px 5%;
    /* Increased padding for elegance */
    background-color: #fff;
    /* White background */
}

.policy-minimal-container {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #eee;
    /* Subtle border around entire section like a document */
    padding: 40px;
}

.policy-minimal-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #000;
    /* Thick black line like image */
    padding-bottom: 20px;
}

.policy-minimal-header h3 {
    font-family: 'Jost', sans-serif;
    /* Clean sans-serif */
    font-size: 1rem;
    color: #000;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.header-line-minimal {
    display: none;
    /* Removed internal line */
}

.policy-minimal-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}



.policy-item-minimal h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: #000;
    font-weight: 700;
    /* Bold */
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.policy-item-minimal p {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    color: #333;
    /* Dark grey for readability */
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .policy-minimal-container {
        padding: 20px;
        border: none;
        /* Remove border on mobile for full width feel */
    }

    #business-policies-content {
        padding: 40px 5%;
    }
}

/* Mobile Nested Navigation Styles */
.mobile-view {
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.mobile-view.hidden {
    display: none;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-view.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Main Cards (Hair/Beauty) */
.mobile-main-card {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    /* Landscape for main cards */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.mobile-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-card-overlay span {
    font-family: 'Castoro Titling', serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile Grid for Sub-categories */
.mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 25px;
    padding: 10px 0;
}

.mobile-back-btn {
    background: none;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Adjust .mobile-service-list to accommodate full width views */
.mobile-service-list {
    display: block;
    /* Override grid */
    padding: 20px 25px;
}