@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600&display=swap');

:root {
    --color-black: #080808;
    --color-white: #ffffff;
    --color-beige: #f1ede8;
    --color-dark-gray: #1a1a1a;
    --color-light-gray: #e0e0e0;

    --text-main: var(--color-black);
    --text-muted: #555;
    --text-muted-light: #ffffff;

    --bg-main: var(--color-white);
    --bg-alt: var(--color-beige);
    --bg-dark: var(--color-black);

    --font-main: 'Lexend', sans-serif;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Layout */
    --container-max: 1350px;
    --padding-mobile-x: 20px;
    --padding-global-x: max(var(--padding-mobile-x), calc((100vw - var(--container-max)) / 2));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.8;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white p {
    color: var(--color-white);
}

p {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base Classes */
.bg-beige {
    background-color: var(--bg-alt);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--color-white);
}

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

.container {
    width: 100%;
    padding-left: var(--padding-global-x);
    padding-right: var(--padding-global-x);
}

.content-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.label-mini {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.text-white .label-mini {
    color: rgba(255, 255, 255, 0.6);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem var(--padding-global-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: var(--color-black);
    color: var(--color-white);
    transition: padding 0.5s ease, background 0.5s ease;
}

.header.transparent {
    background: transparent;
}

.header.scrolled {
    background: var(--color-white);
    color: var(--color-black);
    padding: 1.25rem var(--padding-global-x);
    border-bottom: 1px solid var(--color-light-gray);
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 26px;
    width: auto;
    display: block;
    transition: filter var(--transition), height var(--transition);
}

.header.transparent:not(.scrolled) .logo img {
    filter: invert(1) brightness(100);
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

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

.lang-switcher {
    display: flex;
    gap: 0.65rem;
    margin-left: 1.5rem;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.45;
    transition: opacity 0.22s ease;
    /* invisible tap area — no visual padding box */
    min-width: 36px;
    min-height: 36px;
    position: relative;
}

.lang-flag {
    height: 18px;
    width: auto;
    display: block;
    border-radius: 2px;
    pointer-events: none;
}

/* Active: full opacity only — no underline, no decoration */
.lang-btn.active {
    opacity: 1;
}

/* Hover: lift to near-full opacity */
.lang-btn:hover:not(.active) {
    opacity: 0.8;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    font-family: var(--font-main);
}

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

.btn-primary:hover {
    background-color: var(--color-beige);
    color: var(--color-black);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-black {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-black:hover {
    background-color: var(--color-dark-gray);
    color: var(--color-beige);
}

.btn-outline-dark {
    border-color: var(--color-black);
    color: var(--color-black);
}

.btn-outline-dark:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Inner Page Hero (Mini-Hero) */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--color-black);
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 8rem var(--padding-global-x) 0;
    text-align: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero .label-mini,
.hero .label-mini {
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 4px;
}

.page-hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: -2px;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Sections */
section {
    padding: 10rem 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-black);
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 0 var(--padding-global-x);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 5rem;
    /* Offsetting to center optically */
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #cccccc;
    max-width: 700px;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-socials {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

.hero-socials a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
    display: flex;
}

.hero-socials a:hover {
    color: var(--color-white);
}

/* Editorial Split (Intro) */
.editorial-split {
    display: flex;
    gap: 6rem;
    align-items: center;
}

/* Owner-specific layout flip */
.owner-split {
    flex-direction: row-reverse;
}

.owner-split .text-side {
    padding-left: 4rem;
    padding-right: 0;
}

.editorial-split .text-side {
    flex: 1;
}

.editorial-split .img-side {
    flex: 1;
    position: relative;
}

.editorial-split .img-side::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background-color: var(--bg-alt);
    z-index: -1;
}

.editorial-split .img-side img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.brands {
    margin-top: 3rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.brands-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

/* ─── Brand Logo Row ─────────────────────────── */
.brand-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 0.5rem;
}

.brand-logos--centered {
    justify-content: center;
    margin-top: 3.5rem;
}

.brand-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(100%) brightness(0.3);
    opacity: 0.75;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(100%) brightness(0.1);
}

/* Dark background variant (if logos appear on dark sections) */
.bg-dark .brand-logo,
.bg-black .brand-logo {
    filter: grayscale(100%) brightness(3);
    opacity: 0.6;
}

.bg-dark .brand-logo:hover,
.bg-black .brand-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 22px;
    }

    .brand-logos {
        gap: 1.75rem;
    }
}

/* Luxury Services Layout */
.services-luxury {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.85) grayscale(20%);
}

