/* --- 1. GLOBAL RESETS --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s var(--easing-fluid), color 0.5s var(--easing-fluid);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- 2. TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(3rem, 5vw + 1rem, 6rem); }
h2 { font-size: clamp(2rem, 4vw + 1rem, 4.5rem); }
h3 { font-size: clamp(1.5rem, 3vw + 1rem, 2.5rem); }

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--easing-fluid);
}

/* --- 3. UTILITIES & MICRO-AESTHETICS --- */

/* Physical Paper Noise Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    opacity: 0.03;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

[data-theme="dark"] .noise-overlay {
    display: none;
}

/* Mouse-Following Accent Bloom Trail */
.mouse-trail-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

/* The Double-Bezel Container (Doppelrand) */
.glass-panel {
    background-color: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-outer);
    padding: 0.5rem;
    box-shadow: var(--shadow-ambient);
    border: 1px solid var(--border-outer);
}

.glass-panel-inner {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-inner);
    padding: 2.5rem;
    box-shadow: var(--shadow-inset);
    height: 100%;
}

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: opacity 800ms var(--easing-fluid), 
                transform 800ms var(--easing-fluid), 
                filter 800ms var(--easing-fluid);
    will-change: transform, opacity, filter;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Base Layout */
main {
    width: 100%;
}

section {
    padding: var(--spacing-section) 5%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* --- 4. LAYOUT ARCHITECTURE --- */

/* Fluid Island Nav */
.fluid-island-nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 100;
    transition: var(--transition-standard);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-pill);
    padding: 0.75rem 1.5rem;
    box-shadow: var(--shadow-ambient);
    border: 1px solid var(--border-outer);
}

.nav-container .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Balanced gap for new logo */
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

/* --- HEADER LOGO --- */
.logo-img {
    height: 32px; /* Set proper height */
    width: auto; /* Keep aspect ratio */
    object-fit: contain; /* Contain image */
    transition: filter 0.4s var(--easing-fluid); /* Fluid transition */
    filter: brightness(0) saturate(100%) invert(78%) sepia(16%) saturate(1148%) hue-rotate(303deg) brightness(102%) contrast(92%); /* Light pink in dark theme */
}

/* --- LIGHT THEME FILTER --- */
[data-theme="light"] .logo-img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(16%) saturate(1280%) hue-rotate(303deg) brightness(98%) contrast(92%); /* Dark pink in light theme */
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .hamburger-btn { display: none !important; }
}

.nav-links a {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    font-weight: 600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-primary);
    transition: width 0.3s var(--easing-fluid);
}

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

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    display: flex;
    gap: 0.25rem;
    background: var(--border-outer);
    padding: 0.25rem;
    border-radius: var(--radius-pill);
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.lang-btn.active {
    background: var(--bg-primary);
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Language Dropdown & Google Translate Sandbox styling */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-outer);
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: var(--shadow-ambient);
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 0.3s var(--easing-fluid), transform 0.3s var(--easing-fluid);
    z-index: 210;
}

.lang-dropdown-menu.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown-item {
    background: transparent;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
    width: 100%;
}

.dropdown-item:hover {
    background: var(--border-outer);
    color: var(--accent-primary);
}

.dropdown-item.active {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

/* Completely hide original Google Translate widget frames and banner */
#google_translate_element,
.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

body {
    top: 0 !important;
}

.icon-btn {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--easing-fluid);
}

.icon-btn:hover {
    transform: scale(1.1);
}

/* Hamburger Morph */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
    position: relative;
}

.hamburger-btn .line {
    width: 2rem;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition-fast);
    transform-origin: center;
    position: absolute;
    left: 0;
}

.hamburger-btn .line-1 { top: 0.75rem; }
.hamburger-btn .line-2 { bottom: 0.75rem; }

.hamburger-btn.open .line-1 {
    transform: rotate(45deg);
    top: 50%;
}

.hamburger-btn.open .line-2 {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--easing-fluid);
    z-index: 200; /* Over everything, including transformed elements */
}

/* Ethereal solid rose accent overlay (using solid hex mixes to prevent background page text from clashing or showing through) */
[data-theme="light"] .mobile-menu-overlay {
    background: radial-gradient(circle at top right, #FAF0F2 0%, var(--bg-primary) 70%);
}
[data-theme="dark"] .mobile-menu-overlay {
    background: radial-gradient(circle at top right, #120A0C 0%, var(--bg-primary) 70%);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Brand Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(-1rem);
    transition: transform 0.5s var(--easing-fluid), opacity 0.5s var(--easing-fluid);
}

.mobile-menu-overlay.active .mobile-menu-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 100ms;
}

/* Circular Close Button (X) */
.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-outer);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--easing-fluid), background-color 0.3s var(--easing-fluid);
    box-shadow: var(--shadow-ambient);
    z-index: 205;
}

