/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

:root {
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
    
    /* Color Palette */
    --color-bg-light: #FAF8F5;
    --color-bg-cream: #F3EFE9;
    --color-bg-dark: #151515;
    --color-text-dark: #1C1C1C;
    --color-text-muted: #666666;
    --color-text-light: #FAF8F5;
    --color-text-light-muted: #AAAAAA;
    --color-border: #E5DFD5;
    --color-border-dark: #2A2A2A;
    
    /* Spacing */
    --section-padding: 8.5rem 0;
    --safe-width: 1200px;
    --safe-gutter: 2rem;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .font-serif {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Button & Link Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.btn-header {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-size: 0.7rem;
    padding: 0.8rem 1.8rem;
}

.btn-header:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.btn-dark:hover {
    background-color: #333333;
    letter-spacing: 0.22em;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
    position: relative;
    padding-bottom: 0.5rem;
}

.link-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: var(--color-text-light);
    transition: var(--transition);
}

.link-arrow:hover::after {
    width: 100%;
}

.section-tag {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.section-tag.text-light {
    color: var(--color-text-light-muted);
}

.section-tag.text-dark {
    color: var(--color-text-muted);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background-color: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 1rem 2rem;
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3.5rem;
}

.header-cta {
    margin-left: auto;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--color-text-dark);
}

.brand-sub {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    justify-content: flex-start;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-text-dark);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: var(--transition);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: var(--transition);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* Hero Section V2 (Da Nang Lash Artistry) */
.hero-section-v2 {
    min-height: 100vh;
    display: flex;
    background-color: var(--color-bg-cream);
    padding-top: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.hero-v2-content {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding: 8rem var(--safe-gutter) 4rem;
    padding-left: max(var(--safe-gutter), calc((100vw - var(--safe-width)) / 2));
    background-color: var(--color-bg-cream);
    z-index: 10;
    box-sizing: border-box;
}

.hero-v2-text-wrap {
    max-width: calc((var(--safe-width) - var(--safe-gutter) * 2) / 2);
    width: 100%;
}

.hero-v2-tagline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.hero-v2-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.15;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-v2-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2.2rem 0;
    width: 100px;
}

.hero-v2-loc-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-v2-loc-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-v2-loc-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-dark);
}

.hero-v2-loc-item svg {
    color: var(--color-text-dark);
    flex-shrink: 0;
}

.hero-v2-image-container {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-cream);
    min-height: 100vh;
    align-self: stretch;
}

.hero-v2-image-container picture {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.hero-v2-image {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 1;
    transition: var(--transition);
}

.hero-section-v2:hover .hero-v2-image {
    transform: scale(1.02);
}

/* Split Portfolio Section with Marquee Gallery */
.split-portfolio-section {
    display: flex;
    height: 50vh;
    background-color: var(--color-bg-dark);
}

.portfolio-image-side {
    flex: 0 0 70%;
    position: relative;
    overflow: hidden;
}

.portfolio-image-side .photo-marquee {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    cursor: grab;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
    background-color: var(--color-bg-dark);
}

.portfolio-image-side .photo-marquee.is-dragging {
    cursor: grabbing;
}

.portfolio-image-side .photo-marquee.is-dragging .photo-marquee-slide {
    pointer-events: none;
}

.portfolio-image-side .photo-marquee-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    width: max-content;
    height: 100%;
    will-change: transform;
    font-size: 0;
    line-height: 0;
}

.portfolio-image-side .photo-marquee-slide {
    flex: 0 0 auto;
    height: 100%;
    width: auto;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
    cursor: pointer;
    display: block;
    line-height: 0;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
}

.portfolio-image-side .photo-marquee-slide--landscape,
.portfolio-image-side .photo-marquee-slide--portrait {
    aspect-ratio: unset;
    width: auto;
}

.portfolio-image-side .photo-marquee-slide img {
    display: block;
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: cover;
    vertical-align: top;
    pointer-events: none;
    user-select: none;
}

