:root {
    --forest-950: #0b1511;
    --forest-900: #101d18;
    --forest-800: #172a22;
    --forest-700: #28483b;
    --sage-500: #75917f;
    --sage-200: #dce5df;
    --cream: #f5f1e9;
    --paper: #fbfaf7;
    --white: #ffffff;
    --ink: #19201c;
    --muted: #667069;
    --gold: #d2a35d;
    --gold-light: #efd2a3;
    --line: rgba(25, 32, 28, .12);
    --shadow: 0 24px 70px rgba(13, 25, 20, .14);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1180px;
    --header-h: 82px;
    --transition: 280ms cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 118px 0; }
.section-dark { color: var(--white); background: var(--forest-950); }

.scroll-progress {
    position: fixed; inset: 0 0 auto; height: 3px; z-index: 2000; background: transparent;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-h);
    color: var(--white); transition: background var(--transition), box-shadow var(--transition), color var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
    color: var(--ink); background: rgba(251, 250, 247, .9); box-shadow: 0 10px 35px rgba(14, 27, 21, .08); backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
    width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%;
    color: var(--gold-light); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
}
.site-header.scrolled .brand-mark { color: var(--forest-700); background: var(--cream); border-color: var(--line); }
.brand-mark svg { width: 27px; stroke-width: 1.4; }
.brand-mark svg path:first-child { fill: currentColor; opacity: .22; }
.brand span:last-child { display: grid; line-height: 1.1; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; letter-spacing: .01em; }
.brand small { margin-top: 5px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; opacity: .72; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.desktop-nav a { font-size: 13px; font-weight: 700; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: currentColor; transition: right var(--transition); }
.desktop-nav a:hover::after { right: 0; }

.button {
    border: 0; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 54px; padding: 0 24px; cursor: pointer; font-weight: 800; font-size: 14px; letter-spacing: .01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; }
.button-primary { color: var(--forest-950); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 14px 35px rgba(210, 163, 93, .28); }
.button-primary:hover { box-shadow: 0 18px 45px rgba(210, 163, 93, .4); }
.button-ghost { color: var(--white); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.32); backdrop-filter: blur(10px); }
.button-outline { color: var(--forest-800); background: transparent; border: 1px solid rgba(23,42,34,.28); }
.button-outline:hover { color: var(--white); background: var(--forest-800); border-color: var(--forest-800); }
.button-small { min-height: 44px; padding: 0 19px; font-size: 12px; color: var(--forest-950); background: var(--gold-light); }
.button-full { width: 100%; }
.button-large { min-height: 60px; padding: 0 31px; }
.site-header.scrolled .header-cta { color: var(--white); background: var(--forest-800); }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; margin-left: auto; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 1.5px; margin: 4px auto; background: currentColor; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { position: relative; min-height: 780px; height: 100svh; max-height: 980px; color: var(--white); overflow: hidden; }
.hero-media, .final-cta-media {
    position: absolute; inset: 0; background-position: center; background-size: cover; transform: scale(1.02);
}
.hero-media { background-image: url("https://a0.muscache.com/im/pictures/hosting/Hosting-1703914788039625027/original/24521b85-3223-4847-ba48-c3abcfe66a25.jpeg?im_w=720"), url("../assets/images/fallback.svg"); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,15,11,.87) 0%, rgba(6,15,11,.58) 49%, rgba(6,15,11,.35) 100%), linear-gradient(0deg, rgba(6,15,11,.62), transparent 45%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: grid; grid-template-columns: 1.34fr .66fr; gap: 72px; align-items: center; padding-top: var(--header-h); }
.hero-copy { max-width: 760px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { color: var(--gold-light); }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 0 rgba(239,210,163,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(239,210,163,0); } 100% { box-shadow: 0 0 0 0 rgba(239,210,163,0); } }
.hero h1 { max-width: 760px; margin: 24px 0 24px; font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: clamp(54px, 5.8vw, 88px); line-height: .98; letter-spacing: -.045em; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-copy > p { max-width: 680px; margin: 0; color: rgba(255,255,255,.82); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 27px; margin-top: 46px; }
.hero-proof div { min-width: 93px; padding-left: 17px; border-left: 1px solid rgba(255,255,255,.24); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; }
.hero-proof span { color: rgba(255,255,255,.62); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }

.booking-card { padding: 27px; color: var(--ink); background: rgba(251,250,247,.94); border: 1px solid rgba(255,255,255,.4); border-radius: var(--radius-md); box-shadow: 0 28px 85px rgba(0,0,0,.3); backdrop-filter: blur(18px); }
.booking-card-head { display: grid; margin-bottom: 21px; }
.booking-card-head span { color: var(--muted); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }
.booking-card-head strong { margin-top: 3px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.booking-card label { display: grid; gap: 7px; margin-bottom: 11px; }
.booking-card label > span { font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.booking-card input, .booking-card select { width: 100%; height: 51px; padding: 0 13px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 11px; outline: none; }
.booking-card input:focus, .booking-card select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(210,163,93,.12); }
.secure-note { display: flex; align-items: flex-start; gap: 9px; margin-top: 16px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.secure-note svg { width: 18px; min-width: 18px; color: var(--forest-700); }
.scroll-hint { position: absolute; z-index: 3; left: 50%; bottom: 24px; transform: translateX(-50%); display: grid; justify-items: center; gap: 5px; color: rgba(255,255,255,.7); background: transparent; border: 0; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
.scroll-hint svg { width: 20px; animation: bounce 1.8s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.trust-strip { position: relative; z-index: 4; margin-top: -1px; color: var(--white); background: var(--forest-900); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 108px; display: flex; align-items: center; gap: 14px; padding: 22px 30px; border-right: 1px solid rgba(255,255,255,.09); }
.trust-grid > div:first-child { border-left: 1px solid rgba(255,255,255,.09); }
.trust-icon { width: 38px; height: 38px; display: grid; place-items: center; color: var(--gold-light); border: 1px solid rgba(239,210,163,.3); border-radius: 50%; }
.trust-grid p { margin: 0; display: grid; }
.trust-grid strong { font-size: 13px; }
.trust-grid small { color: rgba(255,255,255,.55); font-size: 10px; }

.split-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: center; }
.section-kicker { color: var(--gold); }
.section h2, .final-cta h2 { margin: 16px 0 22px; font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: clamp(40px, 4.4vw, 62px); line-height: 1.05; letter-spacing: -.035em; }
.section p { color: var(--muted); }
.section .lead { color: var(--ink); font-size: 19px; }
.feature-list { display: grid; gap: 22px; margin-top: 35px; }
.feature-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 17px; }
.feature-list > div > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--gold); border: 1px solid rgba(210,163,93,.4); border-radius: 50%; font-family: Georgia, "Times New Roman", serif; font-size: 13px; }
.feature-list p { margin: 0; display: grid; }
.feature-list strong { color: var(--ink); font-size: 14px; }
.feature-list small { margin-top: 3px; color: var(--muted); }
.experience-visual { position: relative; min-height: 650px; }
.experience-visual::before { content: ""; position: absolute; inset: 28px -24px -28px 30px; z-index: -1; border: 1px solid rgba(210,163,93,.45); border-radius: 220px 220px 30px 30px; }
.experience-visual img { width: 100%; height: 650px; object-fit: cover; border-radius: 220px 220px 30px 30px; box-shadow: var(--shadow); }
.floating-note { position: absolute; right: -25px; bottom: 48px; display: grid; padding: 17px 22px; color: var(--white); background: rgba(16,29,24,.92); border-left: 3px solid var(--gold); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.floating-note span { color: var(--gold-light); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.floating-note strong { font-family: Georgia, "Times New Roman", serif; font-size: 19px; }

.section-heading { max-width: 720px; margin-bottom: 53px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p { max-width: 630px; margin: 0; }
.section-dark .section-heading p, .section-dark p { color: rgba(255,255,255,.61); }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.highlight-card { min-height: 312px; padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); transition: transform var(--transition), border-color var(--transition), background var(--transition); }
.highlight-card:hover { transform: translateY(-8px); border-color: rgba(239,210,163,.33); background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.03)); }
.icon-box { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 45px; color: var(--gold-light); border: 1px solid rgba(239,210,163,.25); border-radius: 50%; }
.icon-box svg { width: 25px; }
.highlight-card h3 { margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 500; }
.highlight-card p { margin: 0; font-size: 13px; }

.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 270px; gap: 13px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 17px; background: var(--forest-900); cursor: zoom-in; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.22,1,.36,1), opacity var(--transition); }
.gallery-item::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(4,11,8,.7)); }
.gallery-item span { position: absolute; z-index: 2; left: 19px; right: 19px; bottom: 16px; color: var(--white); text-align: left; font-size: 12px; font-weight: 700; }
.gallery-item:hover img { transform: scale(1.06); }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); margin: 48px 0 63px; border-block: 1px solid var(--line); }
.stats-row div { display: grid; justify-items: center; padding: 30px; border-right: 1px solid var(--line); }
.stats-row div:last-child { border-right: 0; }
.stats-row strong { font-family: Georgia, "Times New Roman", serif; font-size: 42px; color: var(--forest-700); line-height: 1; }
.stats-row span { margin-top: 8px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.amenities-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.amenities-image img { width: 100%; height: 530px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.amenities-list > div { display: flex; align-items: center; gap: 13px; min-height: 82px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.amenities-list svg { width: 25px; color: var(--gold); }
.amenities-list span { font-size: 13px; font-weight: 700; }

.ratings-section { color: var(--white); background: linear-gradient(135deg, var(--forest-800), var(--forest-950)); }
.ratings-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.rating-stars { display: block; color: var(--gold-light); letter-spacing: .18em; font-size: 15px; }
.rating-main > strong { display: block; margin-top: 16px; font-family: Georgia, "Times New Roman", serif; font-size: 82px; line-height: .9; }
.rating-main h2 { font-size: 46px; }
.rating-main p { color: rgba(255,255,255,.65); }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 15px; color: var(--gold-light); font-weight: 800; font-size: 13px; }
.text-link span { transition: transform var(--transition); }
.text-link:hover span { transform: translateX(5px); }
.rating-bars { display: grid; gap: 22px; }
.rating-bars > div { display: grid; grid-template-columns: 120px 1fr 37px; gap: 14px; align-items: center; }
.rating-bars span, .rating-bars strong { font-size: 12px; }
.rating-bars i { height: 3px; overflow: hidden; background: rgba(255,255,255,.15); border-radius: 10px; }
.rating-bars b { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.location-section { background: var(--cream); }
.location-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: center; }
.check-list { display: grid; gap: 13px; margin: 29px 0 32px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: var(--ink); font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 19px; height: 19px; display: grid; place-items: center; color: var(--white); background: var(--forest-700); border-radius: 50%; font-size: 10px; }
.map-wrap { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 520px; border: 0; filter: saturate(.72) contrast(.95); }
.map-label { position: absolute; left: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; padding: 12px 16px; color: var(--white); background: rgba(11,21,17,.9); border-radius: 999px; font-size: 11px; font-weight: 800; backdrop-filter: blur(12px); }
.map-label span { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 5px rgba(210,163,93,.18); }

.host-section { padding-top: 0; background: var(--cream); }
.host-card { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; padding: 40px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 18px 50px rgba(12,23,18,.08); }
.host-avatar { width: 88px; height: 88px; display: grid; place-items: center; color: var(--gold-light); background: var(--forest-800); border-radius: 50%; font-family: Georgia, "Times New Roman", serif; font-size: 38px; }
.host-copy h2 { margin: 7px 0 8px; font-size: 34px; }
.host-copy p { margin: 0; font-size: 13px; }
.host-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 13px; color: var(--muted); font-size: 11px; }
.host-meta strong { color: var(--ink); }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 95px; align-items: start; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font-weight: 800; font-size: 15px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--gold); font-size: 22px; transition: transform var(--transition); }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -5px 0 24px; padding-right: 45px; font-size: 13px; }