.service-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.7) grayscale(0%);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3rem;
    color: var(--color-white);
    z-index: 2;
    width: 100%;
}

.service-card h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin: 0;
    letter-spacing: -1px;
}

.service-card span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(10px);
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover span {
    opacity: 1;
    transform: translateY(0);
}

/* Infinite Auto-scroll Gallery (JS-driven) */
.gallery-marquee-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 2rem 0;
    margin-top: 5rem;
    cursor: grab;
}

.gallery-marquee-container.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.gallery-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-group {
    display: flex;
    flex-shrink: 0;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.gallery-marquee-item {
    flex-shrink: 0;
    width: 320px;
    height: 420px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-marquee-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0);
    transition: background 0.4s ease;
    pointer-events: none;
}

.gallery-marquee-item:hover::after {
    background: rgba(8, 8, 8, 0.15);
}

.gallery-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

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

/* ─── Lightbox ───────────────────────────────────────── */
.lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.94);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lb-overlay.lb-open {
    opacity: 1;
    pointer-events: all;
}

.lb-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100vw - 10rem);
    max-height: calc(100vh - 6rem);
}

.lb-img {
    max-width: 100%;
    max-height: calc(100vh - 6rem);
    object-fit: contain;
    display: block;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    user-select: none;
    -webkit-user-drag: none;
}

.lb-img.lb-img-visible {
    opacity: 1;
    transform: scale(1);
}

.lb-close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.35s ease, border-color 0.25s ease;
    z-index: 9001;
}

.lb-close:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.lb-close svg {
    width: 18px;
    height: 18px;
}

.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease;
    z-index: 9001;
}

.lb-nav:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
}

.lb-nav svg {
    width: 18px;
    height: 18px;
}

.lb-prev {
    left: 1.25rem;
}

.lb-next {
    right: 1.25rem;
}

.lb-counter {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-main);
    pointer-events: none;
}

@media (max-width: 768px) {
    .lb-stage {
        max-width: 100vw;
        max-height: calc(100vh - 8rem);
        padding: 0 1rem;
    }

    .lb-img {
        max-height: calc(100vh - 8rem);
    }

    .lb-nav {
        display: none;
    }

    .lb-close {
        width: 44px;
        height: 44px;
        top: 1rem;
        right: 1rem;
    }
}

/* Fallback/Original Editorial Gallery (Asymmetrical) - hidden if not used but kept for legacy */
.gallery-editorial {
    display: none;
}

/* Hide original */

/* Language Menu Grid (Pricing Page) */
.lang-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0 auto 2rem auto;
    max-width: 800px;
}

.lang-menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--color-black);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-menu-card:hover {
    background: var(--color-black);
    transform: translateY(-5px);
}

.lang-menu-card:hover,
.lang-menu-card:hover * {
    color: var(--color-white);
}

.lang-menu-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.lang-menu-card span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

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

    .lang-menu-card {
        padding: 2rem 1.5rem;
    }
}

/* Booking Consultation Card (Booking Page) */
.booking-consultation-card {
    display: flex;
    background-color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.booking-consultation-card .img-side {
    flex: 1;
    min-height: 400px;
}

.booking-consultation-card .img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-consultation-card .text-side {
    flex: 1;
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-benefits {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--color-black);
}

@media (max-width: 900px) {
    .booking-consultation-card {
        flex-direction: column;
    }

    .booking-consultation-card .text-side {
        padding: 4rem 2rem;
    }
}

/* Map & Booking Container */
.map-booking-section {
    padding: 10rem 0;
}

.map-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.booking-side {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
}

.booking-side .section-title {
    color: var(--color-white);
}

.booking-side p {
    color: rgba(255, 255, 255, 0.7);
}

.booking-side .contact-info {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.2rem;
}

.contact-item-text h4 {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.map-side {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-side iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ─── Footer contact interactive links ─────────── */
.footer-contact-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.25s ease;
    display: inline-block;
}

.footer-contact-link:hover {
    opacity: 0.7;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

/* Stack visit-section buttons on very small screens */
@media (max-width: 480px) {
    .booking-side>div[style*="display: flex"] {
        flex-direction: column;
    }

    .booking-side>div[style*="display: flex"] .btn {
        width: 100%;
        text-align: center;
    }
}

/* Luxury Pricing Menu System */
.menu-container {
    max-width: 1000px;
    margin: 0 auto;
}

.notice-box {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 10%;
    margin-bottom: 6rem;
    text-align: center;
}

.notice-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

/* ─── Hair Length Guide ─────────────────────── */
.size-guide-section {
    margin-bottom: 8rem;
}

.size-guide-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    margin-top: 2.5rem;
}

.size-guide-illustration {
    /* 2:1 horizontal ratio container */
    aspect-ratio: 2 / 1;
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    border: none;
    /* Removed border */
    background: none;
    /* Removed background box */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hairsize-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.size-guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
}

.size-card {
    border: 1px solid var(--color-light-gray);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
}

.size-card span {
    display: block;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
    color: var(--color-black);
}

.size-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}


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

.menu-category-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    letter-spacing: -1px;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
}