.portfolio-content-side {
    flex: 0 0 30%;
    background-color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    color: var(--color-text-light);
    border-left: 1px solid var(--color-border-dark);
}

.portfolio-text-box {
    max-width: 480px;
}

.portfolio-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.portfolio-desc {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    line-height: 1.8;
    color: var(--color-text-light-muted);
    margin-bottom: 3.5rem;
}

/* Styles Section */
.styles-section {
    position: relative;
    padding: var(--section-padding);
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.watermark-text {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center right;
    font-family: var(--font-serif);
    font-size: 9.5rem;
    font-weight: 300;
    color: rgba(229, 223, 213, 0.25);
    letter-spacing: 0.15em;
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.styles-header-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    text-transform: uppercase;
    margin-bottom: 5.5rem;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.style-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.style-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 2rem;
    background-color: var(--color-bg-cream);
}

.style-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.style-card:hover .style-img-wrap img {
    transform: scale(1.05);
}

.style-name {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.style-sub {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 1.8rem;
}

.style-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-text-dark);
    padding-bottom: 0.25rem;
    margin-top: auto;
}

.style-link:hover {
    letter-spacing: 0.28em;
    border-bottom-color: transparent;
}

/* Why Travelers Choose Section */
.why-choose-section {
    display: flex;
    min-height: 85vh;
    background-color: var(--color-bg-cream);
}

.why-choose-image {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
    background-color: #E8E0D6;
}

.why-choose-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.why-choose-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5rem max(var(--safe-gutter), calc((100vw - var(--safe-width)) / 2)) 5rem 5rem;
    background-color: var(--color-bg-cream);
}

.why-choose-inner {
    width: 100%;
    max-width: 620px;
}

.why-choose-tag {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.why-choose-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
}

.why-choose-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    width: 100%;
    margin: 0 0 3rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.why-choose-item {
    padding: 2.5rem 2.5rem 2.5rem 0;
}

.why-choose-item:nth-child(2),
.why-choose-item:nth-child(4) {
    padding-left: 2.5rem;
    padding-right: 0;
}

.why-choose-item:nth-child(1),
.why-choose-item:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 3rem;
}

.why-choose-item:nth-child(3),
.why-choose-item:nth-child(4) {
    padding-top: 3rem;
}

.why-choose-item:nth-child(1),
.why-choose-item:nth-child(3) {
    border-right: 1px solid var(--color-border);
    padding-right: 2.5rem;
}

.why-choose-num {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.why-choose-item-title {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: 0.85rem;
}

.why-choose-item-desc {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--color-text-muted);
    max-width: 240px;
}


/* Site Footer */
.site-footer {
    position: relative;
    background: var(--color-bg-dark);
    color: rgba(250, 248, 245, 0.85);
    padding: 2.5rem 0 2rem;
    margin-top: 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
    max-width: 520px;
    margin-inline: auto;
    text-align: center;
}

.footer-logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: rgba(250, 248, 245, 0.95);
    margin-bottom: 0.25rem;
}

.footer-logo-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1;
}

.footer-logo-sub {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-text-light-muted);
}

.footer-brand p {
    margin: 0.5rem 0;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.65;
}

.footer-brand a {
    color: rgba(250, 248, 245, 0.9);
    transition: color 0.25s ease;
}

.footer-brand a:hover {
    color: var(--color-text-light);
}

.footer-copy {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    opacity: 0.6;
    padding-top: 0.75rem;
}

.footer-design {
    text-align: center;
    margin: 0.5rem auto 0;
    padding-bottom: 0.25rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(250, 248, 245, 0.55);
}

.footer-design a {
    color: rgba(250, 248, 245, 0.8);
    transition: color 0.25s ease;
}

.footer-design a:hover {
    color: var(--color-text-light);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    margin: 1.25rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    max-width: 720px;
}