.mobile-menu-close:hover {
    transform: scale(1.08) rotate(90deg);
    background: var(--bg-secondary);
    border-color: var(--accent-primary);
}

.mobile-menu-close:active {
    transform: scale(0.95);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    margin: auto 0;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    font-weight: 500;
    display: block;
    transform: translateY(2.5rem);
    opacity: 0;
    transition: transform 0.6s var(--easing-fluid), opacity 0.6s var(--easing-fluid);
}

.mobile-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: var(--accent-primary);
    transition: width 0.3s var(--easing-fluid);
}

.mobile-link:hover::after {
    width: 60%;
}

.mobile-menu-overlay.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(100ms + var(--i) * 80ms);
}

/* Quick Access Footer */
.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: transform 0.6s var(--easing-fluid), opacity 0.6s var(--easing-fluid);
    text-align: center;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 500ms;
}

.mobile-menu-address,
.mobile-menu-phone {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.mobile-menu-book {
    margin-top: 0.5rem;
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-outer);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* --- FOOTER LOGO --- */
.footer-logo-img {
    height: 44px; /* Distinct footer presence */
    width: auto; /* Keep aspect ratio */
    object-fit: contain; /* Contain image */
    transition: filter 0.4s var(--easing-fluid); /* Fluid transition */
    filter: brightness(0) saturate(100%) invert(78%) sepia(16%) saturate(1148%) hue-rotate(303deg) brightness(102%) contrast(92%); /* Light pink in dark theme */
}

/* --- LIGHT THEME FOOTER FILTER --- */
[data-theme="light"] .footer-logo-img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(16%) saturate(1280%) hue-rotate(303deg) brightness(98%) contrast(92%); /* Dark pink in light theme */
}

.footer-brand h2 {
    margin: 0.75rem 0 0.25rem; /* Refined spacing */
    font-size: 1.5rem;
}

.footer-info p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
}

.booking-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border-outer);
    padding-bottom: 0.25rem;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-outer);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* --- 5. HERO SECTION (FULL BLEED CINEMATIC) --- */

.section-hero.full-bleed {
    padding: 0 !important;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 4rem; /* Buffer before next section */
}

/* --- HERO BACKGROUND LAYER --- */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keep image stationary for parallax scrolling */
    z-index: 0;
    transition: background-image 1.5s ease-in-out, opacity 1s ease-in-out; /* Smooth transition */
}

/* Gradient overlay to ensure text readability and fade into the next section */
.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 50%,
        var(--bg-primary) 100%
    );
}

[data-theme="light"] .hero-overlay-gradient {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 50%,
        var(--bg-primary) 100%
    );
}

.hero-content-cinematic {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 8rem; /* Push down past nav */
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.cinematic-eyebrow {
    margin-bottom: 0.5rem;
    color: var(--bg-primary); /* Force light text on dark overlay */
}

.cinematic-title {
    font-size: clamp(3.5rem, 8vw, 8rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #FFFFFF; /* Force white text over image */
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin: 0;
}

.cinematic-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cinematic-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.cinematic-secondary-btn {
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.cinematic-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

/* Maintain global button physics */
.eyebrow-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.magnetic-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s var(--easing-fluid), background-color 0.3s var(--easing-fluid);
    will-change: transform;
    cursor: pointer;
}

.magnetic-btn:active {
    transform: scale(0.96); /* Simulate physical pressing */
}

.primary-btn {
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    padding-right: 0.5rem; /* Less padding on right to account for nested icon */
}

.primary-btn .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-pill);
    margin-left: 1rem;
    transition: transform 0.4s var(--easing-fluid), background-color 0.3s var(--easing-fluid);
}

[data-theme="dark"] .primary-btn .icon-wrapper {
    background-color: rgba(0, 0, 0, 0.3);
}

.primary-btn:hover .icon-wrapper {
    transform: translate(4px, -4px) scale(1.05); /* Diagonal kinetic tension */
    background-color: rgba(255, 255, 255, 0.4);
}

