/* ═══════════════════════════════════════════════════
   SERENECATIONS · Option 3
   Aesthetic: Moody Boutique Hotel
   Palette: Deep Forest Green + Warm Terracotta
   Fonts: Playfair Display + Jost
   ═══════════════════════════════════════════════════ */

:root {
    --bg:           #1a1e18;        /* deep forest night */
    --bg-alt:       #141712;
    --bg-section:   #1e231b;
    --bg-dark:      #111410;
    --surface:      #242920;
    --border:       rgba(255,248,235,0.07);
    --border-mid:   rgba(255,248,235,0.13);
    --text:         #f5f0e8;        /* warm cream */
    --text-mid:     #a89f8c;
    --text-faint:   #6a6358;
    --accent:       #c27b52;        /* terracotta */
    --accent-hover: #d48f65;
    --accent-dim:   rgba(194,123,82,0.12);
    --green:        #4a5e3a;        /* forest */
    --green-light:  #7a9060;
    --nav-h:        72px;
    --radius:       6px;
    --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'Jost', system-ui, sans-serif;
    --grain-opacity: 0.035;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
}
em { font-style: italic; }

/* Global grain texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: var(--grain-opacity);
    mix-blend-mode: overlay;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; }

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.85s var(--ease-out) var(--d, 0s),
                transform 0.85s var(--ease-out) var(--d, 0s);
}
.reveal-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease-out) var(--d, 0s),
                transform 0.7s var(--ease-out) var(--d, 0s);
}
.reveal.revealed, .reveal-up.revealed {
    opacity: 1; transform: translateY(0);
}

/* ══════════════════════════════════
   FLOATING + BACK TO TOP
══════════════════════════════════ */
.floating-airbnb {
    position: fixed;
    bottom: 84px; right: 24px;
    z-index: 900;
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 24px rgba(194,123,82,0.35);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}
.floating-airbnb:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(194,123,82,0.45);
}
.back-to-top {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 900;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-mid);
    color: var(--text-mid);
    font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s, color 0.2s, border-color 0.2s;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { color: var(--accent); border-color: var(--accent); }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.top-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 800;
    height: var(--nav-h);
    transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.top-nav.scrolled {
    background: rgba(20, 23, 18, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--border);
}
.nav-inner {
    max-width: 1240px; margin: 0 auto;
    padding: 0 40px; height: 100%;
    display: flex; align-items: center; gap: 40px;
}
.logo {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text);
    flex-shrink: 0;
}
.nav-links {
    display: flex; gap: 32px;
    margin-left: auto;
}
.nav-links a {
    font-size: 12px; font-weight: 300;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
    flex-shrink: 0;
    padding: 9px 22px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 100px;
    font-size: 11px; font-weight: 400;
    letter-spacing: 0.14em; text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--accent); color: #fff; }

.nav-hamburger {
    display: none;
    flex-direction: column; justify-content: space-between;
    width: 24px; height: 14px;
    background: none; border: none; cursor: pointer;
    margin-left: auto;
}
.nav-hamburger span {
    display: block; height: 1px;
    background: var(--text-mid);
    transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
    display: none; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 24px 40px 32px; gap: 20px;
}
.mobile-menu a { font-size: 14px; color: var(--text-mid); letter-spacing: 0.06em; }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .mobile-cta { color: var(--accent); font-weight: 400; margin-top: 6px; }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
    position: relative;
    height: 100svh; min-height: 640px;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.0); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10,12,8,0.2) 0%,
        rgba(10,12,8,0.55) 55%,
        rgba(10,12,8,0.88) 100%
    );
}
.hero-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.04; pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1240px; margin: 0 auto;
    padding: 0 40px 48px;
    width: 100%;
}
.hero-eyebrow {
    display: flex; align-items: center;
    gap: 14px;
    font-size: 11px; font-weight: 300;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(255,248,235,0.5);
    margin-bottom: 20px;
}
.eyebrow-line {
    display: block; flex: 1; max-width: 48px;
    height: 1px; background: rgba(255,248,235,0.25);
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(54px, 8vw, 108px);
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 40px;
    display: flex; flex-direction: column;
}
.hero-title em {
    color: var(--accent);
    display: block;
}
.hero-title-sub {
    font-size: clamp(22px, 3vw, 38px);
    color: rgba(245,240,232,0.55);
    margin-top: 8px;
}
.btn-hero {
    display: inline-flex; align-items: center;
    padding: 14px 36px;
    background: transparent;
    border: 1px solid rgba(255,248,235,0.35);
    color: var(--text);
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 12px; font-weight: 300;
    letter-spacing: 0.18em; text-transform: uppercase;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.btn-hero:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Hero bottom bar */
.hero-bar {
    position: relative; z-index: 2;
    display: flex; align-items: stretch;
    background: rgba(20,23,18,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
}
.hero-bar-item {
    flex: 1; padding: 18px 32px;
    display: flex; flex-direction: column; gap: 4px;
}
.bar-label {
    font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-faint);
}
.bar-val {
    font-family: var(--font-serif);
    font-size: 15px; color: var(--text);
}
.hero-bar-divider {
    width: 1px; background: var(--border);
    margin: 12px 0;
}

/* ══════════════════════════════════
   INTRO QUOTE
══════════════════════════════════ */
.intro-quote {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 56px 40px;
}
.intro-quote-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: flex-start; gap: 20px;
}
.quote-mark {
    font-family: var(--font-serif);
    font-size: 80px; line-height: 0.6;
    color: var(--accent); opacity: 0.4;
    flex-shrink: 0; margin-top: 8px;
}
.intro-quote-inner p {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.2vw, 26px);
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.6;
    max-width: 680px;
}