.footer-legal__link {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.45;
    color: rgba(250, 248, 245, 0.75);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    text-align: center;
}

.footer-legal__link:hover {
    color: var(--color-text-light);
}

.footer-legal__sep {
    color: rgba(250, 248, 245, 0.35);
    font-size: 0.75rem;
}

.legal-dialog {
    border: none;
    padding: 0;
    max-width: min(640px, calc(100vw - 2rem));
    width: 100%;
    border-radius: 16px;
    background: var(--color-bg-light);
    color: var(--color-text-dark);
    box-shadow: 0 24px 64px rgba(21, 21, 21, 0.28);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.legal-dialog::backdrop {
    background: rgba(21, 21, 21, 0.55);
}

.legal-dialog__inner {
    position: relative;
    padding: 1.5rem 1.35rem 1.35rem;
}

.legal-dialog__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(28, 28, 28, 0.08);
    color: var(--color-text-dark);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.legal-dialog__close:hover {
    background: rgba(28, 28, 28, 0.14);
}

.legal-dialog__title {
    margin: 0 2rem 1rem 0;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-text-dark);
    line-height: 1.35;
}

.legal-dialog__body {
    max-height: min(70vh, 520px);
    overflow-y: auto;
    padding-right: 0.25rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.legal-dialog__body h3 {
    margin: 1.1rem 0 0.45rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.legal-dialog__body h3:first-child {
    margin-top: 0;
}

.legal-dialog__body p {
    margin: 0 0 0.75rem;
}

.legal-dialog__body ul {
    margin: 0 0 0.75rem;
    padding-left: 1.15rem;
}

.legal-dialog__body li {
    margin-bottom: 0.35rem;
}

.legal-dialog__body a {
    color: var(--color-text-dark);
    text-decoration: underline;
}

.legal-dialog__body strong {
    color: var(--color-text-dark);
    font-weight: 500;
}

/* Floating contact bar */
.float-bar {
    position: fixed;
    left: calc(12px + env(safe-area-inset-left));
    bottom: calc(16px + env(safe-area-inset-bottom));
    top: auto;
    transform: none;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-bar__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(21, 21, 21, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-bar__btn:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 22px rgba(21, 21, 21, 0.3);
}

.float-bar__btn:focus-visible {
    outline: 2px solid var(--color-border);
    outline-offset: 3px;
}

.float-bar__btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    user-select: none;
}


@media (max-width: 768px) {
    .float-bar {
        left: calc(10px + env(safe-area-inset-left));
        bottom: calc(14px + env(safe-area-inset-bottom));
        gap: 8px;
    }

    .float-bar__btn {
        width: 44px;
        height: 44px;
    }

    .footer-brand p,
    .footer-brand a,
    .footer-copy,
    .footer-design,
    .footer-design a {
        font-size: 0.88rem;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), 
                transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.hero-v2-image-container.fade-in-up {
    transform: translateX(30px);
}

.hero-v2-image-container.fade-in-up.appear {
    transform: translateX(0);
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
    .main-header {
        padding: 1.5rem 2rem;
    }
    
    .nav-menu ul {
        gap: 2rem;
    }
    
    .portfolio-title {
        font-size: 3rem;
    }
    
    .styles-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .hero-section-v2 {
        flex-direction: column;
        min-height: auto;
        padding-top: 0;
    }
    
    .hero-v2-content {
        flex: 0 0 auto;
        padding: 8rem var(--safe-gutter) 4rem;
        padding-left: max(var(--safe-gutter), calc((100vw - var(--safe-width)) / 2));
        text-align: left;
    }

    .hero-v2-text-wrap {
        max-width: min(calc(var(--safe-width) - var(--safe-gutter) * 2), 100%);
    }
    
    .hero-v2-image-container {
        flex: 0 0 auto;
        width: 100%;
        min-height: 60vh;
        height: 60vh;
        background-color: var(--color-bg-cream);
    }

    .hero-v2-image {
        min-height: 60vh;
        object-fit: contain;
        object-position: center bottom;
    }

    .split-portfolio-section {
        flex-direction: column;
    }
    
    .portfolio-image-side {
        flex: 0 0 auto;
        height: 35vh;
    }
    
    .portfolio-content-side {
        flex: 0 0 auto;
        padding: 4rem 2rem;
        text-align: center;
    }
    
    .portfolio-text-box {
        max-width: 100%;
    }
    
    .portfolio-title {
        font-size: 2.8rem;
    }
    
    .styles-header-title {
        font-size: 44px;
        margin-bottom: 3.5rem;
    }
    
    .styles-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 480px;
        margin: 0 auto;
    }

    .why-choose-section {
        flex-direction: column;
        min-height: auto;
    }

    .why-choose-image {
        flex: 0 0 auto;
        width: 100%;
        height: 55vh;
        min-height: 320px;
    }

    .why-choose-content {
        padding: 4rem var(--safe-gutter);
    }

    .why-choose-inner {
        max-width: 100%;
    }

    .why-choose-item-desc {
        max-width: none;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: block;
        margin-left: auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-light);
        padding: 8rem 2rem 4rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1050;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Hamburger Animation to 'X' */
    .mobile-nav-toggle[aria-expanded="true"] .hamburger {
        background-color: transparent;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .watermark-text {
        display: none;
    }
}

/* Lightbox Styles & Marquee Responsiveness */
.gallery-lightbox {
    border: none;
    padding: 0;
    max-width: min(960px, 96vw);
    width: 100%;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.gallery-lightbox::backdrop {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(5px);
}

.gallery-lightbox__figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.gallery-lightbox__img {
    display: block;
    max-width: min(92vw, 900px);
    max-height: min(82vh, 720px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    border: 2px solid var(--color-border-dark);
}

.gallery-lightbox__caption {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.gallery-lightbox__close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1010;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-bg-dark);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-lightbox__close:hover {
    transform: scale(1.1);
    background: #fff;
}

.gallery-lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1010;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-bg-dark);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition);
}

.gallery-lightbox__nav:hover {
    transform: translateY(-50%) scale(1.1);
    background: #fff;
}

.gallery-lightbox__nav--prev {
    left: 2rem;
}

.gallery-lightbox__nav--next {
    right: 2rem;
}

@media (min-width: 900px) {
    .gallery-lightbox__nav--prev {
        left: max(2rem, calc(50vw - 480px));
    }

    .gallery-lightbox__nav--next {
        right: max(2rem, calc(50vw - 480px));
    }
}

@media (max-width: 900px) {
    .portfolio-image-side {
        height: 35vh;
        min-height: auto;
    }
    .gallery-lightbox__close {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    .gallery-lightbox__nav {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    .gallery-lightbox__nav--prev {
        left: 0.5rem;
    }
    .gallery-lightbox__nav--next {
        right: 0.5rem;
    }
}

/* Reviews Section — Google Maps + marquee (design system) */
.reviews-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-light);
    --reviews-card-muted: var(--color-bg-cream);
    --reviews-card-border: var(--color-border);
    --reviews-text: var(--color-text-dark);
    --reviews-text-soft: var(--color-text-muted);
    --reviews-star: #b8941f;
    --reviews-surface: #ffffff;
    --reviews-radius: 12px;
    --reviews-radius-lg: 16px;
}

.reviews-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.reviews-section-header .section-tag {
    margin-bottom: 1.5rem;
}

.reviews-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 48px);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.reviews-section-desc {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.reviews-section-desc strong {
    font-weight: 500;
    color: var(--color-text-dark);
}

/* Reviews marquee — extracted from 09-reviews-marquee-ai-bundle.html */

.reviews-section > .container {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding: 0 2rem;
}

/* Reviews — desktop: maps trái (ảnh tĩnh), marquee phải; mobile: chồng dọc */
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(300px, 47.5%) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.75vw, 2rem);
  align-items: center;
  margin-top: 0.35rem;
}