.secondary-btn {
    background-color: transparent;
    border: 1px solid var(--border-outer);
    color: var(--text-primary);
}

.secondary-btn:hover {
    background-color: var(--border-outer);
}

/* --- 6. SERVICES (BENTO GRID) --- */

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 4rem;
}

.section-title {
    margin: 0;
}

.header-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start; /* Boxes are only as big as needed for their list */
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.bento-item {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--easing-fluid);
    height: fit-content; /* Hug content height exactly */
}

.bento-item:hover {
    transform: translateY(-8px);
}

.bento-desc {
    color: var(--text-secondary);
    margin: 1rem 0 2rem;
    font-size: 0.875rem;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--border-outer);
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.price-list li .price {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--text-primary);
}

/* --- 6.5 GALLERY --- */
.gallery-subtitle {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-outer);
}

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

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 250px;
        gap: 2rem;
    }
}

.gallery-item {
    width: 100%;
    height: 100%;
}

.gallery-item.large-span {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(3rem - 0.75rem); /* Match inner core radius for image */
    transition: transform 0.5s var(--easing-fluid);
}

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

.gallery-item .image-shell {
    padding: 0.75rem;
    border-radius: 3rem;
    overflow: hidden;
    position: relative;
    display: flex; /* prevents baseline gap */
}

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

.hidden-gallery-item.visible {
    display: block;
    animation: fadeInScale 0.6s var(--easing-fluid) forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-expand-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* --- 7. ABOUT & CONTACT --- */

/* Editorial Split */
.editorial-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .editorial-split {
        grid-template-columns: 1fr 1fr;
    }
}

.editorial-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.editorial-visual {
    width: 100%;
    aspect-ratio: 3 / 2;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-top: 0.25rem;
}

.info-item strong {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.map-core {
    padding: 0;
    overflow: hidden;
    min-height: 400px;
}

.map-core iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reviews Slider */
.reviews-placeholder {
    margin-top: 2rem;
    text-align: center;
}

.reviews-placeholder h3 {
    margin-bottom: 2rem;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.review-slider-inner {
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 280px; /* Pre-allocates height to prevent layout shifts */
}

.stars {
    color: #FFB800;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    transition: opacity 0.3s ease;
}

.review-text-wrap {
    margin: 0 0 2rem 0;
    padding: 0;
    width: 100%;
}

.review-text {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-primary);
    transition: opacity 0.3s ease;
    max-width: 680px;
    margin: 0 auto;
}

.review-author {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--text-secondary);
    font-style: normal;
    display: block;
    transition: opacity 0.3s ease;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: var(--border-outer);
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s var(--easing-fluid), background-color 0.3s var(--easing-fluid);
}

.review-dot.active {
    background-color: var(--accent-primary);
    transform: scale(1.3);
}

.review-dot:hover {
    background-color: var(--text-secondary);
}

@media (max-width: 768px) {
    .review-slider-inner {
        padding: 3rem 1.5rem;
        min-height: 320px;
    }
    
    .review-text {
        font-size: 1.25rem;
    }
}

/* --- 8. FLOATING BOOK CTA --- */

.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-pill);
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 32px -4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s var(--easing-fluid), opacity 0.3s var(--easing-fluid), box-shadow 0.3s var(--easing-fluid);
    will-change: transform, opacity;
}

.floating-cta i {
    font-size: 1.25rem;
}

.floating-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.25);
    color: var(--bg-primary);
}

.floating-cta:active {
    transform: scale(0.97);
}

/* Hide CTA when hero booking button is visible */
.floating-cta.hero-visible {
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
}

/* Collapse to icon-only on small screens */
@media (max-width: 480px) {
    .floating-cta {
        padding: 1rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .floating-cta-label {
        display: none;
    }
}

/* --- 9. PREMIUM GALLERY LIGHTBOX --- */
.gallery-img {
    cursor: pointer;
}

body.lightbox-open {
    overflow: hidden !important;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 600ms var(--easing-fluid);
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background-color: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: -1;
    transition: background-color 0.5s var(--easing-fluid);
}

/* Adjust dark theme backdrop to be slightly darker for higher contrast */
[data-theme="dark"] .lightbox-backdrop {
    background-color: rgba(5, 5, 5, 0.85);
}

.lightbox-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    box-sizing: border-box;
}

/* Lightbox Header (Top Action Bar) */
.lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1010;
}