/* ══════════════════════════════════
   SECTIONS
══════════════════════════════════ */
.section {
    padding: 100px 0;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
}
.section-dark {
    background: var(--bg-dark);
}
.section-inner {
    max-width: 1240px; margin: 0 auto;
    padding: 0 40px;
}
.section-label {
    font-size: 10px; letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 40px;
    display: flex; align-items: center; gap: 12px;
}
.section-label::after {
    content: '';
    display: block; flex: 1; max-width: 60px;
    height: 1px; background: var(--accent); opacity: 0.4;
}
.section-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}
.section-layout-flip {
    grid-template-columns: 1.6fr 1fr;
}
.section-layout-flip .section-text { order: 2; }
.section-layout-flip .section-gallery { order: 1; }

.section-text h2 {
    font-size: clamp(32px, 3.5vw, 52px);
    color: var(--text);
    margin-bottom: 20px;
}
.section-text h2 em { color: var(--accent); display: block; }
.section-text p {
    font-size: 15px; color: var(--text-mid);
    line-height: 1.85; margin-bottom: 28px;
}
.section-detail {
    display: flex; flex-wrap: wrap; gap: 8px 14px;
    font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-faint);
}
.section-detail span:not(:last-child)::after { content: '·'; margin-left: 14px; }

/* room list */
.room-list { display: flex; flex-direction: column; gap: 0; }
.room-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.room-name {
    font-family: var(--font-serif);
    font-size: 15px; color: var(--text);
}
.room-beds { font-size: 12px; color: var(--text-faint); letter-spacing: 0.04em; }

/* distance list */
.distance-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.distance-item {
    display: flex; align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    gap: 8px;
}
.dist-place { font-size: 14px; color: var(--text); white-space: nowrap; }
.dist-dots {
    flex: 1;
    border-bottom: 1px dotted var(--text-faint);
    margin: 0 8px;
    opacity: 0.3;
}
.dist-time {
    font-family: var(--font-serif); font-style: italic;
    font-size: 14px; color: var(--accent);
    white-space: nowrap;
}

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.featured-gallery {
    display: grid;
    grid-template-columns: 1fr 88px;
    gap: 10px; align-items: start;
}
.featured-main {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    cursor: zoom-in;
}
.featured-main-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: opacity 0.18s ease, transform 0.7s var(--ease);
}
.featured-main:hover .featured-main-img { transform: scale(1.03); }
.gallery-num {
    position: absolute; bottom: 14px; right: 14px;
    font-family: var(--font-serif);
    font-size: 12px; color: rgba(255,248,235,0.55);
    background: rgba(0,0,0,0.3); backdrop-filter: blur(8px);
    padding: 4px 10px; border-radius: 3px; pointer-events: none;
}
.gnum-cur { color: var(--text); }
.gnum-tot { opacity: 0.5; }