.reviews-map-wrap {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 0;
  line-height: 0;
  overflow: visible;
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  filter: none;
  border-radius: 0;
}

.reviews-map-link {
  display: block;
  line-height: 0;
  border-radius: inherit;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.reviews-map-link:hover {
  opacity: 0.92;
}

.reviews-map-link:focus-visible {
  outline: 2px solid var(--reviews-star);
  outline-offset: 4px;
}

.reviews-map-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  filter: none;
  border-radius: 15px;
  vertical-align: top;
}

.reviews-marquee-shell {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 993px) {
  .reviews-section {
    overflow-x: visible;
  }

  .reviews-section > .container {
    overflow: visible;
  }

  .reviews-layout {
    overflow: visible;
  }

  /* Cột trái co theo ảnh Maps — tránh khoảng trắng giữa Maps và carousel */
  .reviews-layout {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }

  .reviews-map-wrap {
    position: relative;
    z-index: 2;
    justify-self: end;
    width: 100%;
    max-width: 400px;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
  }

  .reviews-map-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
  }

  /* Fade chỉ trên vùng carousel (bên trái shell), không phủ ảnh Maps */
  .reviews-marquee-shell {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: none;
  }

  .reviews-marquee-shell::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: var(--reviews-fade-width, 48px);
    background: linear-gradient(
      to left,
      var(--color-bg-light, #FAF8F5) 0%,
      rgba(250, 248, 245, 0) 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  .reviews-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .review-excerpt {
    font-size: 14px;
  }
}

.reviews-marquee {
  overflow: hidden;
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0 1.25rem;
  cursor: grab;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.reviews-marquee.is-dragging {
  cursor: grabbing;
}

.reviews-marquee.is-dragging .review-card {
  pointer-events: none;
}

.reviews-marquee .review-read-more {
  pointer-events: auto;
  cursor: pointer;
}

.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    /* Still one horizontal row — motion is slowed in JS, not replaced with a grid */
    flex-wrap: nowrap;
  }
}

