/* ==========================================================================
   MUCO GUESTHOUSE, v15
   Light editorial rebuild. Geist for headings, Inter Tight for body and UI,
   Playfair Display italic reserved for single accent words.
   Self-hosted, no third party font requests.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Type faces, self-hosted
   -------------------------------------------------------------------------- */

@font-face {
	font-family: "Geist";
	src: url("../fonts/geist/Geist-Variable.woff2") format("woff2-variations"),
		 url("../fonts/geist/Geist-Variable.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter Tight";
	src: url("../fonts/inter-tight/InterTight-Variable.woff2") format("woff2-variations"),
		 url("../fonts/inter-tight/InterTight-Variable.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter Tight";
	src: url("../fonts/inter-tight/InterTight-Variable-Italic.woff2") format("woff2-variations"),
		 url("../fonts/inter-tight/InterTight-Variable-Italic.woff2") format("woff2");
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Playfair Display";
	src: url("../fonts/playfair-display/PlayfairDisplay-500Italic.woff2") format("woff2");
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Playfair Display";
	src: url("../fonts/playfair-display/PlayfairDisplay-600Italic.woff2") format("woff2");
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Design tokens
   -------------------------------------------------------------------------- */

:root {
	/* Palette, unchanged brand values, light ground */
	--ivory: #FBFAF6;
	--champagne: #F3EDE1;
	--champagne-deep: #EAE1CC;
	--ink: #24211B;
	--ink-soft: #5D5749;
	--ink-faint: #8C8573;
	--airbnb-red: #FF385C;
	--airbnb-red-deep: #E31C5F;
	--airbnb-red-soft: #FFE1E8;
	--line: #E8E2D3;
	--white: #FFFFFF;

	/* Type faces */
	--font-heading: "Geist", -apple-system, "Segoe UI", sans-serif;
	--font-body: "Inter Tight", -apple-system, "Segoe UI", sans-serif;
	--font-accent: "Playfair Display", Georgia, serif;

	/* Type scale, fluid via clamp, tuned to the requested measures */
	--fs-small: clamp(0.8125rem, 0.79rem + 0.1vw, 0.875rem);
	--fs-body: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
	--fs-lead: clamp(1.125rem, 1.06rem + 0.3vw, 1.3125rem);
	--fs-h3: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
	--fs-h2: clamp(1.75rem, 1.45rem + 1.4vw, 2.5rem);
	--fs-h1: clamp(2.25rem, 1.7rem + 2.6vw, 3.75rem);

	/* Line height, per the editorial spec */
	--lh-heading-tight: 1.08;
	--lh-heading: 1.12;
	--lh-heading-loose: 1.15;
	--lh-body: 1.7;
	--lh-small: 1.55;

	/* Letter spacing, negative for headings, near neutral for body */
	--ls-h1: -0.03em;
	--ls-h2: -0.025em;
	--ls-h3: -0.02em;
	--ls-h4: -0.015em;
	--ls-body: -0.01em;
	--ls-small: -0.005em;
	--ws-body: 0.02em;

	/* 8px spacing rhythm */
	--sp-1: 8px;
	--sp-2: 16px;
	--sp-3: 24px;
	--sp-4: 32px;
	--sp-5: 40px;
	--sp-6: 48px;
	--sp-7: 56px;
	--sp-8: 64px;
	--sp-10: 80px;
	--sp-12: 96px;
	--sp-16: 128px;

	/* Paragraph rhythm, roughly 1.35x line height at body size */
	--sp-paragraph: var(--sp-5);

	/* Measure */
	--measure-body: 68ch;
	--measure-lead: 56ch;
	--measure-heading: 20ch;

	/* Surfaces */
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--shadow-card: 0 1px 2px rgba(36, 33, 27, 0.04), 0 12px 32px -16px rgba(36, 33, 27, 0.16);
	--shadow-card-hover: 0 1px 2px rgba(36, 33, 27, 0.05), 0 20px 48px -18px rgba(36, 33, 27, 0.22);
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* --------------------------------------------------------------------------
   3. Reset
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
body { margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
button { background: none; border: 0; cursor: pointer; }
a { text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* --------------------------------------------------------------------------
   4. Global typography system
   Every element in this rule set is intentional: rendering quality,
   kerning, ligatures, optical sizing, measure, rhythm, and weight ceiling
   apply everywhere, including form controls, which do not inherit type
   settings from body by default in any browser.
   -------------------------------------------------------------------------- */

html {
	font-size: 100%;
	background: var(--ivory);
}

body,
input, textarea, select, button {
	font-family: var(--font-body);
	font-size: var(--fs-body);
	font-weight: 350;
	font-style: normal;
	color: var(--ink);
	line-height: var(--lh-body);
	letter-spacing: var(--ls-body);
	word-spacing: var(--ws-body);

	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-kerning: normal;
	font-optical-sizing: auto;
	font-variant-ligatures: common-ligatures contextual discretionary-ligatures;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1, "calt" 1, "dlig" 1;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--ink);
	margin: 0 0 var(--sp-3);
	font-weight: 600;
	line-height: var(--lh-heading);
	letter-spacing: var(--ls-h4);
	text-wrap: balance;
	hyphens: none;
	font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

h1 { font-size: var(--fs-h1); font-weight: 500; line-height: var(--lh-heading-tight); letter-spacing: var(--ls-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); letter-spacing: var(--ls-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-heading-loose); letter-spacing: var(--ls-h3); }

p {
	margin: 0 0 var(--sp-paragraph);
	max-width: var(--measure-body);
	text-wrap: pretty;
	orphans: 3;
	widows: 3;
	hyphens: auto;
	-webkit-hyphens: auto;
}
p:last-child { margin-bottom: 0; }
p em, li em { font-style: italic; }
strong, b { font-weight: 600; }

small, .text-small, .form-notice, figcaption {
	font-size: var(--fs-small);
	line-height: var(--lh-small);
	letter-spacing: var(--ls-small);
}

/* Form controls do not inherit body typography automatically, restore it. */
input, textarea, select, button, .btn {
	letter-spacing: var(--ls-body);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-kerning: normal;
	font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

table {
	width: 100%;
	border-collapse: collapse;
	font-variant-numeric: tabular-nums;
}
th, td {
	font-family: var(--font-body);
	font-weight: 400;
	letter-spacing: var(--ls-body);
	text-align: left;
	padding: var(--sp-2) var(--sp-3);
	border-bottom: 1px solid var(--line);
}
th { font-weight: 500; color: var(--ink-soft); }

em.accent, .accent {
	font-family: var(--font-accent);
	font-style: italic;
	font-weight: 500;
}

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.skip-link {
	position: absolute; left: var(--sp-2); top: -80px;
	background: var(--ink); color: var(--ivory);
	padding: var(--sp-2) var(--sp-3); border-radius: var(--radius-sm);
	z-index: 200; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--sp-2); }

:focus-visible {
	outline: 2px solid var(--airbnb-red-deep);
	outline-offset: 3px;
	border-radius: var(--radius-sm);
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-3); }
.narrow { max-width: 760px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   5. Sections and rhythm
   -------------------------------------------------------------------------- */

.section { padding: var(--sp-8) 0; background: var(--ivory); }
.section-champagne { background: var(--champagne); }
.section-cta { background: var(--ink); }
.section-cta h2, .section-cta p { color: var(--ivory); }
.section-cta .accent { color: var(--airbnb-red-soft); }

.section-head { margin-bottom: var(--sp-5); max-width: var(--measure-lead); }
.section-head h2 { max-width: var(--measure-heading); }
.section-sub { color: var(--ink-soft); font-size: var(--fs-lead); max-width: var(--measure-lead); }
.section-foot { margin-top: var(--sp-6); }

.link-arrow {
	font-weight: 500;
	color: var(--airbnb-red-deep);
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
	transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.link-arrow:hover { color: var(--ink); }
.link-arrow::after { content: "\2192"; margin-left: var(--sp-1); }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.site-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

/* Its own container, corner to corner, not the site's 1200px wrap, so
   logo, nav and the booking button share the full viewport width. */
.header-inner {
	display: flex; align-items: center; gap: var(--sp-3);
	min-height: 64px;
	padding: 0 var(--sp-3);
}
.brand { display: flex; align-items: center; color: var(--ink); flex-shrink: 0; }
.brand-logo, .brand .custom-logo-link img {
	height: 40px;
	width: auto;
	display: block;
	flex-shrink: 0;
}

.site-nav { margin-left: auto; min-width: 0; }
.nav-list {
	display: flex; align-items: center; flex-wrap: nowrap;
	gap: var(--sp-4);
	overflow-x: auto;
	scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list a {
	color: var(--ink-soft); font-weight: 400; font-size: 0.9375rem;
	letter-spacing: var(--ls-body); white-space: nowrap;
	transition: color 0.2s var(--ease);
}
.nav-list a:hover, .nav-list a:focus-visible { color: var(--ink); }

.nav-toggle { display: none; width: 40px; height: 40px; position: relative; flex-shrink: 0; }
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
	content: ""; position: absolute; left: 8px; right: 8px; height: 2px; background: var(--ink); border-radius: 2px;
	transition: transform 0.2s var(--ease);
}
.nav-toggle-bar { top: 19px; }
.nav-toggle-bar::before { top: -7px; }
.nav-toggle-bar::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
	.header-inner { min-height: 52px; padding: 0 var(--sp-2); gap: var(--sp-2); }
	.brand-logo, .brand .custom-logo-link img { height: 28px; }
	.nav-toggle { display: block; }
	.site-nav {
		position: fixed; inset: 52px 0 0 0; background: var(--ivory);
		margin-left: 0;
		padding: var(--sp-6) var(--sp-3);
		transform: translateX(100%); transition: transform 0.25s var(--ease);
		overflow-y: auto;
	}
	.site-nav.is-open { transform: translateX(0); }
	.nav-list { flex-direction: column; align-items: flex-start; flex-wrap: nowrap; overflow: visible; gap: var(--sp-3); }
	.nav-list a { font-size: 1.125rem; white-space: normal; }
}

/* --------------------------------------------------------------------------
   7. Buttons
   -------------------------------------------------------------------------- */

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-1);
	font-family: var(--font-body); font-weight: 600; font-size: 1rem;
	letter-spacing: var(--ls-body);
	padding: 14px 24px;
	border-radius: 8px;
	transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
	white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
	background: var(--airbnb-red); color: #FFFFFF; border: none;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--airbnb-red-deep); color: #FFFFFF; }
.btn-ghost {
	background: #FFFFFF; color: var(--ink); border: 1px solid #DDDDDD;
}
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--ink); background: #FAFAFA; }
.btn-line {
	color: var(--airbnb-red); border: 1px solid var(--airbnb-red-soft);
	background: var(--airbnb-red-soft); font-weight: 600;
}
.btn-line:hover, .btn-line:focus-visible { background: var(--airbnb-red); color: #FFFFFF; border-color: var(--airbnb-red); }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5); }
.hero-actions.center { justify-content: center; }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */

.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; opacity: 0;
	animation: hero-fade 30s infinite;
}
.hero-slide:nth-child(1) { animation-delay: -2s; } /* visible immediately on load */
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }
.hero-slide:nth-child(6) { animation-delay: 25s; }
@keyframes hero-fade {
	0%     { opacity: 0; }
	4%     { opacity: 1; }
	12.7%  { opacity: 1; }
	16.7%  { opacity: 0; }
	100%   { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.hero-slide { animation: none; opacity: 0; }
	.hero-slide:first-child { opacity: 1; }
}
/* A gentle bottom vignette for depth only, the photography itself stays clear. */
.hero-media::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(180deg, rgba(36,33,27,0) 45%, rgba(36,33,27,0.38) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-panel {
	max-width: 560px;
	background: rgba(251, 250, 246, 0.95);
	backdrop-filter: blur(10px) saturate(160%);
	-webkit-backdrop-filter: blur(10px) saturate(160%);
	border-radius: var(--radius-lg);
	padding: var(--sp-6);
	box-shadow: var(--shadow-card-hover);
	margin: var(--sp-6) 0;
}
.hero-label {
	font-size: var(--fs-small); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
	color: var(--airbnb-red-deep); margin: 0 0 var(--sp-3);
}
.hero-title { max-width: var(--measure-heading); margin-bottom: var(--sp-3); }
.hero-title em { font-family: var(--font-accent); font-style: italic; font-weight: 500; color: var(--airbnb-red-deep); }
.hero-tagline { font-family: var(--font-accent); font-style: italic; font-size: var(--fs-lead); color: var(--ink-soft); margin-bottom: var(--sp-4); }
.hero-copy { font-size: var(--fs-lead); color: var(--ink-soft); max-width: var(--measure-lead); }

@media (max-width: 720px) {
	.hero { min-height: 92vh; }
	.hero-panel { max-width: 100%; margin: var(--sp-10) 0 var(--sp-5); padding: var(--sp-5); }
}

/* --------------------------------------------------------------------------
   9. At a glance strip
   -------------------------------------------------------------------------- */

.glance { padding: var(--sp-8) 0; }
.glance-grid {
	display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-3);
}
.glance-card {
	background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-card);
	padding: var(--sp-4) var(--sp-2); text-align: center;
	display: flex; flex-direction: column; align-items: center; gap: 2px;
	transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.glance-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.glance-icon {
	width: 40px; height: 40px; border-radius: 50%;
	background: var(--airbnb-red-soft); color: var(--airbnb-red-deep);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: var(--sp-1);
}
.glance-icon svg { width: 20px; height: 20px; }
.glance-card strong {
	font-family: var(--font-heading); font-size: var(--fs-h3);
	font-weight: 600; letter-spacing: var(--ls-h3); color: var(--ink);
}
.glance-card span:last-child { font-size: var(--fs-small); color: var(--ink-soft); letter-spacing: var(--ls-small); }

@media (max-width: 780px) {
	.glance-grid { grid-template-columns: repeat(2, 1fr); }
	.glance-card:nth-child(5) { grid-column: 1 / -1; }
}

/* Reusable scroll reveal. Visible by default, so nothing depends on JS
   running, only once the script confirms it is active does an item
   hide and wait to be revealed, staggered, as it enters the viewport. */
.reveal { opacity: 1; }
.js-ready .reveal {
	opacity: 0; transform: translateY(16px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js-ready .reveal:nth-child(2) { transition-delay: 0.08s; }
.js-ready .reveal:nth-child(3) { transition-delay: 0.16s; }
.js-ready .reveal:nth-child(4) { transition-delay: 0.24s; }
.js-ready .reveal:nth-child(5) { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
	.js-ready .reveal { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   10. Cards, stays grid
   -------------------------------------------------------------------------- */

.card-grid { display: grid; gap: var(--sp-5); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .card-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid-3 { grid-template-columns: 1fr; } }

.stay-card {
	background: var(--white); border-radius: var(--radius-lg);
	overflow: hidden; box-shadow: var(--shadow-card);
	transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
	display: flex; flex-direction: column;
}
.stay-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.stay-card-media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--champagne); }
.stay-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.stay-card:hover .stay-card-media img { transform: scale(1.04); }
.stay-card-body { padding: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-1); flex: 1; }
.stay-card-title, .stay-card-body h3 {
	font-size: 1.125rem; margin-bottom: 2px; text-wrap: balance;
}
.stay-card-detail {
	color: var(--ink-soft); font-size: var(--fs-small); line-height: var(--lh-small);
	margin-bottom: var(--sp-3); max-width: none; hyphens: none;
}
.stay-card-body .btn { margin-top: auto; align-self: flex-start; }

/* --------------------------------------------------------------------------
   11. Split sections
   -------------------------------------------------------------------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; }
.split-reverse { grid-template-columns: 1fr 1fr; }
.split-reverse .split-media { order: 2; }
.split-reverse .split-copy { order: 1; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.split-copy h2 { max-width: var(--measure-heading); }
.split-copy em { font-family: var(--font-accent); font-style: italic; color: var(--airbnb-red-deep); font-weight: 500; }
@media (max-width: 860px) {
	.split { grid-template-columns: 1fr; }
	.split-reverse .split-media, .split-reverse .split-copy { order: initial; }
}

/* Life at Muco, gallery grid, real photography */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 220px;
	gap: var(--sp-3);
}
.gallery-grid figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-feature { grid-row: span 2; grid-column: span 1; }
@media (min-width: 640px) {
	.gallery-feature { grid-column: 1; grid-row: 1 / span 2; }
}
@media (max-width: 640px) {
	.gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
	.gallery-feature { grid-column: 1 / -1; grid-row: span 2; }
}

/* --------------------------------------------------------------------------
   12. Page hero, listings and contact
   -------------------------------------------------------------------------- */

.page-hero { padding: var(--sp-6) 0 var(--sp-4); }
.page-hero h1 { max-width: var(--measure-heading); }
.page-hero h1 em, h2 em { font-family: var(--font-accent); font-style: italic; color: var(--airbnb-red-deep); font-weight: 500; }

/* Real photo variant, every inside page gets one, isolated text card over
   a clear photo, the same contrast approach already proven on the
   homepage hero, no whitewash smeared across the image. */
.page-hero-photo {
	position: relative; overflow: hidden; padding: 0;
	min-height: 380px; display: flex; align-items: center;
}
.page-hero-photo-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-photo-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-photo-media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(36,33,27,0) 45%, rgba(36,33,27,0.4) 100%);
}
.page-hero-photo .wrap { position: relative; z-index: 1; width: 100%; padding-top: var(--sp-8); padding-bottom: var(--sp-8); }
.page-hero-panel {
	max-width: 560px;
	background: rgba(251, 250, 246, 0.95);
	backdrop-filter: blur(10px) saturate(160%);
	-webkit-backdrop-filter: blur(10px) saturate(160%);
	border-radius: var(--radius-lg);
	padding: var(--sp-5);
	box-shadow: var(--shadow-card-hover);
}
@media (max-width: 720px) {
	.page-hero-photo { min-height: 320px; }
	.page-hero-panel { max-width: 100%; padding: var(--sp-4); }
}

/* Freeform page content, whatever a real editor types into a page that
   uses no specific template. Bare links and lists get no styling
   anywhere else in this file, so without this block they would fall back
   to browser defaults, blue underlines and no bullets, on a page that
   otherwise matches this design system everywhere else. */
.entry-thumbnail {
	width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
	margin-bottom: var(--sp-5);
}
.entry-content a { color: var(--airbnb-red-deep); text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover, .entry-content a:focus-visible { color: var(--ink); }
.entry-content ul, .entry-content ol {
	margin: 0 0 var(--sp-paragraph); padding-left: 1.3em; max-width: var(--measure-body);
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: var(--sp-1); }
.entry-content blockquote {
	margin: var(--sp-5) 0; padding: var(--sp-1) 0 var(--sp-1) var(--sp-4);
	border-left: 3px solid var(--airbnb-red); color: var(--ink-soft); font-style: italic;
}
.entry-content img { border-radius: var(--radius-md); box-shadow: var(--shadow-card); height: auto; }
.entry-content figure { margin: var(--sp-5) 0; }
.entry-content figcaption { color: var(--ink-faint); margin-top: var(--sp-1); }
.entry-content hr { border: none; border-top: 1px solid var(--line); margin: var(--sp-6) 0; }
.page-links { margin-top: var(--sp-5); font-size: var(--fs-small); color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   13. Forms
   -------------------------------------------------------------------------- */

.form-wrap { max-width: 560px; margin: 0 auto; }
.contact-form p { max-width: none; margin-bottom: var(--sp-4); }
.contact-form label { display: block; font-weight: 500; font-size: var(--fs-small); color: var(--ink-soft); margin-bottom: var(--sp-1); }
.contact-form input, .contact-form textarea {
	width: 100%; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
	padding: var(--sp-2) var(--sp-3); color: var(--ink); font-size: var(--fs-body);
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus {
	outline: none; border-color: var(--airbnb-red); box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.2);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.hp-field { position: absolute; left: -9999px; }
.form-notice { border-radius: var(--radius-md); padding: var(--sp-3); margin-bottom: var(--sp-5); }
.form-notice-ok { background: #EEF4EA; color: #2F4A28; }
.form-notice-error { background: #F7E9E4; color: #7A3420; }

/* --------------------------------------------------------------------------
   13b. Contact direct details, and guest quote cards
   -------------------------------------------------------------------------- */

.contact-direct {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8);
	text-align: left; max-width: 980px; margin: 0 auto;
}
.contact-direct-block h3 { font-size: 1.0625rem; margin-bottom: var(--sp-2); }
.contact-direct-block p { margin-bottom: var(--sp-2); max-width: none; }
.contact-direct-block a { color: var(--airbnb-red-deep); }
.contact-direct-block a:hover { color: var(--ink); }
@media (max-width: 720px) {
	.contact-direct { grid-template-columns: 1fr; gap: var(--sp-4); }
}

.quote-card {
	background: var(--white); border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card); padding: var(--sp-4); margin: 0;
}
.quote-card blockquote {
	margin: 0 0 var(--sp-3); padding: 0; border: none;
	font-family: var(--font-accent); font-style: italic; font-weight: 500;
	font-size: var(--fs-lead); color: var(--ink); line-height: 1.4;
}
.quote-card figcaption { color: var(--ink-soft); font-size: var(--fs-small); margin-top: 0; }

/* Reviews marquee, slow continuous scroll, real content only */
.reviews-section .section-head { margin-left: auto; margin-right: auto; }
.reviews-marquee {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
	display: flex; gap: var(--sp-4); width: max-content;
	animation: reviews-scroll 75s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.reviews-card { flex: 0 0 340px; }
@keyframes reviews-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.reviews-track { animation: none; overflow-x: auto; }
}
@media (max-width: 640px) {
	.reviews-card { flex-basis: 280px; }
}

/* --------------------------------------------------------------------------
   13c. Amenity lists, proximity lists, and the photo gallery grid
   -------------------------------------------------------------------------- */

.amenity-list { list-style: none; margin: 0; padding: 0; }
.amenity-list li {
	padding: var(--sp-1) 0; border-bottom: 1px solid var(--line);
	color: var(--ink-soft); font-size: 0.9375rem;
}
.amenity-list li:last-child { border-bottom: none; }

.proximity-list { list-style: none; margin: 0; padding: 0; }
.proximity-list li {
	display: flex; justify-content: space-between; align-items: baseline; gap: var(--sp-3);
	padding: var(--sp-2) 0; border-bottom: 1px solid var(--line);
}
.proximity-list li:last-child { border-bottom: none; }
.proximity-place { color: var(--ink); }
.proximity-time { color: var(--airbnb-red-deep); font-weight: 500; white-space: nowrap; font-size: 0.9375rem; }

.photo-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3);
}
.photo-grid figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4 / 3; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.photo-grid figure:hover img { transform: scale(1.04); }
@media (max-width: 720px) {
	.photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--white); border-top: 1px solid var(--line); padding: 2px 0 2px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: var(--sp-6); }
.footer-brand { display: inline-block; }
.footer-logo { height: 32px; width: auto; display: block; }
.footer-brand-est { color: var(--ink-soft); font-size: var(--fs-small); margin-top: var(--sp-2); letter-spacing: 0.02em; }
.footer-tagline { font-family: var(--font-accent); font-style: italic; color: var(--ink-soft); margin-top: var(--sp-3); }
.footer-heading { font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.02em; margin-bottom: var(--sp-2); }
.site-footer a { color: var(--ink-soft); transition: color 0.2s var(--ease); }
.site-footer a:hover { color: var(--airbnb-red-deep); }
.footer-legal { margin-top: var(--sp-5); padding-top: var(--sp-4); border-top: 1px solid var(--line); font-size: var(--fs-small); color: var(--ink-faint); }

.guide-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; cursor: pointer; }
.guide-card .stay-card-media, .guide-card .stay-card-body, .guide-card-title { display: block; }

/* --------------------------------------------------------------------------
   16. Guide pages, generated hero art, numbered sections
   -------------------------------------------------------------------------- */

.guide-hero {
	position: relative; overflow: hidden;
	padding: var(--sp-10) 0 var(--sp-8);
}
.guide-hero-p0 { background: linear-gradient(120deg, var(--champagne) 0%, var(--airbnb-red-soft) 100%); }
.guide-hero-p1 { background: linear-gradient(120deg, var(--ivory) 0%, var(--champagne-deep) 100%); }
.guide-hero-p2 { background: linear-gradient(120deg, var(--airbnb-red-soft) 0%, var(--champagne) 100%); }
.guide-hero-motif {
	position: absolute; right: -4%; top: 50%; transform: translateY(-50%) rotate(-8deg);
	width: 380px; height: 380px;
	color: var(--airbnb-red);
	opacity: 0.14;
	pointer-events: none;
}
.guide-hero .wrap { position: relative; z-index: 1; }
.guide-hero h1 { max-width: 22ch; margin-bottom: var(--sp-2); }
.guide-dek {
	font-size: var(--fs-lead); color: var(--ink-soft);
	max-width: var(--measure-lead); margin-bottom: 0;
}
.guide-breadcrumb {
	display: flex; align-items: center; gap: var(--sp-1);
	font-size: var(--fs-small); color: var(--ink-soft);
	margin-bottom: var(--sp-3);
}
.guide-breadcrumb a { color: var(--airbnb-red-deep); }
.guide-breadcrumb a:hover { color: var(--ink); }

.guide-sections {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4);
}
.guide-section-card {
	background: var(--white); border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card); padding: var(--sp-5);
	transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.guide-section-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.guide-section-num {
	display: inline-block;
	font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-small);
	color: var(--airbnb-red); letter-spacing: 0.06em;
	border: 1px solid var(--airbnb-red-soft); border-radius: 999px;
	padding: 2px 10px; margin-bottom: var(--sp-3);
}
.guide-section-card h2 { font-size: var(--fs-h3); margin-bottom: var(--sp-2); }
.guide-section-card p { color: var(--ink-soft); margin-bottom: 0; max-width: none; }