.final-cta { position: relative; min-height: 680px; display: grid; align-items: center; color: var(--white); overflow: hidden; }
.final-cta-media { background-image: url("https://a0.muscache.com/im/pictures/hosting/Hosting-1703914788039625027/original/a9176ccf-732e-494a-b60a-0b488051219b.jpeg?im_w=720"), url("../assets/images/fallback.svg"); }
.final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,16,12,.9), rgba(7,16,12,.45)); }
.final-cta-content { position: relative; z-index: 2; max-width: 760px; margin-left: max(20px, calc((100vw - var(--container)) / 2)); margin-right: 20px; }
.final-cta h2 { max-width: 720px; margin: 18px 0; font-size: clamp(56px, 7vw, 96px); line-height: .95; }
.final-cta p { max-width: 590px; margin: 0 0 30px; color: rgba(255,255,255,.75); font-size: 17px; }
.final-cta small { display: block; margin-top: 14px; color: rgba(255,255,255,.55); font-size: 10px; }

.site-footer { padding: 38px 0 100px; color: rgba(255,255,255,.75); background: var(--forest-950); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 45px; align-items: center; }
.brand-light .brand-mark { color: var(--gold-light); }
.footer-inner p { max-width: 550px; margin: 0 auto; font-size: 10px; text-align: center; }
.back-top { color: var(--gold-light); font-size: 11px; font-weight: 800; }