.review-card {
  flex: 0 0 min(300px, min(92%, 340px));
  background: var(--reviews-surface);
  border-radius: var(--reviews-radius);
  padding: 1.35rem 1.4rem 1.25rem;
  box-shadow: none;
  border: 1px solid var(--reviews-card-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-meta {
  min-width: 0;
}

.review-name {
  display: block;
  font-size: 0.95rem;
  color: var(--reviews-text);
  margin-bottom: 0.2rem;
}

.review-avatar {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: hsl(var(--avatar-hue, 24) 55% 88%);
  color: hsl(var(--avatar-hue, 24) 35% 32%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.review-avatar--img {
  background: transparent;
  overflow: hidden;
  padding: 0;
}

.review-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stars {
  display: block;
  color: var(--reviews-star);
  font-size: 0.82rem;
  letter-spacing: 1px;
  line-height: 1.2;
}

.stars.stars--outline {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #c9a227;
  line-height: 0;
}

.star-outline-svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  display: block;
}

.review-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.review-excerpt {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-read-more {
  align-self: flex-start;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--reviews-text-soft);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-read-more:hover {
  color: var(--reviews-text);
}

.review-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.review-photo-btn {
  padding: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
  box-shadow: none;
}

.review-photo-btn img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.review-photo-btn:hover img {
  transform: scale(1.04);
}

.review-dialog {
  border: none;
  padding: 0;
  max-width: min(560px, 92vw);
  width: min(560px, 92vw);
  border-radius: var(--reviews-radius-lg);
  box-shadow: 0 24px 64px rgba(28, 28, 28, 0.18);
  overflow: visible;
}

.review-dialog[open] {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 92vw);
  height: fit-content;
  max-height: min(90dvh, 720px);
  margin: 0;
  overflow: visible;
}

.review-dialog::backdrop {
  background: rgba(21, 21, 21, 0.55);
}

.review-dialog__inner {
  padding: 1.5rem 1.6rem 1.35rem;
  background: var(--reviews-surface);
  border-radius: var(--reviews-radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: inherit;
  overflow-y: auto;
}

.review-dialog__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: var(--reviews-card-muted);
  color: var(--reviews-text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.review-dialog__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: var(--color-bg-dark);
  color: #fff;
  font-size: 1.593rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 3px 11px rgba(28, 28, 28, 0.14);
}

.review-dialog__nav--prev {
  left: 0.525rem;
}

.review-dialog__nav--next {
  right: 0.525rem;
}

@media (min-width: 640px) {
  .review-dialog__nav--prev {
    left: max(0.525rem, calc(50vw - 300px));
  }

  .review-dialog__nav--next {
    right: max(0.525rem, calc(50vw - 300px));
  }
}

.review-dialog__nav:hover {
  background: var(--color-text-dark);
  color: #fff;
}

.review-dialog__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-right: 2rem;
}

html.review-dialog-open,
html.review-dialog-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

html.review-dialog-open body {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.review-dialog__text-wrap {
  position: relative;
}

.review-dialog__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-height: min(50vh, 320px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.review-dialog__text-wrap.is-scrollable:not(.is-scrolled-bottom)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.25rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 72%);
  pointer-events: none;
  z-index: 1;
}

.review-dialog__text-wrap.is-scrollable:not(.is-scrolled-bottom) .review-dialog__scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.4rem;
  z-index: 2;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--reviews-text-soft);
  pointer-events: none;
}

.review-dialog__scroll-hint {
  display: none;
}

.review-dialog__scroll-hint-icon {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  animation: review-scroll-hint-bounce 1.4s ease-in-out infinite;
}

@keyframes review-scroll-hint-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-dialog__scroll-hint-icon {
    animation: none;
  }
}