@media (max-width: 980px) {
	.guide-sections { grid-template-columns: repeat(2, 1fr); }
	.guide-sections .guide-section-card:nth-child(3):last-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
	.guide-sections { grid-template-columns: 1fr; }
	.guide-hero-motif { width: 240px; height: 240px; right: -18%; opacity: 0.1; }
	.guide-hero { padding: var(--sp-8) 0 var(--sp-6); }
}

/* FAQ accordion, native details/summary, no JS needed */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); padding: var(--sp-3) 0; }
.faq-item summary {
	cursor: pointer; font-weight: 500; color: var(--ink); font-size: 1.0625rem;
	display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
	list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+"; font-family: var(--font-heading); font-size: 1.5rem; color: var(--airbnb-red);
	flex-shrink: 0; transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: var(--sp-2); margin-bottom: 0; color: var(--ink-soft); max-width: none; }

/* --------------------------------------------------------------------------
   15. Floating WhatsApp and the sticky mobile booking bar
   -------------------------------------------------------------------------- */

.whatsapp-float {
	position: fixed; right: var(--sp-3); bottom: var(--sp-3); z-index: 90;
	width: 56px; height: 56px; border-radius: 50%;
	background: #25D366; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 16px rgba(0,0,0,0.22);
	transition: transform 0.2s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.06); }

.sticky-book-bar {
	display: none;
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
	background: var(--white); border-top: 1px solid var(--line);
	padding: var(--sp-2) var(--sp-3);
	gap: var(--sp-2);
	box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
.sticky-book-bar .btn { flex: 1 1 0; padding: 12px 16px; font-size: 0.9375rem; }

@media (max-width: 720px) {
	.sticky-book-bar { display: flex; }
	body { padding-bottom: 80px; }
	.whatsapp-float { bottom: 84px; width: 48px; height: 48px; }
	.whatsapp-float svg { width: 24px; height: 24px; }
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: var(--sp-4); } }