.featured-thumbs {
    display: flex; flex-direction: column; gap: 8px;
    max-height: 440px; overflow-y: auto;
    scrollbar-width: thin; scrollbar-color: var(--border-mid) transparent;
}
.featured-thumb {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    border-radius: 4px; cursor: pointer;
    opacity: 0.35; border: 1.5px solid transparent;
    transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.featured-thumb:hover { opacity: 0.7; transform: scale(1.03); }
.featured-thumb.active { opacity: 1; border-color: var(--accent); }

/* ══════════════════════════════════
   MAP
══════════════════════════════════ */
.section-map {}
.map-container {
    width: 100%; height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    filter: saturate(0.5) brightness(0.7);
    transition: filter 0.4s;
}
.map-container:hover { filter: saturate(0.8) brightness(0.9); }

/* ══════════════════════════════════
   FULL BLEED DIVIDER
══════════════════════════════════ */
.bleed-divider {
    position: relative;
    height: 380px; overflow: hidden;
}
.bleed-divider img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05);
    transition: transform 12s ease-in-out;
}
.bleed-divider:hover img { transform: scale(1.0); }
.bleed-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,12,8,0.75) 0%, rgba(10,12,8,0.3) 60%, rgba(10,12,8,0.1) 100%);
}
.bleed-text {
    position: absolute;
    top: 50%; left: 40px;
    transform: translateY(-50%);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(24px, 3.5vw, 44px);
    color: rgba(245,240,232,0.75);
    max-width: 460px;
    line-height: 1.25;
    z-index: 2;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
    position: relative;
    min-height: 520px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.footer-bg { position: absolute; inset: 0; }
.footer-bg img { width: 100%; height: 100%; object-fit: cover; }
.footer-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(8,10,6,0.6), rgba(8,10,6,0.92));
}
.footer-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.04; pointer-events: none;
}
.footer-inner {
    position: relative; z-index: 2;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 24px;
    padding: 80px 40px;
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 13px; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--accent);
}
.footer-headline {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 72px);
    color: var(--text); line-height: 1.1;
}
.footer-headline em { color: var(--accent); }
.btn-footer {
    display: inline-flex; align-items: center;
    padding: 14px 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 12px; font-weight: 300;
    letter-spacing: 0.15em; text-transform: uppercase;
    box-shadow: 0 4px 24px rgba(194,123,82,0.3);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-footer:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(194,123,82,0.45);
}
.footer-copy {
    font-size: 11px; letter-spacing: 0.12em;
    color: var(--text-faint);
}

/* ══════════════════════════════════
   LIGHTBOX
══════════════════════════════════ */
.lightbox {
    position: fixed; inset: 0; z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-backdrop {
    position: absolute; inset: 0;
    background: rgba(6,8,5,0.95);
    backdrop-filter: blur(12px);
}
.lightbox-img-wrap { position: relative; z-index: 2; }
.lightbox-img {
    max-width: 88vw; max-height: 86vh;
    object-fit: contain; border-radius: var(--radius);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.lightbox-close, .lightbox-arrow {
    position: absolute; z-index: 3;
    background: rgba(255,248,235,0.08);
    border: 1px solid rgba(255,248,235,0.12);
    color: rgba(255,248,235,0.7); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}
.lightbox-close:hover, .lightbox-arrow:hover {
    background: rgba(255,248,235,0.16); color: #fff;
}
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; }
.lightbox-arrow { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    z-index: 3; font-size: 11px; letter-spacing: 0.15em;
    color: rgba(255,248,235,0.35);
}

/* ══════════════════════════════════
   CHAT
══════════════════════════════════ */
#chat-bubble-wrapper {
    position: fixed; bottom: 144px; right: 24px;
    z-index: 8000;
    display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.chat-tooltip {
    background: var(--surface);
    border: 1px solid var(--border-mid);
    color: var(--text-mid); font-size: 12px;
    letter-spacing: 0.04em;
    padding: 7px 14px; border-radius: 100px;
    white-space: nowrap; pointer-events: none;
    opacity: 0; transition: opacity 0.4s;
}
.chat-bubble-btn {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-mid);
    color: var(--text-mid); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}
.chat-bubble-btn:hover {
    background: var(--accent); border-color: var(--accent);
    color: #fff; transform: scale(1.06);
}
.chat-window {
    position: absolute; bottom: 60px; right: 0;
    width: 330px;
    background: var(--bg-dark);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    display: flex; flex-direction: column;
    opacity: 0; transform: translateY(10px) scale(0.97); pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    transform-origin: bottom right;
}
.chat-window.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.chat-header {
    padding: 14px 16px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--green); color: var(--text);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 14px;
}
.chat-header-title { display: block; font-size: 13px; color: var(--text); }
.chat-header-subtitle { display: block; font-size: 10px; letter-spacing: 0.1em; color: var(--text-faint); }
.chat-header-close {
    width: 28px; height: 28px; background: none; border: none;
    color: var(--text-faint); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: color 0.2s, background 0.2s;
}
.chat-header-close:hover { color: var(--text); background: var(--surface); }
.chat-messages {
    flex: 1; padding: 14px; overflow-y: auto; max-height: 270px;
    display: flex; flex-direction: column; gap: 10px;
    scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.chat-msg { display: flex; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
    max-width: 82%; padding: 10px 14px;
    font-size: 13px; line-height: 1.55; color: var(--text);
}
.chat-msg.bot  .chat-bubble { background: var(--surface); border-radius: 12px; border-bottom-left-radius: 3px; }
.chat-msg.user .chat-bubble { background: var(--accent); color: #fff; border-radius: 12px; border-bottom-right-radius: 3px; }
.chat-typing { padding: 8px 14px; display: flex; gap: 5px; align-items: center; }
.chat-typing span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--text-faint);
    animation: typeDot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typeDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30%            { transform: translateY(-6px); opacity: 1; }
}
.chat-input-row {
    display: flex; align-items: flex-end; gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid var(--border);
    background: var(--surface);
}
#chatInput {
    flex: 1; background: var(--bg-dark);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius);
    padding: 8px 12px; color: var(--text);
    font-family: var(--font-sans); font-size: 13px; font-weight: 300;
    resize: none; outline: none; max-height: 100px;
    transition: border-color 0.2s;
}
#chatInput::placeholder { color: var(--text-faint); }
#chatInput:focus { border-color: var(--accent); }
#chatSend {
    width: 34px; height: 34px;
    background: var(--accent); color: #fff;
    border: none; cursor: pointer; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}