.mobile-booking-bar { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 3000; display: grid; grid-template-columns: 70px 1fr 70px; align-items: center; visibility: hidden; opacity: 0; color: var(--white); background: rgba(4,9,7,.96); transition: opacity var(--transition), visibility var(--transition); }
.lightbox.open { visibility: visible; opacity: 1; }
.lightbox figure { margin: 0; display: grid; justify-items: center; gap: 14px; }
.lightbox img { max-width: min(1080px, 86vw); max-height: 79vh; border-radius: 13px; box-shadow: 0 25px 90px rgba(0,0,0,.5); }
.lightbox figcaption { color: rgba(255,255,255,.68); font-size: 12px; }
.lightbox-close, .lightbox-nav { border: 0; background: transparent; color: var(--white); cursor: pointer; }
.lightbox-close { position: absolute; top: 22px; right: 27px; width: 48px; height: 48px; font-size: 38px; font-weight: 200; }
.lightbox-nav { height: 100%; font-size: 52px; color: rgba(255,255,255,.68); }
.lightbox-nav:hover { color: var(--gold-light); }

.toast { position: fixed; z-index: 4000; left: 50%; bottom: 30px; transform: translate(-50%, 30px); padding: 12px 18px; color: var(--white); background: var(--forest-950); border-radius: 999px; opacity: 0; visibility: hidden; font-size: 12px; box-shadow: var(--shadow); transition: var(--transition); }
.toast.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms cubic-bezier(.22,1,.36,1), transform 800ms cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
    :root { --container: 930px; }
    .desktop-nav { gap: 19px; }
    .hero-content { grid-template-columns: 1fr 340px; gap: 35px; }
    .hero h1 { font-size: clamp(52px, 6.4vw, 72px); }
    .trust-grid > div { padding: 20px 17px; }
    .split-layout { gap: 55px; }
    .highlight-grid { grid-template-columns: 1fr 1fr; }
    .highlight-card { min-height: 270px; }
    .gallery-grid { grid-auto-rows: 230px; }
    .ratings-layout { gap: 60px; }
    .location-layout { gap: 45px; }
}