.review-dialog__text p {
  margin: 0 0 0.85rem;
}

.review-dialog__text p:last-child {
  margin-bottom: 0;
}

.review-dialog__actions {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--reviews-card-border);
}

.review-dialog__translate {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--reviews-text-soft);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-dialog__translate:hover {
  color: var(--reviews-text);
}

.review-dialog__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.review-dialog-photo {
  padding: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.review-dialog-photo img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
}

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  pointer-events: none;
}

.review-lightbox.is-open {
  display: flex;
  pointer-events: auto;
}

.review-dialog:has(.review-lightbox.is-open) .review-dialog__nav {
  opacity: 0;
  pointer-events: none;
}

.review-lightbox__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(21, 21, 21, 0.72);
  cursor: pointer;
}

.review-lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

.review-lightbox__img {
  display: block;
  max-width: min(92vw, 900px);
  max-height: min(85vh, 720px);
  width: auto;
  height: auto;
  border-radius: var(--reviews-radius);
}

.review-lightbox__caption {
  text-align: center;
  color: var(--reviews-surface);
  font-size: 0.85rem;
  margin-top: 0.65rem;
}

.review-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--reviews-text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.review-lightbox__close:hover {
  background: #fff;
}
@media (min-width: 640px) {
  .review-dialog__nav--prev {
    left: max(0.525rem, calc(50vw - 300px));
  }

  .review-dialog__nav--next {
    right: max(0.525rem, calc(50vw - 300px));
  }
}