#chatSend:hover { background: var(--accent-hover); transform: scale(1.05); }
#chatSend:disabled { opacity: 0.3; cursor: default; transform: none; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
    .section-layout, .section-layout-flip {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .section-layout-flip .section-text { order: unset; }
    .section-layout-flip .section-gallery { order: unset; }
    .hero-bar { flex-wrap: wrap; }
    .hero-bar-item { flex: 1 1 45%; border-bottom: 1px solid var(--border); }
    .hero-bar-divider { display: none; }
}

@media (max-width: 768px) {
    :root { --nav-h: 60px; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-inner { gap: 0; }
    .logo { margin-right: auto; }
    .hero-content { padding: 0 24px 40px; }
    .section-inner { padding: 0 24px; }
    .bleed-text { left: 24px; font-size: 22px; }
    .intro-quote { padding: 40px 24px; }
    .intro-quote-inner p { font-size: 18px; }
    .featured-gallery { grid-template-columns: 1fr; }
    .featured-thumbs {
        flex-direction: row; max-height: none;
        overflow-x: auto; overflow-y: visible; padding-bottom: 4px;
    }
    .featured-thumb { width: 88px; height: 66px; flex-shrink: 0; }
    .hero-bar-item { flex: 1 1 100%; }
    .bleed-divider { height: 260px; }
    .footer-inner { padding: 60px 24px; }
    .chat-window { width: 295px; }
    .floating-airbnb span { display: none; }
    .floating-airbnb { padding: 12px; border-radius: 50%; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 48px; }
    .section-text h2 { font-size: 30px; }
    .footer-headline { font-size: 38px; }
}

/* ══════════════════════════════════
   UPDATED & NEW STYLES v2
══════════════════════════════════ */

/* BRAND LOGO in nav — more prominent */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 16px; font-weight: 700;
    color: #fff; flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-serif);
    font-size: 20px; font-weight: 500;
    letter-spacing: 0.06em; color: var(--text);
}
.nav-cta { display: flex; align-items: center; gap: 7px; }

/* FLOATING RESERVE — upper left */
.floating-reserve {
    position: fixed;
    top: 18px; left: 18px;
    z-index: 850;
    display: flex; align-items: center; gap: 8px;
    padding: 9px 18px;
    background: var(--accent);
    color: #fff; border-radius: 100px;
    font-size: 12px; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(194,123,82,0.4);
    opacity: 0; transform: translateX(-8px);
    transition: opacity 0.35s, transform 0.35s, background 0.2s;
    pointer-events: none;
}
.floating-reserve.visible { opacity: 1; transform: translateX(0); pointer-events: all; }
.floating-reserve:hover { background: var(--accent-hover); }

/* BACK TO TOP — bottom LEFT */
.back-to-top {
    position: fixed;
    bottom: 24px; left: 24px; right: auto;
}

/* HERO BRAND NAME */
.hero-brand {
    font-family: var(--font-serif);
    font-size: clamp(13px, 1.5vw, 17px);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,248,235,0.9);
    margin-bottom: 16px;
    font-weight: 500;
}

/* HERO EYEBROW — more visible */
.eyebrow-text {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,248,235,0.85);
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.eyebrow-line { background: rgba(255,248,235,0.45); }

/* HERO TITLE */
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(52px, 8vw, 108px);
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 36px;
    display: flex; flex-direction: column;
}
.hero-title em { color: var(--accent); display: block; }
.hero-title-sub {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.8vw, 36px);
    color: rgba(245,240,232,0.7);
    margin-top: 10px;
    font-style: normal;
}

/* AIRBNB BUTTON */
.btn-airbnb {
    background: #FF385C !important;
    border-color: #FF385C !important;
    color: #fff !important;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 20px rgba(255,56,92,0.35);
}
.btn-airbnb:hover {
    background: #e8314f !important;
    border-color: #e8314f !important;
    box-shadow: 0 8px 28px rgba(255,56,92,0.45);
}