.lightbox-caption {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.lightbox-counter {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    background-color: var(--border-outer);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
}

.lightbox-close-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-outer);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-ambient);
    transition: transform 0.3s var(--easing-fluid), background-color 0.3s var(--easing-fluid), border-color 0.3s var(--easing-fluid);
}

.lightbox-close-btn:hover {
    transform: scale(1.08) rotate(90deg);
    background-color: var(--border-outer);
    border-color: var(--text-primary);
}

/* Image Stage */
.lightbox-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Navigation Buttons */
.lightbox-nav-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-outer);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-ambient);
    transition: transform 0.3s var(--easing-fluid), background-color 0.3s var(--easing-fluid), border-color 0.3s var(--easing-fluid);
    z-index: 1010;
    flex-shrink: 0;
}

.lightbox-nav-btn:hover {
    transform: scale(1.1);
    background-color: var(--border-outer);
    border-color: var(--text-primary);
}

.lightbox-nav-btn:active {
    transform: scale(0.95);
}

/* Double-Bezel Lightbox Frame */
.lightbox-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 3rem;
    overflow: hidden;
    position: relative;
    transition: transform 0.6s var(--easing-fluid);
    
    /* Shrink-wrap to wrap image borders nicely with consistent margins */
    width: auto;
    height: auto;
    max-width: min(900px, 85vw);
    max-height: 70vh;
    min-width: 280px;
    min-height: 280px;
}

.lightbox-overlay:not(.active) .lightbox-frame {
    transform: scale(0.92);
}

.lightbox-image-wrapper {
    background-color: var(--bg-secondary);
    border-radius: calc(3rem - 0.75rem);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-inset);
    
    /* Auto wrap */
    width: 100%;
    height: 100%;
}

/* Lightbox Image */
#lightbox-img {
    display: block;
    max-width: min(900px, 85vw);
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: calc(3rem - 0.75rem);
    transition: transform 0.5s var(--easing-fluid), opacity 0.3s ease;
    cursor: zoom-in;
    will-change: transform, transform-origin;
}

#lightbox-img.magnified {
    transform: scale(2.2);
    cursor: zoom-out;
    transition: transform 0.3s var(--easing-fluid);
}

/* Swipe-slide animation cues */
@keyframes slideInRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.lightbox-slide-right {
    animation: slideInRight 0.4s var(--easing-fluid) forwards;
}

.lightbox-slide-left {
    animation: slideInLeft 0.4s var(--easing-fluid) forwards;
}

/* Mobile Responsiveness for Lightbox */
@media (max-width: 768px) {
    .lightbox-container {
        padding: 1rem;
    }

    .lightbox-header {
        margin-bottom: 1rem;
    }

    .lightbox-caption {
        font-size: 1.25rem;
    }

    .lightbox-stage {
        gap: 0;
    }

    .lightbox-frame {
        width: auto;
        height: auto;
        max-width: 90vw;
        max-height: 60vh;
        min-width: 200px;
        min-height: 200px;
        border-radius: 2rem;
        padding: 0.5rem;
    }

    .lightbox-image-wrapper {
        border-radius: calc(2rem - 0.5rem);
    }

    #lightbox-img {
        max-width: 90vw;
        max-height: 60vh;
        border-radius: calc(2rem - 0.5rem);
    }

    /* Move navigation buttons to overlay on top of image on mobile */
    .lightbox-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
        background: rgba(253, 251, 247, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    [data-theme="dark"] .lightbox-nav-btn {
        background: rgba(5, 5, 5, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lightbox-nav-btn.prev {
        left: 1rem;
    }

    .lightbox-nav-btn.next {
        right: 1rem;
    }

    .lightbox-nav-btn:hover {
        transform: translateY(-50%) scale(1.05);
    }
}

@media (max-width: 480px) {
    .lightbox-caption {
        display: none; /* Hide caption on very small screens to make space for counter */
    }

    .lightbox-header {
        justify-content: flex-end;
        gap: 1.5rem;
    }

    /* On tiny devices, hide arrow buttons to avoid clutter; swipe handles navigation */
    .lightbox-nav-btn {
        display: none;
    }
}

/* --- 10. PREMIUM TREATWELL BOOKING MODAL --- */
body.booking-open {
    overflow: hidden !important;
}

.booking-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 600ms var(--easing-fluid);
}

.booking-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.booking-backdrop {
    position: absolute;
    inset: 0;
    background-color: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: -1;
    transition: background-color 0.5s var(--easing-fluid);
}

[data-theme="dark"] .booking-backdrop {
    background-color: rgba(5, 5, 5, 0.85);
}

.booking-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    box-sizing: border-box;
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Action Bar */
.booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1010;
}