.menu-item-left {
    padding-right: 2rem;
}

.menu-service-name {
    display: block;
    font-size: 1.25rem;
    color: var(--color-black);
}

.menu-service-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.menu-price {
    font-size: 1.25rem;
    color: var(--color-black);
    font-weight: 400;
    white-space: nowrap;
}

/* Pricing Accordion System */
.pricing-accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--color-black);
    transition: var(--transition);
}

.accordion-title {
    font-size: 1.8rem;
    font-family: var(--font-main);
    letter-spacing: -1px;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-inner {
    display: flex;
    gap: 4rem;
    padding-bottom: 3rem;
}

.accordion-img {
    flex: 1;
    max-width: 300px;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.accordion-data {
    flex: 2;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .accordion-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .accordion-img {
        max-width: 100%;
        height: 200px;
    }

    .accordion-img img {
        aspect-ratio: auto;
    }
}

/* Policy Grid Upgrades */
.policy-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.policy-item {
    display: flex;
    gap: 4rem;
    padding: 6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.policy-item:first-child {
    padding-top: 0;
}

.policy-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.policy-number {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 2px;
    flex-shrink: 0;
    line-height: 1;
}

.policy-content h3 {
    font-size: 2.2rem;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    margin-top: -0.5rem;
}

.policy-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

/* Owner Section Restyle */
.owner-section {
    gap: 6rem;
}

.owner-info h3 {
    font-size: 3rem;
}

/* Premium Footer Section */
footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 6rem var(--padding-global-x) 2rem;
    position: relative;
}

.footer-top-divider {
    position: absolute;
    top: 0;
    left: var(--padding-global-x);
    right: var(--padding-global-x);
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.footer-content-premium {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
    color: var(--color-white);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 400px;
}

.footer-nav h3,
.footer-contact h3 {
    color: var(--color-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.footer-nav a:hover {
    color: var(--color-white);
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.6;
    margin-top: 0.2rem;
}

.footer-bottom-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.social-icons-premium {
    display: flex;
    gap: 1.5rem;
}

.social-icons-premium a {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons-premium a:hover {
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-icons-premium svg {
    width: 22px;
    height: 22px;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Responsive */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    color: inherit;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    line-height: 1;
}

/* Hamburger bars (closed state) */
.mobile-menu-btn .bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.25s ease;
    transform-origin: center;
}

.mobile-menu-btn .bars-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 22px;
}

/* Open state — morph to X */
.mobile-menu-btn.is-open .bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn.is-open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.is-open .bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1024px) {

    .editorial-split,
    .owner-section {
        flex-direction: column;
        gap: 2.5rem;
    }

    .owner-split {
        flex-direction: column !important;
    }

    .editorial-split .text-side {
        padding-right: 0;
        padding-left: 0 !important;
    }

    .owner-split .text-side {
        padding-left: 0 !important;
        margin-bottom: 2rem;
    }

    .size-guide-layout {
        gap: 2.5rem;
    }

    .size-guide-illustration {
        aspect-ratio: 2 / 1;
    }

    .map-booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-luxury {
        grid-template-columns: 1fr;
    }

    .footer-content-premium {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom-premium {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .gallery-marquee-item {
        width: 320px;
        height: 400px;
    }
}

@media (max-width: 768px) {

    /* Global Adjustments */
    section {
        padding: 5rem 0;
    }

    .map-booking-section {
        padding: 5rem 0;
    }

    .page-hero {
        padding-top: 6rem;
        min-height: 50vh;
    }

    .hero p,
    .page-hero p {
        margin-bottom: 2rem;
    }

    .brands {
        flex-direction: column;
        align-items: center;
        gap: 1rem !important;
    }

    /* Typography Overrides */
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .page-hero h1 {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }

    p {
        font-size: 1rem;
    }

    /* Touch UX */
    .btn {
        min-height: 54px;
        width: 100%;
        text-align: center;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    /* Header Nav Overlay */
    .header {
        padding: 1rem var(--padding-global-x);
    }

    .logo img {
        height: 24px;
    }

    .header.scrolled {
        padding: 1rem var(--padding-global-x);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 1000;
        padding-top: 4rem;
    }

    .nav-links.active {
        right: 0;
    }

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

    .lang-switcher {
        margin-left: 0;
        margin-top: 1rem;
    }

    .lang-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .lang-flag {
        height: 20px;
    }

    /* Touch friendly */
    .header.scrolled .mobile-menu-btn,
    .header:not(.transparent) .mobile-menu-btn,
    .header.menu-open .mobile-menu-btn {
        color: var(--color-black);
    }

    /* Hero Layout */
    .hero-content {
        margin-top: 2rem;
        text-align: center;
    }

    .hero-socials {
        justify-content: center;
        margin-top: 3rem;
    }

    .hero-socials a {
        padding: 10px;
    }

    /* Increase touch area */
    .hero-socials svg {
        width: 28px;
        height: 28px;
    }

    /* Services Grid */
    .service-card {
        aspect-ratio: 1/1;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    /* Gallery Marquee */
    .gallery-marquee-container {
        margin-top: 2rem;
    }

    .gallery-marquee-item {
        width: 85vw;
        height: 350px;
    }

    .marquee-group {
        gap: 1rem;
        padding-right: 1rem;
    }

    /* Booking Consultation */
    .booking-consultation-card .text-side {
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .booking-benefits li {
        font-size: 0.95rem;
        align-items: flex-start;
        text-align: left;
    }

    .booking-benefits svg {
        margin-top: 2px;
    }

    /* Pricing Accordion */
    .accordion-header {
        padding: 1.5rem 0;
        min-height: 54px;
    }

    .accordion-title {
        font-size: 1.3rem;
    }

    .menu-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 0;
        gap: 0.5rem;
    }

    .menu-item-left {
        padding-right: 0;
    }

    .menu-price {
        align-self: flex-start;
        font-weight: 500;
        font-size: 1.15rem;
    }

    /* Map Display */
    .map-side {
        aspect-ratio: auto;
        height: 350px;
    }

    .booking-side {
        padding-right: 0;
        text-align: center;
    }

    .contact-item {
        text-align: left;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    /* Footer */
    footer {
        padding: 4rem var(--padding-global-x) 2rem;
    }

    .footer-brand p {
        margin: 0 auto;
        text-align: center;
        max-width: 100%;
    }

    .footer-brand h2 {
        text-align: center;
    }

    /* Center the section headings KHÁM PHÁ / LIÊN HỆ */
    .footer-nav h3,
    .footer-contact h3 {
        text-align: center;
    }

    .footer-nav ul,
    .footer-contact ul {
        align-items: center;
        text-align: center;
    }

    /* Center icon + text pairs in contact column */
    .footer-contact li {
        justify-content: center;
        align-items: flex-start;
    }

    .footer-contact li span {
        text-align: left;
    }

    .footer-bottom-premium {
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .social-icons-premium a {
        padding: 10px;
    }

    /* Tap target */
}

/* ─── Floating Booking Button ────────────────── */
.floating-booking {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 2000;
    background: var(--color-black);
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-booking:hover {
    transform: translateY(-5px);
    background: var(--color-dark-gray);
    color: var(--color-beige);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.floating-booking svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .floating-booking {
        bottom: 25px;
        right: 20px;
        padding: 12px 22px;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        gap: 10px;
    }

    .floating-booking svg {
        width: 18px;
        height: 18px;
    }
}