/* HERO RATING */
.hero-rating {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 6px 10px;
    margin-top: 20px;
    padding: 10px 16px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255,248,235,0.12);
    width: fit-content;
}
.hero-stars { color: #FFD700; font-size: 13px; letter-spacing: 1px; }
.hero-rating-score { font-family: var(--font-serif); font-size: 15px; color: var(--text); font-weight: 500; }
.hero-rating-sep { color: rgba(255,248,235,0.3); font-size: 12px; }
.hero-rating-link { font-size: 12px; color: rgba(255,248,235,0.7); letter-spacing: 0.04em; text-decoration: underline; text-underline-offset: 3px; }
.hero-rating-link:hover { color: var(--text); }
.hero-superhost-badge, .hero-guestfav { font-size: 12px; color: rgba(255,248,235,0.8); letter-spacing: 0.04em; }

/* LOCATION CATEGORY CARDS */
.loc-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}
.loc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    transition: border-color 0.25s, transform 0.25s;
}
.loc-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.loc-card-icon { font-size: 24px; margin-bottom: 12px; }
.loc-card-title { font-family: var(--font-serif); font-size: 15px; color: var(--text); margin-bottom: 8px; }
.loc-card-detail { font-size: 12px; color: var(--text-mid); line-height: 1.7; }

/* REVIEWS */
.rating-hero {
    display: flex; align-items: center; gap: 28px;
    margin-bottom: 48px;
    padding: 32px 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.rating-hero-score {
    font-family: var(--font-serif);
    font-size: 72px; font-weight: 400;
    color: var(--text); line-height: 1;
    flex-shrink: 0;
}
.rating-stars-row { font-size: 22px; color: #FFD700; letter-spacing: 2px; margin-bottom: 6px; }
.rating-hero-sub { font-size: 13px; color: var(--text-mid); margin-bottom: 12px; }
.rating-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-superhost, .badge-guestfav {
    padding: 5px 12px; border-radius: 100px;
    font-size: 12px; letter-spacing: 0.04em;
}
.badge-superhost { background: rgba(194,123,82,0.15); border: 1px solid rgba(194,123,82,0.3); color: var(--accent); }
.badge-guestfav  { background: rgba(255,56,92,0.1); border: 1px solid rgba(255,56,92,0.25); color: #FF385C; }

.review-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-bottom: 36px;
}
.review-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px;
    transition: border-color 0.25s;
}
.review-card:hover { border-color: var(--border-mid); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 500; color: #fff;
}
.review-name { font-size: 14px; color: var(--text); font-weight: 400; }
.review-date { font-size: 11px; color: var(--text-faint); }
.review-stars { margin-left: auto; color: #FFD700; font-size: 12px; letter-spacing: 1px; }
.review-text { font-size: 13px; color: var(--text-mid); line-height: 1.7; font-style: italic; }
.review-cta { display: flex; justify-content: center; }

.btn-outline-accent {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px;
    border: 1px solid var(--accent);
    color: var(--accent); border-radius: 100px;
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.08em;
    transition: background 0.25s, color 0.25s;
}
.btn-outline-accent:hover { background: var(--accent); color: #fff; }

/* HOST CARD */
.host-card {
    display: flex; align-items: flex-start; gap: 32px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
    max-width: 700px;
}
.host-avatar-wrap { flex-shrink: 0; }
.host-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--green));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 26px;
    color: #fff; font-weight: 500;
}
.host-name {
    font-family: var(--font-serif); font-size: 22px;
    color: var(--text); margin-bottom: 4px;
}
.host-tagline { font-size: 14px; color: var(--text-mid); margin-bottom: 14px; font-style: italic; }
.host-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.host-badge {
    padding: 5px 12px; border-radius: 100px;
    background: var(--bg-dark); border: 1px solid var(--border-mid);
    font-size: 11px; letter-spacing: 0.06em; color: var(--text-mid);
}
.host-bio { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.host-contact { font-size: 13px; }

/* FAQs */
.faq-header { margin-bottom: 40px; }
.faq-header h2 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 8px; }
.faq-header p { font-size: 14px; color: var(--text-faint); letter-spacing: 0.04em; }

.faq-list { max-width: 800px; }
.faq-group-label {
    font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--accent);
    margin: 28px 0 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.faq-group-label:first-child { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; gap: 16px;
    text-align: left; color: var(--text);
    font-family: var(--font-sans); font-size: 15px; font-weight: 300;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q::after {
    content: '↓'; flex-shrink: 0;
    font-size: 14px; color: var(--text-faint);
    transition: transform 0.3s, color 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(180deg); color: var(--accent); }
.faq-a {
    font-size: 14px; color: var(--text-mid); line-height: 1.8;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 0 20px; }

/* FOOTER SOCIAL */
.footer-social {
    display: flex; align-items: center; gap: 12px;
    margin: 8px 0;
}
.social-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,248,235,0.08);
    border: 1px solid rgba(255,248,235,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,248,235,0.6);
    transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: rgba(255,248,235,0.16); color: #fff; }