.booking-caption {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.booking-close-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-outer);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-ambient);
    transition: transform 0.3s var(--easing-fluid), background-color 0.3s var(--easing-fluid), border-color 0.3s var(--easing-fluid);
}

.booking-close-btn:hover {
    transform: scale(1.08) rotate(90deg);
    background-color: var(--border-outer);
    border-color: var(--text-primary);
}

/* Stage Frame (Center Iframe Wrapper) */
.booking-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: 0; /* Important for scroll container behavior */
}

/* Double-Bezel luxury frame matching site aesthetic */
.booking-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: var(--radius-outer);
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--easing-fluid);
    box-sizing: border-box;
}

.booking-overlay:not(.active) .booking-frame {
    transform: scale(0.95);
}

/* Brand Booking Dashboard Styling */
.booking-portal-content {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-inner);
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-inset);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    overflow-y: auto;
}

/* Brand Section */
.booking-portal-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.booking-portal-logo {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(210, 140, 157, 0.2));
    animation: cb-pulse-gentle 4s var(--easing-fluid) infinite;
    transition: filter 0.4s var(--easing-fluid);
}

/* Color adjustment for light/dark logos */
[data-theme="light"] .booking-portal-logo {
    filter: brightness(0) saturate(100%) invert(67%) sepia(16%) saturate(1280%) hue-rotate(303deg) brightness(98%) contrast(92%);
}

[data-theme="dark"] .booking-portal-logo {
    filter: brightness(0) saturate(100%) invert(78%) sepia(16%) saturate(1148%) hue-rotate(303deg) brightness(102%) contrast(92%);
}

@keyframes cb-pulse-gentle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.booking-portal-brand h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.booking-portal-brand p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: 480px;
    line-height: 1.5;
}

/* Features Grid */
.booking-portal-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 860px;
}

@media (min-width: 768px) {
    .booking-portal-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

.booking-feature-item {
    background-color: var(--bg-glass);
    border: 1px solid var(--border-outer);
    padding: 2.25rem 1.5rem;
    border-radius: var(--radius-inner);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    transition: transform 0.4s var(--easing-fluid), border-color 0.4s var(--easing-fluid), box-shadow 0.4s var(--easing-fluid);
    box-shadow: var(--shadow-ambient);
}

.booking-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 32px rgba(210, 140, 157, 0.12);
}

.booking-feature-item i {
    font-size: 2.25rem;
    color: var(--accent-primary);
    transition: transform 0.4s var(--easing-fluid);
}

.booking-feature-item:hover i {
    transform: scale(1.08);
}

.booking-feature-item strong {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.booking-feature-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Actions Section */
.booking-portal-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.booking-portal-btn {
    padding: 1.15rem 2.25rem !important;
    font-size: 0.9rem !important;
    min-width: 290px;
    box-shadow: 0 8px 24px rgba(210, 140, 157, 0.2);
}

.booking-phone-alternative {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-phone-link {
    color: var(--accent-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s var(--easing-fluid), transform 0.3s var(--easing-fluid);
}

.booking-phone-link:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* Mobile responsive styling for booking panel */
@media (max-width: 768px) {
    .booking-container {
        padding: 1rem;
    }

    .booking-caption {
        font-size: 1.35rem;
    }

    .booking-frame {
        border-radius: 1.5rem;
        padding: 0.5rem;
    }

    .booking-portal-content {
        padding: 2rem 1.25rem;
        gap: 2rem;
        border-radius: calc(1.5rem - 0.5rem);
    }
    
    .booking-portal-logo {
        width: 3.5rem;
        height: 3.5rem;
    }

    .booking-portal-brand h3 {
        font-size: 1.5rem;
    }

    .booking-portal-brand p {
        font-size: 0.85rem;
    }

    .booking-feature-item {
        padding: 1.25rem;
        gap: 1rem;
        flex-direction: row;
        text-align: left;
        align-items: center;
        border-radius: 1rem;
    }

    .booking-feature-item i {
        font-size: 1.75rem;
        flex-shrink: 0;
    }

    .booking-feature-item strong {
        font-size: 0.95rem;
        margin-bottom: 0.15rem;
    }

    .booking-feature-item p {
        font-size: 0.75rem;
    }
}