@media (max-width: 992px) {
  .reviews-section {
    padding: 5rem 0;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 1.65rem;
  }

  .reviews-marquee-shell {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  /* Maps mobile: max 360px, không khung / shadow thêm từ CSS */
  .reviews-map-wrap {
    width: min(360px, 100%);
    max-width: 360px;
  }

  .reviews-map-img {
    width: 100%;
  }

  .reviews-section-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .review-dialog[open] {
    max-height: min(88dvh, 720px);
  }

  .review-dialog__inner {
    max-height: min(88dvh, 720px);
  }

  .review-dialog__text {
    max-height: min(52vh, 380px);
  }

  /* Review popup — mũi tên prev/next nhỏ hơn 25% */
  .review-dialog__nav {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1.195rem;
    box-shadow: 0 2px 8px rgba(28, 28, 28, 0.12);
  }

  .review-dialog__nav--prev {
    left: 0.4rem;
  }

  .review-dialog__nav--next {
    right: 0.4rem;
  }

  .review-dialog__scroll-hint-icon {
    font-size: 0.75rem;
  }
}

/* Booking Section */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.booking-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-cream);
}

.booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.booking-info-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--color-text-dark);
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 1.25rem;
}

.booking-info-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1.75rem;
}

.booking-trust-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin: 0 0 1.5rem;
    padding: 1.15rem 1.35rem;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    font-family: var(--font-sans);
    font-size: clamp(0.72rem, 1.85vw, 0.82rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.booking-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    min-width: 0;
}

.booking-trust-item span:last-child {
    line-height: 1.35;
    text-align: center;
}

.booking-trust-icon-wrap {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    color: var(--color-text-dark);
}

.booking-trust-icon {
    display: block;
    width: 22px;
    height: 22px;
}

.booking-trust-divider {
    flex-shrink: 0;
    width: 1px;
    height: 24px;
    align-self: center;
    background: var(--color-border);
}

.booking-trust-divider--full {
    width: 100%;
    height: 1px;
}

.booking-contact-links {
    width: 100%;
}

.booking-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
}

.booking-contact-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3.5rem;
    padding: 1rem 1.15rem;
    background: transparent;
    border: none;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.booking-contact-chip:nth-child(2),
.booking-contact-chip:nth-child(4) {
    border-right: none;
}

.booking-contact-grid .booking-contact-chip:nth-child(3),
.booking-contact-grid .booking-contact-chip:nth-child(4) {
    border-bottom: none;
}

.booking-contact-chip:hover {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.booking-contact-chip__icon {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.booking-contact-chip--phone {
    display: none;
    margin-bottom: 0.85rem;
    width: 100%;
    min-height: 3.25rem;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.55);
}

.booking-form-panel {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.85rem 2rem 2rem;
    box-shadow: 0 8px 32px rgba(28, 28, 28, 0.06);
}

.booking-form-panel__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin: 0 0 0.85rem;
    text-align: center;
}

.booking-form-panel__divider {
    border: none;
    border-top: 1px solid var(--color-border);
    width: 72px;
    margin: 0 auto 1.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.booking-form__status {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.booking-form__status.is-success {
    color: var(--color-text-dark);
}

.booking-form__status.is-error {
    color: #b42318;
}

.booking-form input:not([type="checkbox"]) {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    transition: border-color 0.25s ease;
}

.booking-form input::placeholder {
    color: var(--color-text-muted);
}

.booking-form input:focus {
    outline: none;
    border-color: var(--color-text-dark);
}

.booking-services-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.65rem 0.95rem 0.75rem;
    margin: 0;
}

.booking-services-list legend {
    padding: 0 0.25rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.booking-service-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0.45rem 0;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--color-text-dark);
    cursor: pointer;
    line-height: 1.4;
}

.booking-service-option input[type="checkbox"] {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    accent-color: var(--color-bg-dark);
}

.booking-datetime-field {
    position: relative;
    display: block;
    width: 100%;
}

.booking-datetime-field__hint {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    line-height: 1.2;
    color: var(--color-text-muted);
}

.booking-datetime-field.has-value .booking-datetime-field__hint,
.booking-datetime-field:focus-within .booking-datetime-field__hint {
    opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
    .booking-datetime-field__hint {
        display: none;
    }
}