/* CHAT — Airbnb colored + label pill */
.chat-bubble-btn {
    background: #FF385C !important;
    border: none !important;
    width: 56px !important; height: 56px !important;
    box-shadow: 0 4px 20px rgba(255,56,92,0.45) !important;
}
.chat-bubble-btn:hover { background: #e8314f !important; transform: scale(1.06); }

.chat-label-pill {
    background: var(--bg-dark);
    border: 1px solid var(--border-mid);
    color: var(--text-mid);
    font-size: 12px; letter-spacing: 0.03em;
    padding: 8px 16px; border-radius: 100px;
    white-space: nowrap; pointer-events: none;
    opacity: 0; transform: translateY(4px);
    transition: opacity 0.4s, transform 0.4s;
    max-width: 220px; text-align: center;
}
.chat-label-pill.show { opacity: 1; transform: translateY(0); }

#chat-bubble-wrapper {
    bottom: 24px; right: 24px;
    align-items: flex-end;
}
.chat-window { bottom: 70px; }
.chat-msg.user .chat-bubble { background: #FF385C; }

/* RESPONSIVE additions */
@media (max-width: 1024px) {
    .loc-cards { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: 1fr; }
    .review-grid .review-card { grid-column: 1; grid-row: auto; }
    .rating-hero { flex-direction: column; gap: 16px; }
}
@media (max-width: 768px) {
    .loc-cards { grid-template-columns: repeat(2, 1fr); }
    .host-card { flex-direction: column; gap: 20px; padding: 28px; }
    .review-grid { grid-template-columns: 1fr; }
    .review-grid .review-card { grid-column: 1; grid-row: auto; }
    .floating-reserve { display: none; }
}
@media (max-width: 480px) {
    .loc-cards { grid-template-columns: 1fr; }
    .hero-rating { border-radius: var(--radius); }
}

/* ══════════════════════════════════
   v3 NEW STYLES
══════════════════════════════════ */

/* HERO BRAND LOCKUP: ——— SERENECATIONS ——— */
.hero-brand-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}
.hero-brand-name {
    font-family: var(--font-serif);
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,248,235,0.95);
    white-space: nowrap;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-brand-line {
    flex: 1; max-width: 80px;
    height: 1px;
    background: rgba(255,248,235,0.4);
}

/* EYEBROW text brighter */
.eyebrow-text {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,248,235,0.9);
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.eyebrow-line { background: rgba(255,248,235,0.45); }

/* HERO BAR LABELS — thicker / more readable */
.bar-label {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,248,235,0.55);
    font-weight: 400;
}
.bar-val {
    font-family: var(--font-serif);
    font-size: 15px;
    color: rgba(255,248,235,0.97);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* HERO TITLE sub line */
.hero-title-sub {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.8vw, 36px);
    color: rgba(245,240,232,0.72);
    margin-top: 10px;
    font-style: normal;
}

/* NAV LOGO */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 16px; font-weight: 700;
    color: #fff; flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-serif);
    font-size: 20px; font-weight: 500;
    letter-spacing: 0.06em; color: var(--text);
}
.nav-cta { display: flex; align-items: center; gap: 7px; }

/* FLOATING RESERVE — upper left */
.floating-reserve {
    position: fixed;
    top: 18px; left: 18px;
    z-index: 850;
    display: flex; align-items: center; gap: 8px;
    padding: 9px 18px;
    background: var(--accent); color: #fff;
    border-radius: 100px;
    font-size: 12px; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(194,123,82,0.4);
    opacity: 0; transform: translateX(-8px);
    transition: opacity 0.35s, transform 0.35s, background 0.2s;
    pointer-events: none;
}
.floating-reserve.visible { opacity: 1; transform: translateX(0); pointer-events: all; }
.floating-reserve:hover { background: var(--accent-hover); }

/* BACK TO TOP — bottom left */
.back-to-top { left: 24px; right: auto; }

/* AIRBNB BUTTON */
.btn-airbnb {
    background: #FF385C !important;
    border-color: #FF385C !important;
    color: #fff !important;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 20px rgba(255,56,92,0.35);
}
.btn-airbnb:hover {
    background: #e8314f !important;
    border-color: #e8314f !important;
    box-shadow: 0 8px 28px rgba(255,56,92,0.45);
}