@media (max-width: 860px) {
    :root { --header-h: 72px; }
    .container { width: min(100% - 32px, var(--container)); }
    .section { padding: 88px 0; }
    .desktop-nav, .header-cta { display: none; }
    .menu-toggle { display: block; }
    .site-header.scrolled .menu-toggle { background: var(--cream); }
    .mobile-menu { position: fixed; inset: var(--header-h) 0 auto; display: grid; gap: 0; padding: 12px 18px 20px; color: var(--ink); background: rgba(251,250,247,.98); border-top: 1px solid var(--line); box-shadow: 0 18px 40px rgba(10,20,15,.12); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: var(--transition); }
    .mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .mobile-menu > a:not(.button) { padding: 14px 6px; border-bottom: 1px solid var(--line); font-weight: 800; font-size: 13px; }
    .mobile-menu .button { margin-top: 15px; }

    .hero { height: auto; min-height: 960px; max-height: none; }
    .hero-content { display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 40px; padding-top: 120px; padding-bottom: 80px; }
    .hero-copy { max-width: 680px; }
    .hero h1 { font-size: clamp(53px, 10vw, 78px); }
    .booking-card { max-width: 590px; }
    .scroll-hint { display: none; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid > div:nth-child(2) { border-right: 0; }
    .trust-grid > div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.09); }
    .trust-grid > div { min-height: 90px; }
    .split-layout, .amenities-layout, .ratings-layout, .location-layout, .faq-layout { grid-template-columns: 1fr; }
    .split-layout { gap: 65px; }
    .experience-visual { width: min(100%, 620px); min-height: 580px; }
    .experience-visual img { height: 580px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
    .gallery-item:first-child { grid-row: span 1; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .stats-row div:nth-child(2) { border-right: 0; }
    .stats-row div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .amenities-image img { height: 480px; }
    .ratings-layout, .location-layout, .faq-layout { gap: 55px; }
    .host-card { grid-template-columns: auto 1fr; }
    .host-card > .button { grid-column: 1 / -1; justify-self: stretch; }
    .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 600px) {
    .container { width: min(100% - 24px, var(--container)); }
    .section { padding: 74px 0; }
    .brand strong { font-size: 16px; }
    .brand small { font-size: 8px; }
    .brand-mark { width: 38px; height: 38px; }
    .hero { min-height: 910px; }
    .hero-media { background-position: 58% center; }
    .hero-overlay { background: linear-gradient(0deg, rgba(6,15,11,.94) 0%, rgba(6,15,11,.68) 70%, rgba(6,15,11,.4) 100%); }
    .hero-content { padding-top: 105px; padding-bottom: 55px; }
    .eyebrow { font-size: 9px; }
    .hero h1 { margin: 18px 0; font-size: clamp(46px, 14.5vw, 65px); }
    .hero-copy > p { font-size: 15px; }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 32px; }
    .hero-proof div { min-width: 0; }
    .booking-card { padding: 21px; }
    .booking-card-head strong { font-size: 21px; }
    .form-grid { grid-template-columns: 1fr; gap: 0; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-grid > div { border-left: 1px solid rgba(255,255,255,.09) !important; border-right: 1px solid rgba(255,255,255,.09) !important; border-bottom: 1px solid rgba(255,255,255,.09); }
    .trust-grid > div:last-child { border-bottom: 0; }
    .section h2 { font-size: 40px; }
    .section .lead { font-size: 17px; }
    .feature-list > div { grid-template-columns: 38px 1fr; }
    .feature-list > div > span { width: 36px; height: 36px; }
    .experience-visual { min-height: 480px; }
    .experience-visual img { height: 480px; border-radius: 140px 140px 24px 24px; }
    .experience-visual::before { inset: 18px -8px -17px 18px; border-radius: 140px 140px 24px 24px; }
    .floating-note { right: 8px; bottom: 24px; }
    .highlight-grid { grid-template-columns: 1fr; }
    .highlight-card { min-height: 245px; }
    .icon-box { margin-bottom: 35px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 290px; }
    .gallery-item.gallery-wide { grid-column: span 1; }
    .stats-row div { padding: 24px 12px; }
    .stats-row strong { font-size: 36px; }
    .amenities-image img { height: 390px; border-radius: var(--radius-md); }
    .amenities-list { grid-template-columns: 1fr; }
    .amenities-list > div { min-height: 67px; }
    .rating-main > strong { font-size: 70px; }
    .rating-main h2 { font-size: 39px; }
    .rating-bars > div { grid-template-columns: 95px 1fr 32px; gap: 9px; }
    .map-wrap, .map-wrap iframe { min-height: 430px; height: 430px; }
    .host-card { grid-template-columns: 1fr; padding: 27px; }
    .host-avatar { width: 70px; height: 70px; }
    .host-copy h2 { font-size: 31px; }
    .faq-layout { gap: 20px; }
    .accordion summary { font-size: 14px; }
    .final-cta { min-height: 650px; align-items: end; padding-bottom: 90px; }
    .final-cta-overlay { background: linear-gradient(0deg, rgba(7,16,12,.94), rgba(7,16,12,.35)); }
    .final-cta h2 { font-size: 57px; }
    .final-cta-content { margin: 0 18px; }
    .final-cta .button { width: 100%; }
    .site-footer { padding-bottom: 120px; }
    .mobile-booking-bar { position: fixed; z-index: 1300; left: 9px; right: 9px; bottom: 9px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 10px 10px 15px; color: var(--white); background: rgba(11,21,17,.95); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; box-shadow: 0 18px 50px rgba(0,0,0,.3); backdrop-filter: blur(18px); transform: translateY(130%); transition: transform var(--transition); }
    .mobile-booking-bar.visible { transform: translateY(0); }
    .mobile-booking-bar > div { display: grid; line-height: 1.2; }
    .mobile-booking-bar strong { font-family: Georgia, "Times New Roman", serif; font-size: 14px; }
    .mobile-booking-bar span { margin-top: 3px; color: rgba(255,255,255,.6); font-size: 9px; }
    .mobile-booking-bar .button { min-height: 44px; padding: 0 17px; font-size: 11px; }
    .lightbox { grid-template-columns: 45px 1fr 45px; }
    .lightbox img { max-width: 86vw; max-height: 70vh; }
    .lightbox-nav { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}


/* Contato, anfitrião e redes sociais */
.host-avatar-photo { position: relative; overflow: visible; background: #fff; padding: 4px; }
.host-avatar-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.host-badge { position: absolute; right: -2px; bottom: 2px; display: grid; place-items: center; width: 30px; height: 30px; border: 3px solid #fff; border-radius: 50%; color: #fff; background: #e61e4d; font-weight: 800; }
.host-social-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.button-whatsapp { color: #fff; background: #1faa59; border-color: #1faa59; }
.button-whatsapp:hover { background: #188c48; border-color: #188c48; }
.footer-center { display: grid; gap: 12px; justify-items: center; }
.footer-center p { max-width: 550px; }
.footer-socials { display: flex; gap: 18px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.footer-socials a:hover { color: var(--sand-300); }
.back-top { color: inherit; background: none; border: 0; padding: 8px 0; cursor: pointer; font: inherit; }
.whatsapp-float { position: fixed; z-index: 1450; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; min-height: 54px; padding: 0 17px 0 14px; color: #fff; background: #1faa59; border-radius: 999px; box-shadow: 0 14px 35px rgba(0,0,0,.28); font-size: 12px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(0,0,0,.34); }
.whatsapp-float svg { width: 27px; height: 27px; fill: currentColor; }
@media (max-width: 767px) {
  .host-card { align-items: center; }
  .host-airbnb { width: 100%; }
  .host-social-actions .button { flex: 1 1 140px; }
  .whatsapp-float { right: 14px; bottom: 86px; width: 54px; min-height: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .toast { bottom: 154px; max-width: calc(100% - 30px); text-align: center; }
}

/* Correção da navegação da galeria no celular */
@media (max-width: 767px) {
  .lightbox {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 76px 14px 42px;
  }

  .lightbox figure {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .lightbox img {
    width: 100%;
    max-width: 100%;
    max-height: 68vh;
    object-fit: contain;
  }

  .lightbox-nav {
    position: fixed;
    z-index: 3;
    top: 50%;
    width: 48px;
    height: 64px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(4, 9, 7, .48);
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
    font-size: 42px;
    line-height: 1;
  }

  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }

  .lightbox-close {
    position: fixed;
    z-index: 4;
    top: 58px;
    right: 12px;
  }

  .lightbox figcaption {
    max-width: calc(100vw - 110px);
    text-align: center;
  }
}