.booking-form input[type="datetime-local"] {
    position: relative;
    z-index: 0;
    min-height: 2.85rem;
    -webkit-appearance: none;
    appearance: none;
}

@media (hover: none), (pointer: coarse) {
    .booking-datetime-field:not(.has-value):not(:focus-within) input[type="datetime-local"] {
        color: transparent;
    }

    .booking-datetime-field:not(.has-value):not(:focus-within) input[type="datetime-local"]::-webkit-datetime-edit,
    .booking-datetime-field:not(.has-value):not(:focus-within) input[type="datetime-local"]::-webkit-datetime-edit-fields-wrapper,
    .booking-datetime-field:not(.has-value):not(:focus-within) input[type="datetime-local"]::-webkit-datetime-edit-text,
    .booking-datetime-field:not(.has-value):not(:focus-within) input[type="datetime-local"]::-webkit-datetime-edit-month-field,
    .booking-datetime-field:not(.has-value):not(:focus-within) input[type="datetime-local"]::-webkit-datetime-edit-day-field,
    .booking-datetime-field:not(.has-value):not(:focus-within) input[type="datetime-local"]::-webkit-datetime-edit-year-field,
    .booking-datetime-field:not(.has-value):not(:focus-within) input[type="datetime-local"]::-webkit-datetime-edit-hour-field,
    .booking-datetime-field:not(.has-value):not(:focus-within) input[type="datetime-local"]::-webkit-datetime-edit-minute-field,
    .booking-datetime-field:not(.has-value):not(:focus-within) input[type="datetime-local"]::-webkit-datetime-edit-ampm-field {
        opacity: 0;
    }
}

.booking-datetime-field:focus-within input[type="datetime-local"] {
    color: var(--color-text-dark);
}

.booking-form .is-invalid,
.booking-datetime-field.is-invalid input[type="datetime-local"] {
    border-color: #b42318 !important;
}

.booking-services-list.is-invalid {
    border-color: #b42318;
}

.booking-form__submit {
    margin-top: 0.35rem;
    padding: 1.1rem 1.5rem;
}

.booking-success-dialog {
    border: none;
    border-radius: 16px;
    padding: 0;
    max-width: min(420px, 92vw);
    background: transparent;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.booking-success-dialog::backdrop {
    background: rgba(21, 21, 21, 0.55);
}

.booking-success-dialog__inner {
    position: relative;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem 2rem 1.75rem;
    text-align: center;
}

.booking-success-dialog__close {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-text-muted);
    cursor: pointer;
}

.booking-success-dialog__title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin: 0 0 0.85rem;
}

.booking-success-dialog__text {
    margin: 0 0 1.35rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.booking-success-dialog__btn {
    min-width: 160px;
}

@media (min-width: 993px) {
    .booking-section {
        padding: 5.5rem 0;
    }

    .booking-grid {
        align-items: center;
        justify-content: center;
        gap: clamp(1.25rem, 2vw, 2rem);
        grid-template-columns: minmax(0, max-content) minmax(0, max-content);
    }

    .booking-info {
        max-width: 515px;
        width: 100%;
        justify-self: end;
        align-self: center;
    }


    .booking-form-panel {
        max-width: 420px;
        justify-self: start;
        align-self: center;
        width: 100%;
    }

    .booking-form__submit {
        padding: 1.15rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .booking-section {
        padding: 5rem 0;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 520px;
        margin-inline: auto;
    }

    .booking-info-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .booking-contact-chip--phone {
        display: flex;
    }
}

@media (max-width: 480px) {
    .booking-trust-bar {
        gap: 0.5rem 0.65rem;
        padding: 0.85rem 1rem;
    }

    .booking-trust-icon-wrap {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
    }

    .booking-trust-icon {
        width: 18px;
        height: 18px;
    }

    .booking-form-panel {
        padding: 1.5rem 1.25rem 1.65rem;
    }
}