/* HERO RATING PILL */
.hero-rating {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 6px 10px;
    margin-top: 20px;
    padding: 10px 16px;
    background: rgba(0,0,0,0.32);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    border: 1px solid rgba(255,248,235,0.14);
    width: fit-content;
}
.hero-stars { color: #FFD700; font-size: 13px; letter-spacing: 1px; }
.hero-rating-score { font-family: var(--font-serif); font-size: 15px; color: var(--text); font-weight: 500; }
.hero-rating-sep { color: rgba(255,248,235,0.3); font-size: 12px; }
.hero-rating-link { font-size: 12px; color: rgba(255,248,235,0.75); text-decoration: underline; text-underline-offset: 3px; }
.hero-rating-link:hover { color: var(--text); }
.hero-superhost-badge, .hero-guestfav { font-size: 12px; color: rgba(255,248,235,0.82); letter-spacing: 0.04em; }

/* BEDROOM TABS */
.bedroom-tabs {
    display: flex; gap: 4px;
    margin-bottom: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px;
    width: fit-content;
}
.bed-tab {
    padding: 8px 20px;
    background: none; border: none;
    color: var(--text-faint);
    font-family: var(--font-sans); font-size: 12px;
    font-weight: 400; letter-spacing: 0.08em;
    border-radius: 4px; cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.bed-tab:hover { color: var(--text-mid); }
.bed-tab.active { background: var(--accent); color: #fff; }

/* Active room highlight in list */
.room-item { transition: opacity 0.3s; }
.room-item.active-room .room-name { color: var(--accent); }

/* featured-gallery inside bedroom panels */
.bedroom-panel { display: grid; }

/* LOCATION CARDS */
.loc-cards {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; margin-bottom: 8px;
}
.loc-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 22px 20px;
    transition: border-color 0.25s, transform 0.25s;
}
.loc-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.loc-card-icon { font-size: 24px; margin-bottom: 12px; }
.loc-card-title { font-family: var(--font-serif); font-size: 15px; color: var(--text); margin-bottom: 8px; }
.loc-card-detail { font-size: 12px; color: var(--text-mid); line-height: 1.7; }

/* RATING HERO */
.rating-hero {
    display: flex; align-items: center; gap: 28px;
    margin-bottom: 48px; padding: 32px 36px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius);
}
.rating-hero-score {
    font-family: var(--font-serif); font-size: 72px; font-weight: 400;
    color: var(--text); line-height: 1; flex-shrink: 0;
}
.rating-stars-row { font-size: 22px; color: #FFD700; letter-spacing: 2px; margin-bottom: 6px; }
.rating-hero-sub { font-size: 13px; color: var(--text-mid); margin-bottom: 12px; }
.rating-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-superhost { padding: 5px 12px; border-radius: 100px; font-size: 12px; background: rgba(194,123,82,0.15); border: 1px solid rgba(194,123,82,0.3); color: var(--accent); }
.badge-guestfav  { padding: 5px 12px; border-radius: 100px; font-size: 12px; background: rgba(255,56,92,0.1); border: 1px solid rgba(255,56,92,0.25); color: #FF385C; }

/* REVIEW GRID */
.review-grid { display: grid; grid-template-columns: 1.15fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 20px; margin-bottom: 36px; }
.review-grid .review-card:first-child { grid-column: 1; grid-row: 1 / 3; }
.review-grid .review-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.review-grid .review-card:nth-child(3) { grid-column: 2; grid-row: 2; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 500; color: #fff; font-family: var(--font-serif); }
.review-name { font-size: 14px; color: var(--text); font-weight: 400; }
.review-date { font-size: 11px; color: var(--text-faint); }
.review-stars { margin-left: auto; color: #FFD700; font-size: 12px; letter-spacing: 1px; flex-shrink: 0; }
.review-text { font-size: 13px; color: var(--text-mid); line-height: 1.75; font-style: italic; }
.review-cta { display: flex; justify-content: center; }

.btn-outline-accent {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border: 1px solid var(--accent);
    color: var(--accent); border-radius: 100px;
    font-size: 13px; font-weight: 400; letter-spacing: 0.08em;
    transition: background 0.25s, color 0.25s;
}
.btn-outline-accent:hover { background: var(--accent); color: #fff; }

/* HOST CARD */
.host-card {
    display: flex; align-items: flex-start; gap: 36px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
    max-width: 760px;
}
.host-avatar-wrap { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.host-avatar-photo {
    width: 90px; height: 90px; border-radius: 50%;
    overflow: hidden; border: 3px solid var(--accent);
}
.host-avatar-photo img { width: 100%; height: 100%; object-fit: cover; }
.host-avatar-fallback {
    width: 90px; height: 90px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--green));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 30px; color: #fff;
    border: 3px solid var(--accent);
}
.host-superhost-pill {
    font-size: 10px; letter-spacing: 0.1em;
    padding: 4px 10px; border-radius: 100px;
    background: rgba(194,123,82,0.15); border: 1px solid rgba(194,123,82,0.3);
    color: var(--accent); white-space: nowrap;
}
.host-name { font-family: var(--font-serif); font-size: 24px; color: var(--text); margin-bottom: 4px; }
.host-tagline { font-size: 14px; color: var(--text-mid); font-style: italic; margin-bottom: 16px; }
.host-meta-row {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 16px;
    background: var(--bg-dark); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    width: fit-content;
}
.host-meta-item { padding: 10px 20px; text-align: center; }
.host-meta-num { display: block; font-family: var(--font-serif); font-size: 18px; color: var(--text); }
.host-meta-label { display: block; font-size: 10px; letter-spacing: 0.1em; color: var(--text-faint); text-transform: uppercase; margin-top: 2px; }
.host-meta-divider { width: 1px; background: var(--border); align-self: stretch; }
.host-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.host-badge { padding: 5px 12px; border-radius: 100px; background: var(--bg-dark); border: 1px solid var(--border-mid); font-size: 11px; letter-spacing: 0.06em; color: var(--text-mid); }
.host-bio { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.host-contact { font-size: 13px; }

/* FAQs */
.faq-header { margin-bottom: 40px; }
.faq-header h2 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 8px; }
.faq-header p { font-size: 14px; color: var(--text-faint); letter-spacing: 0.04em; }
.faq-list { max-width: 800px; }
.faq-group-label {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent); margin: 28px 0 4px;
    padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.faq-group-label:first-child { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; gap: 16px; text-align: left;
    color: var(--text); font-family: var(--font-sans);
    font-size: 15px; font-weight: 300; letter-spacing: 0.02em;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q::after { content: '↓'; flex-shrink: 0; font-size: 14px; color: var(--text-faint); transition: transform 0.3s, color 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(180deg); color: var(--accent); }
.faq-a { font-size: 14px; color: var(--text-mid); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 0 20px; }

/* FOOTER SOCIAL */
.footer-social { display: flex; align-items: center; gap: 12px; margin: 8px 0; }
.social-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,248,235,0.08); border: 1px solid rgba(255,248,235,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,248,235,0.6); transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: rgba(255,248,235,0.16); color: #fff; }

/* CHAT — Airbnb red */
#chat-bubble-wrapper { bottom: 24px; right: 24px; align-items: flex-end; }
.chat-window { bottom: 70px; }
.chat-bubble-btn {
    background: #FF385C !important; border: none !important;
    width: 56px !important; height: 56px !important;
    box-shadow: 0 4px 20px rgba(255,56,92,0.45) !important;
}
.chat-bubble-btn:hover { background: #e8314f !important; transform: scale(1.06); }
.chat-msg.user .chat-bubble { background: #FF385C; }
.chat-label-pill {
    background: var(--bg-dark); border: 1px solid var(--border-mid);
    color: var(--text-mid); font-size: 12px; letter-spacing: 0.03em;
    padding: 8px 16px; border-radius: 100px;
    white-space: nowrap; pointer-events: none;
    opacity: 0; transform: translateY(4px);
    transition: opacity 0.4s, transform 0.4s;
    max-width: 230px; text-align: center;
}
.chat-label-pill.show { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .loc-cards { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: 1fr 1fr; }
    .rating-hero { flex-direction: column; gap: 16px; }
    .host-card { gap: 24px; }
}
@media (max-width: 768px) {
    .loc-cards { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: 1fr; }
    .host-card { flex-direction: column; gap: 20px; padding: 28px; }
    .floating-reserve { display: none; }
    .bedroom-tabs { flex-wrap: wrap; }
    .bed-tab { flex: 1; text-align: center; }
    .hero-brand-lockup { padding: 0 20px; }
    .hero-brand-line { max-width: 40px; }
}
@media (max-width: 480px) {
    .loc-cards { grid-template-columns: 1fr; }
    .hero-rating { border-radius: var(--radius); }
    .rating-hero-score { font-size: 54px; }
    .host-meta-row { width: 100%; }
    .host-meta-item { flex: 1; }
}

/* HERO BRAND GROUP — left aligned, no lines, tight vertical */
.hero-brand-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 28px;
}
.hero-brand-name {
    font-family: var(--font-serif);
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,248,235,0.95);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    line-height: 1.2;
}
.hero-brand-location {
    font-family: var(--font-sans);
    font-size: clamp(10px, 1.1vw, 13px);
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,248,235,0.6);
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

/* ══════════════════════════════════
   FIXES — mobile nav-cta squeezing hamburger to 0 width,
   review-grid not collapsing to 1 column on mobile
══════════════════════════════════ */
@media (max-width: 768px) {
    .nav-cta { display: none !important; }
    .review-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
    }
    .review-grid .review-card:first-child,
    .review-grid .review-card:nth-child(2),
    .review-grid .review-card:nth-child(3) {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}
