/**
 * Almost Heaven Escapes — Custom Branding CSS
 *
 * Brand colors, typography, Book Now buttons, review stars,
 * amenity grids, and mobile responsive overrides for the
 * Mountainview child theme.
 *
 * @package Mountainview_Child
 */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Brand Colors)
   ========================================================================== */

:root {
	/* Appalachian mountain-luxury tokens (docs/website-reimagine/REIMAGINE-SPEC.md §2) */
	--paper: #F7F3EC;
	--paper-2: #EDE5D6;
	--ink: #241F19;
	--ink-soft: #574F45;
	--spruce: #2E3A2F;
	--spruce-deep: #1E2720;
	--brass: #A5814E;
	--lake: #5E7B86;
	--stone: #D8CFBE;

	--serif: 'Fraunces', Georgia, serif;
	--sans: 'Inter', system-ui, -apple-system, sans-serif;

	--wrap: 1280px;
	--gutter: clamp(1.25rem, 5vw, 4rem);
	--section: clamp(5rem, 10vw, 9rem);

	/* Legacy aliases — pre-reimagine rules reference these names throughout
	   this file; remapping them here restyles every section at once. */
	--color-forest-green: var(--spruce);
	--color-warm-brown: var(--brass);
	--color-cream: var(--paper);
	--color-stone-gray: var(--ink-soft);
	--color-deep-green: var(--spruce-deep);
	--color-gold-accent: var(--brass);
	--color-forest-green-rgb: 46, 58, 47;
	--color-cream-rgb: 247, 243, 236;

	/* WP global-styles preset (theme.json) — keep block-editor colors on brand */
	--wp--preset--color--primary: var(--spruce);
}

/* ==========================================================================
   2. TYPOGRAPHY — Fraunces (editorial serif display) + Inter (body)
   Enqueued from functions.php via Google Fonts css2 API.
   ========================================================================== */

body {
	font-family: var(--sans);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--ink);
	background-color: var(--paper);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--serif);
	font-weight: 420;
	line-height: 1.12;
	letter-spacing: -0.01em;
	color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.8rem); font-weight: 460; }
h4 { font-size: 1.15rem; font-weight: 500; font-family: var(--sans); letter-spacing: 0; }

.eyebrow {
	font: 600 0.78rem/1 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--brass);
	display: block;
	margin-bottom: 0.9rem;
}

a {
	color: var(--spruce);
}

a:hover,
a:focus {
	color: var(--spruce-deep);
}

/* ==========================================================================
   3. BOOK NOW BUTTON
   Applied to navigation CTA and all Book Now / CTA buttons.
   ========================================================================== */

.menu-cta-button > a,
.btn-book-now,
a.btn-book-now,
button.btn-book-now,
.cta-button-primary,
a.cta-button-primary,
.btn-primary,
a.btn-primary {
	background-color: var(--spruce);
	color: var(--paper);
	border: none;
	padding: 1.05rem 2.4rem;
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	border-radius: 3px;
	box-shadow: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
	text-decoration: none;
	display: inline-block;
	line-height: 1;
}

.menu-cta-button > a:hover,
.menu-cta-button > a:focus,
.btn-book-now:hover,
.btn-book-now:focus,
a.btn-book-now:hover,
a.btn-book-now:focus,
button.btn-book-now:hover,
button.btn-book-now:focus,
.cta-button-primary:hover,
.cta-button-primary:focus,
a.cta-button-primary:hover,
a.cta-button-primary:focus,
.btn-primary:hover,
.btn-primary:focus,
a.btn-primary:hover,
a.btn-primary:focus {
	background-color: var(--spruce-deep);
	color: var(--paper);
	transform: translateY(-2px);
	text-decoration: none;
}

/* Secondary CTA button (Check Availability, View Details, etc.) */
.cta-button-secondary,
a.cta-button-secondary,
.btn-secondary,
a.btn-secondary {
	background-color: transparent;
	color: var(--spruce);
	border: 1px solid currentColor;
	padding: 1rem 2.3rem;
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	border-radius: 3px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	text-decoration: none;
	display: inline-block;
	line-height: 1;
}

.cta-button-secondary:hover,
.cta-button-secondary:focus,
a.cta-button-secondary:hover,
a.cta-button-secondary:focus,
.btn-secondary:hover,
.btn-secondary:focus,
a.btn-secondary:hover,
a.btn-secondary:focus {
	background-color: var(--spruce);
	color: var(--paper);
	text-decoration: none;
}

/* ==========================================================================
   4. HEADER & GLOBAL CHROME
   Deep-spruce masthead, editorial wordmark, no stock body background.
   ========================================================================== */

/* Kill the parent theme's default Alps body-background image. */
body.custom-background {
	background-image: none !important;
	background-color: var(--paper) !important;
}

/* Let the paper background show through the page wrappers. */
#page,
.site,
.site-wrapper,
.site-content,
.content-area {
	background: transparent;
}

/* Masthead: nav strip in deep spruce instead of near-black. */
.main-navigation:before {
	background: var(--spruce-deep);
}

.main-navigation a {
	font-family: var(--sans);
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--paper);
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item > a {
	color: var(--brass);
}

/* Wordmark block: replace the bright-green box with quiet deep spruce. */
.site-branding,
.site-branding.no-logo {
	background: var(--spruce-deep);
	box-shadow: none;
}

.site-branding .site-title {
	font-family: var(--serif);
	font-weight: 420;
	font-size: 1.6rem;
	letter-spacing: 0;
}

.site-branding .site-title a,
.site-branding .site-title a:hover,
.site-branding .site-title a:focus {
	color: var(--paper);
}

.site-branding .site-description {
	font-family: var(--sans);
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: var(--brass);
}

/* Header photo box: warm placeholder while the image paints. */
.site-header .header-image {
	background: var(--paper-2);
}

/* Nav CTA button: paper chip on the dark masthead. */
.menu-cta-button > a {
	background-color: var(--paper);
	color: var(--spruce-deep);
}

.menu-cta-button > a:hover,
.menu-cta-button > a:focus {
	background-color: var(--brass);
	color: var(--paper);
}

/* ==========================================================================
   5. STAR RATINGS (Reviews)
   Gold stars using --color-gold-accent.
   ========================================================================== */

.review-stars,
.star-rating,
.featured-quote .review-stars {
	color: var(--color-gold-accent);
	font-size: 1.1em;
	letter-spacing: 2px;
}

.rating-summary .rating-value {
	color: var(--color-deep-green);
	font-size: 2.5rem;
	font-weight: 700;
}

.rating-summary .rating-count {
	color: var(--color-stone-gray);
	font-size: 1rem;
}

/* ==========================================================================
   6. REVIEW CARDS
   ========================================================================== */

.review-card {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	padding: 24px;
	margin-bottom: 20px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease;
}

.review-card:hover {
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.review-author {
	color: var(--color-stone-gray);
	font-weight: 600;
	font-size: 0.9rem;
}

/* Featured pull-quote testimonials */
.featured-quote {
	border-left: 4px solid var(--color-gold-accent);
	padding: 20px 24px;
	margin-bottom: 24px;
	background-color: var(--color-cream);
	border-radius: 0 6px 6px 0;
	font-style: italic;
	font-size: 1.1rem;
	line-height: 1.6;
}

.featured-quote cite {
	display: block;
	margin-top: 12px;
	font-style: normal;
	font-weight: 600;
	color: var(--color-deep-green);
	font-size: 0.95rem;
}

/* ==========================================================================
   7. AMENITY ICON GRID
   Consistent sizing, spacing, hover effects.
   ========================================================================== */

.amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	margin: 24px 0;
}

.amenity-card {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	padding: 20px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amenity-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
	font-size: 2rem;
	color: var(--color-forest-green);
	margin-bottom: 10px;
	display: block;
}

.amenity-name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-deep-green);
	margin: 8px 0 4px;
}

.amenity-detail {
	font-size: 0.9rem;
	color: var(--color-stone-gray);
	line-height: 1.4;
	margin: 0;
}

/* Highlights grid (homepage quick highlights) */
.highlights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 16px;
	margin: 24px 0;
}

.highlight-item {
	text-align: center;
	padding: 16px 12px;
	background-color: var(--color-cream);
	border-radius: 6px;
}

.highlight-item .highlight-icon {
	font-size: 1.8rem;
	color: var(--color-forest-green);
	display: block;
	margin-bottom: 6px;
}

.highlight-item .highlight-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-deep-green);
}

/* ==========================================================================
   8. STATS BAR (Property overview)
   ========================================================================== */

.stats-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 16px;
	padding: 16px 0;
	font-size: 1rem;
	color: var(--color-stone-gray);
}

.stat-item {
	font-weight: 600;
	color: var(--color-deep-green);
}

.stat-divider {
	color: #ccc;
}

/* ==========================================================================
   9. ACTIVITY CARDS (Things to Do)
   ========================================================================== */

.activity-card {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	padding: 20px;
	margin-bottom: 16px;
}

.activity-name {
	color: var(--color-deep-green);
	font-size: 1.1rem;
	margin: 0 0 6px;
}

.activity-distance {
	color: var(--color-forest-green);
	font-size: 0.85rem;
	font-weight: 600;
	margin: 0 0 8px;
}

.activity-description {
	color: #444;
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
}

/* Season cards */
.season-card {
	background-color: var(--color-cream);
	border-radius: 6px;
	padding: 24px;
	margin-bottom: 20px;
}

.season-name {
	color: var(--color-deep-green);
	margin: 0 0 4px;
}

.season-months {
	color: var(--color-forest-green);
	font-weight: 600;
	font-size: 0.9rem;
}

/* ==========================================================================
   10. FAQ ACCORDION
   ========================================================================== */

.faq-item {
	border-bottom: 1px solid #e8e8e8;
	padding: 16px 0;
}

.faq-question {
	color: var(--color-deep-green);
	cursor: pointer;
	font-size: 1.05rem;
	margin: 0;
	padding-right: 24px;
	position: relative;
}

.faq-question::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.3rem;
	color: var(--color-forest-green);
	transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question::after {
	content: "\2212"; /* minus sign */
}

.faq-answer {
	color: #444;
	font-size: 0.95rem;
	line-height: 1.6;
	padding-top: 10px;
}

/* ==========================================================================
   11. HERO SECTION
   ========================================================================== */

.hero-section {
	text-align: center;
	padding: 60px 20px;
	background-color: var(--color-cream);
}

.hero-section h1 {
	font-size: 2.4rem;
	color: var(--color-deep-green);
	margin-bottom: 12px;
}

.hero-section .hero-subtitle {
	font-size: 1.15rem;
	color: var(--color-stone-gray);
	margin-bottom: 28px;
	letter-spacing: 0.5px;
}

/* ==========================================================================
   12. SECTION SPACING
   ========================================================================== */

.content-section {
	padding: 48px 0;
}

.content-section + .content-section {
	border-top: 1px solid #eee;
}

.section-title {
	color: var(--color-deep-green);
	font-size: 1.8rem;
	margin-bottom: 16px;
}

.section-subtitle {
	color: var(--color-stone-gray);
	font-size: 1.05rem;
	margin-bottom: 32px;
}

/* ==========================================================================
   13. RESORT CARDS (Myrtle Beach page)
   ========================================================================== */

.resort-card {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	padding: 28px;
	margin-bottom: 24px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.resort-header h2 {
	color: var(--color-deep-green);
	margin-bottom: 4px;
}

.resort-header p {
	color: var(--color-stone-gray);
	font-size: 0.95rem;
}

/* ==========================================================================
   14. LEGAL PAGES (Policy sections)
   ========================================================================== */

.policy-section {
	margin-bottom: 32px;
}

.policy-section h2 {
	color: var(--color-deep-green);
	font-size: 1.4rem;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--color-cream);
}

/* ==========================================================================
   15. COMPARISON BOX (Blog — Why Book Direct)
   ========================================================================== */

.comparison-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 24px 0;
}

.comparison-item {
	padding: 20px;
	border-radius: 6px;
	border: 1px solid #e8e8e8;
}

.comparison-item h3 {
	margin-top: 0;
}

/* ==========================================================================
   16. FLOOR PLAN TABLES
   ========================================================================== */

.room-dimensions-table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0 32px;
}

.room-dimensions-table th,
.room-dimensions-table td {
	padding: 10px 14px;
	text-align: left;
	border-bottom: 1px solid #e8e8e8;
}

.room-dimensions-table th {
	background-color: var(--color-cream);
	color: var(--color-deep-green);
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.room-dimensions-table tr:hover td {
	background-color: rgba(var(--color-cream-rgb), 0.5);
}

/* ==========================================================================
   17. CALLOUT / NOTES BOX
   ========================================================================== */

.callout-box,
.important-notes {
	background-color: var(--color-cream);
	border-left: 4px solid var(--color-warm-brown);
	border-radius: 0 6px 6px 0;
	padding: 20px 24px;
	margin: 24px 0;
}

.callout-box h3,
.important-notes h3 {
	color: var(--color-warm-brown);
	margin-top: 0;
}

/* ==========================================================================
   18. VIRTUAL TOUR PAGE
   ========================================================================== */

.virtual-tour-page {
	max-width: 960px;
	margin: 0 auto;
}

.tour-header {
	text-align: center;
	padding: 0 0 24px;
}

.tour-header h1 {
	color: var(--color-deep-green);
}

.tour-intro {
	color: var(--color-stone-gray);
	max-width: 720px;
	margin: 0 auto;
	line-height: 1.6;
}

.tour-embed-section {
	margin-bottom: 40px;
}

.tour-embed-container {
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	background: var(--color-cream);
}

.tour-embed-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 500px;
	border: none;
}

.tour-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.tour-loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--color-cream);
	border-top-color: var(--color-forest-green);
	border-radius: 50%;
	animation: tour-spin 0.8s linear infinite;
}

.tour-embed-container iframe.is-loaded ~ .tour-loading {
	display: none;
}

.tour-fallback {
	padding: 20px;
	background: var(--color-cream);
	border-radius: 6px;
}

.tour-fallback-link {
	text-align: center;
	margin-top: 12px;
	font-size: 0.9rem;
	color: var(--color-stone-gray);
}

.tour-tips {
	background: var(--color-cream);
	border-radius: 6px;
	padding: 24px 28px;
	margin-top: 32px;
}

.tips-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 24px;
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
}

.tips-list li::before {
	content: "\2713";
	color: var(--color-forest-green);
	font-weight: 700;
	margin-right: 8px;
}

.tour-cta {
	text-align: center;
	padding: 32px 24px;
	margin-top: 32px;
	border-top: 1px solid #eee;
	box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.04);
}

.cta-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 16px;
}

@keyframes tour-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ==========================================================================
   19. FLOOR PLANS PAGE
   ========================================================================== */

.floor-plan-image-container {
	text-align: center;
	margin: 20px 0;
}

.floor-plan-image {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floor-plan-image:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.floor-plan-zoom-hint {
	display: block;
	font-size: 0.85rem;
	font-style: italic;
	color: var(--color-stone-gray);
	margin-top: 8px;
}

.floor-plan-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	cursor: pointer;
}

.floor-plan-lightbox-overlay img {
	max-width: 90%;
	max-height: 90vh;
	border-radius: 4px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   20. PHOTO GALLERY
   ========================================================================== */

.gallery-page .gallery-header {
	text-align: center;
	padding: 0 0 24px;
}

.gallery-filter-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	padding: 14px var(--gutter);
	position: sticky;
	top: 0;
	background: var(--paper);
	z-index: 10;
	border-bottom: 1px solid var(--stone);
	margin-bottom: 32px;
}

.gallery-filter-btn {
	background: transparent;
	border: 1px solid var(--stone);
	border-radius: 20px;
	padding: 7px 16px;
	font: 500 0.82rem/1.2 var(--sans);
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	color: var(--ink-soft);
}

.gallery-filter-btn:hover {
	border-color: var(--spruce);
	color: var(--spruce);
}

.gallery-filter-btn.is-active {
	background-color: var(--spruce);
	color: var(--paper);
	border-color: var(--spruce);
}

.gallery-category.is-hidden {
	display: none;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.gallery-item img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	border-radius: 4px;
	transition: transform 0.2s ease;
}

.gallery-item img:hover {
	transform: scale(1.03);
}

.gallery-cta {
	text-align: center;
	padding: 32px 24px;
	margin-top: 32px;
	border-top: 1px solid #eee;
	box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   21. MOBILE RESPONSIVE OVERRIDES
   ========================================================================== */

@media screen and (max-width: 768px) {
	/* Book Now button — tappable size */
	.menu-cta-button > a,
	.btn-book-now,
	a.btn-book-now,
	button.btn-book-now,
	.cta-button-primary,
	a.cta-button-primary {
		min-height: 44px;
		padding: 14px 24px;
		font-size: 1rem;
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}

	.cta-button-secondary,
	a.cta-button-secondary {
		min-height: 44px;
		padding: 12px 22px;
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}

	/* Navigation hamburger accessibility */
	.menu-toggle,
	.navbar-toggle {
		min-width: 44px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* Hero section */
	.hero-section {
		padding: 40px 16px;
	}

	.hero-section h1 {
		font-size: 1.8rem;
	}

	.hero-section .hero-subtitle {
		font-size: 1rem;
	}

	/* Amenity grid — 2 columns on mobile */
	.amenities-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.amenity-card {
		padding: 14px;
	}

	/* Highlights grid — 2 columns on mobile */
	.highlights-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	/* Comparison box — stack on mobile */
	.comparison-box {
		grid-template-columns: 1fr;
	}

	/* Stats bar — stack */
	.stats-bar {
		flex-direction: column;
		align-items: center;
		gap: 4px;
	}

	.stat-divider {
		display: none;
	}

	/* Section spacing */
	.content-section {
		padding: 32px 0;
	}

	.section-title {
		font-size: 1.5rem;
	}

	/* Floor plan table — horizontal scroll */
	.room-dimensions-table {
		display: block;
		overflow-x: auto;
	}

	/* Review cards */
	.featured-quote {
		padding: 16px 18px;
		font-size: 1rem;
	}

	/* Virtual tour — mobile */
	.tour-embed-container iframe {
		min-height: 350px;
	}

	.tips-list {
		grid-template-columns: 1fr;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	/* Floor plans — mobile */
	.floor-plan-image-container {
		margin: 16px 0;
	}

	/* Gallery — mobile */
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-item img {
		height: 180px;
	}

	.gallery-filter-nav {
		overflow-x: auto;
		flex-wrap: nowrap;
		justify-content: flex-start;
		-webkit-overflow-scrolling: touch;
	}
}

/* ==========================================================================
   22. MOTOPRESS — RESERVATION FORM (direct booking ON)
   Owner ruling 2026-07-03: direct booking is the primary channel. The
   Phase-1 Airbnb-redirect form-hide that lived here is removed; the
   reservation form and booking-flow pages are live.
   ========================================================================== */

@media screen and (max-width: 480px) {
	/* Amenity grid — single column on small phones */
	.amenities-grid {
		grid-template-columns: 1fr;
	}

	/* Hero */
	.hero-section h1 {
		font-size: 1.5rem;
	}

	/* Virtual tour — small phones */
	.tour-embed-container iframe {
		min-height: 280px;
	}

	.tour-header h1 {
		font-size: 1.4rem;
	}

	/* Gallery — single column on small phones */
	.gallery-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   23. LAYOUT MAP — Interactive Floor Plan Tabs
   ========================================================================== */

.layout-map {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	padding: 32px;
	margin-bottom: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.layout-map-header {
	text-align: center;
	margin-bottom: 24px;
}

.layout-map-header .section-title {
	margin-bottom: 8px;
}

.layout-map-header .section-intro {
	color: var(--color-stone-gray);
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.5;
}

/* Level tabs */
.layout-map-tabs {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-bottom: 24px;
	border-bottom: 2px solid #e8e8e8;
	padding-bottom: 0;
}

.layout-tab {
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 10px 20px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-stone-gray);
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
	margin-bottom: -2px;
	white-space: nowrap;
}

.layout-tab:hover {
	color: var(--color-forest-green);
}

.layout-tab.is-active {
	color: var(--color-deep-green);
	border-bottom-color: var(--color-forest-green);
}

/* Map panels */
.layout-map-panels {
	position: relative;
	min-height: 300px;
}

.layout-panel {
	display: none;
}

.layout-panel.is-active {
	display: block;
	animation: layoutFadeIn 0.3s ease;
}

@keyframes layoutFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* SVG / floor plan container — fit-content width shrinks to image width.
   JS also sets an explicit pixel width on load as a safety net. */
.layout-svg-container {
	position: relative;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
}

.layout-svg-container img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

/* SVG hotspot overlay */
.layout-hotspot-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.layout-hotspot-dot {
    pointer-events: all;
    fill: rgba(59, 130, 246, 0.15);
    cursor: pointer;
    stroke: rgba(59, 130, 246, 0.4);
    stroke-width: 1.5;
    transition: fill 0.2s ease, stroke 0.2s ease, stroke-width 0.2s ease;
}

.layout-hotspot-dot:hover {
    fill: rgba(59, 130, 246, 0.35);
    stroke: rgba(59, 130, 246, 0.7);
    stroke-width: 2;
}

/* ---------- Layout Modal (room photo lightbox) ---------- */
.layout-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.layout-modal[hidden] {
	display: none;
}

.layout-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	cursor: pointer;
}

.layout-modal-content {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	max-width: 720px;
	width: 90%;
	max-height: 90vh;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
	from { opacity: 0; transform: scale(0.95); }
	to   { opacity: 1; transform: scale(1); }
}

.layout-modal-close {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.layout-modal-close:hover {
	background: rgba(0, 0, 0, 0.75);
}

.layout-modal-img {
	width: 100%;
	max-height: 70vh;
	object-fit: contain;
	display: block;
	background: #f5f5f5;
}

.layout-modal-caption {
	padding: 16px 20px;
	text-align: center;
}

.layout-modal-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 4px;
	color: #333;
}

.layout-modal-desc {
	font-size: 0.9rem;
	color: #777;
	margin: 0;
}

@media (max-width: 768px) {
	.layout-modal-content {
		width: 95%;
		max-height: 85vh;
	}

	.layout-modal-img {
		max-height: 55vh;
	}
}


/* ==========================================================================
   25. TOUR WALKTHROUGH — Slide Carousel
   ========================================================================== */

.tour-section-divider {
	border: none;
	border-top: 2px solid #e8e8e8;
	margin: 48px 0;
}

.tour-walkthrough {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	margin-bottom: 40px;
}

.tour-viewport {
	position: relative;
	overflow: hidden;
}

.tour-track {
	display: flex;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

/* Hide stray <p> and <br> tags injected by WordPress wpautop inside flex containers */
.tour-track > p,
.tour-track > br,
.layout-map-tabs > br {
	display: none;
}

/* WordPress wpautop wraps buttons in <p> tags inside .tour-controls.
   Use display:contents so the <p> wrappers vanish but their children remain in layout. */
.tour-controls > p {
	display: contents;
}

.tour-controls > br {
	display: none;
}

.tour-slide {
	min-width: 100%;
	width: 100%;
	max-width: 100%;
	flex-shrink: 0;
	box-sizing: border-box;
	overflow: hidden;
}

/* Welcome slide */
.tour-slide-welcome {
	position: relative;
}

.tour-welcome-hero {
	position: relative;
	min-height: 500px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tour-welcome-overlay {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 48px 32px;
	color: #fff;
	max-width: 700px;
}

.tour-welcome-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.3) 0%,
		rgba(0, 0, 0, 0.55) 100%
	);
	z-index: 0;
}

.tour-welcome-overlay h2 {
	color: #fff;
	font-size: 2.4rem;
	margin: 0 0 12px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.tour-welcome-subtitle {
	font-size: 1.15rem;
	margin: 0 0 20px;
	opacity: 0.95;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.tour-welcome-overlay .stats-bar {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 28px;
}

.tour-welcome-overlay .stat-item {
	color: #fff;
}

.tour-welcome-overlay .stat-divider {
	color: rgba(255, 255, 255, 0.5);
}

.tour-begin {
	font-size: 1.1rem;
	padding: 14px 36px;
}

/* Room slides */
.tour-figure {
	position: relative;
	margin: 0;
}

.tour-figure img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
}

.tour-figure figcaption {
	padding: 20px 28px;
	background: #fff;
}

.tour-figure figcaption h3 {
	color: var(--color-deep-green);
	font-size: 1.3rem;
	margin: 0 0 8px;
}

.tour-figure figcaption p {
	color: #555;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

/* Level badges */
.tour-level-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 1;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.tour-level-exterior {
	background: #5a3e28;
	color: #fff;
}

.tour-level-main {
	background: var(--color-forest-green);
	color: #fff;
}

.tour-level-upper {
	background: #4a7c59;
	color: #fff;
}

.tour-level-lower {
	background: #3d6b4f;
	color: #fff;
}

.tour-level-pool {
	background: #2980b9;
	color: #fff;
}

/* CTA slide */
.tour-slide-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 500px;
	background: linear-gradient(135deg, var(--color-cream) 0%, #f5f0e0 100%);
}

.tour-cta-content {
	text-align: center;
	padding: 48px 32px;
	max-width: 600px;
}

.tour-cta-content h2 {
	font-size: 2rem;
	margin: 0 0 16px;
}

.tour-cta-content > p {
	color: #555;
	font-size: 1.05rem;
	line-height: 1.6;
	margin: 0 0 24px;
}

.tour-restart {
	margin-top: 16px;
}

/* Tour controls */
.tour-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 16px 24px;
	background: #fafafa;
	border-top: 1px solid #e8e8e8;
}

.tour-prev,
.tour-next {
	width: 44px;
	height: 44px;
	border: 2px solid var(--color-forest-green);
	background: #fff;
	color: var(--color-forest-green);
	font-size: 1.2rem;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease;
	flex-shrink: 0;
}

.tour-prev:hover,
.tour-next:hover {
	background: var(--color-forest-green);
	color: #fff;
}

.tour-prev:disabled,
.tour-next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.tour-prev:disabled:hover,
.tour-next:disabled:hover {
	background: #fff;
	color: var(--color-forest-green);
}

/* Dots */
.tour-dots {
	display: flex;
	gap: 6px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.tour-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: #ccc;
	cursor: pointer;
	padding: 0;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.tour-dot:hover {
	background: var(--color-stone-gray);
}

.tour-dot.is-active {
	background: var(--color-forest-green);
	transform: scale(1.3);
}

/* Counter */
.tour-counter {
	text-align: center;
	padding: 8px 24px 16px;
	background: #fafafa;
	font-size: 0.85rem;
	color: var(--color-stone-gray);
	font-weight: 600;
}

/* ==========================================================================
   26. LAYOUT MAP + TOUR WALKTHROUGH — Responsive
   ========================================================================== */

@media screen and (max-width: 768px) {
	/* Layout map */
	.layout-map {
		padding: 20px 16px;
		border-radius: 6px;
	}

	.layout-map-tabs {
		overflow-x: auto;
		justify-content: flex-start;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 0;
		gap: 0;
	}

	.layout-tab {
		padding: 8px 14px;
		font-size: 0.85rem;
		flex-shrink: 0;
	}

	.layout-map-legend {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}

	/* Tour walkthrough */
	.tour-welcome-hero {
		min-height: 400px;
	}

	.tour-welcome-overlay h2 {
		font-size: 1.8rem;
	}

	.tour-figure img {
		height: 350px;
	}

	.tour-figure figcaption {
		padding: 16px 20px;
	}

	.tour-slide-cta {
		min-height: 400px;
	}

	.tour-cta-content {
		padding: 32px 20px;
	}

	.tour-cta-content h2 {
		font-size: 1.6rem;
	}

	.tour-controls {
		padding: 12px 16px;
		gap: 12px;
	}

	.tour-dots {
		gap: 4px;
	}

	.tour-dot {
		width: 8px;
		height: 8px;
	}
}

@media screen and (max-width: 480px) {
	.layout-map {
		padding: 16px 12px;
	}

	.layout-tab {
		padding: 8px 10px;
		font-size: 0.8rem;
	}

	.layout-map-panels {
		min-height: 200px;
	}

	.tour-welcome-hero {
		min-height: 320px;
	}

	.tour-welcome-overlay {
		padding: 32px 16px;
	}

	.tour-welcome-overlay h2 {
		font-size: 1.4rem;
	}

	.tour-figure img {
		height: 250px;
	}

	.tour-slide-cta {
		min-height: 320px;
	}

	.tour-prev,
	.tour-next {
		width: 38px;
		height: 38px;
		font-size: 1rem;
	}
}

/* ==========================================================================
   24. REIMAGINE COMPONENTS — homepage bands (spec: docs/website-reimagine)
   ========================================================================== */

/* The front page owns its hero; hide the theme's header photo + page title. */
body.home .site-header .header-image,
body.home .entry-header {
	display: none;
}

body.home .site-content {
	padding-top: 0;
	margin-top: 0;
}

body.home.page-template-template-front-page .site-main > .page,
body.home.page-template-template-front-page-no-sidebar .site-main > .page {
	padding-top: 0;
}

html,
body {
	overflow-x: clip;
}

/* Full-bleed helpers: break band backgrounds out of the boxed layout. */
.wc-hero,
.wc-stats,
.wc-band {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Pages composed of wc-bands manage their own measure. */
article.page .entry-content {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.wc-wrap {
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* Hero */
.wc-hero {
	min-height: 86vh;
	display: grid;
	align-items: end;
	background-size: cover;
	background-position: center;
	padding: clamp(2.5rem, 7vw, 5.5rem) 0;
}

.wc-hero__inner {
	max-width: var(--wrap);
	margin: 0 auto;
	padding-inline: var(--gutter);
	width: 100%;
}

.wc-hero__eyebrow {
	color: var(--brass);
}

.wc-hero__title {
	color: var(--paper);
	font-size: clamp(3rem, 7vw, 5.6rem);
	font-weight: 380;
	line-height: 1.02;
	letter-spacing: -0.015em;
	margin: 0 0 1.1rem;
}

.wc-hero__sub {
	color: rgba(247, 243, 236, 0.92);
	font-size: clamp(1.05rem, 1.6vw, 1.3rem);
	line-height: 1.55;
	max-width: 52ch;
	margin: 0 0 1.9rem;
}

.wc-hero__cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.wc-btn-ghost {
	display: inline-block;
	padding: 1rem 2.3rem;
	border: 1px solid rgba(247, 243, 236, 0.65);
	color: var(--paper);
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	border-radius: 3px;
	text-decoration: none;
	line-height: 1;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.wc-btn-ghost:hover,
.wc-btn-ghost:focus {
	background: var(--paper);
	color: var(--spruce-deep);
	text-decoration: none;
}

/* Stat strip */
.wc-stats {
	background: var(--spruce-deep);
	padding: 1.5rem var(--gutter);
}

.wc-stats__list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: var(--wrap);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.2rem 2rem;
}

.wc-stats__list li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	color: var(--paper);
}

.wc-stats__list strong {
	font-family: var(--serif);
	font-size: 1.7rem;
	font-weight: 420;
	line-height: 1;
}

.wc-stats__list span {
	font: 600 0.68rem/1 var(--sans);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--stone);
}

/* Bands */
.wc-band {
	padding-block: clamp(4rem, 8vw, 7rem);
}

.wc-band--alt {
	background: var(--paper-2);
}

.wc-band--dark {
	background: var(--spruce-deep);
	color: var(--paper);
}

.wc-band--dark h2,
.wc-band--dark h3 {
	color: var(--paper);
}

.wc-band--dark p {
	color: rgba(247, 243, 236, 0.85);
}

.wc-band .eyebrow {
	margin-bottom: 0.6rem;
}

.wc-band h2 {
	margin-top: 0;
	margin-bottom: 1.1rem;
	max-width: 24ch;
}

/* Editorial split */
.wc-split {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

.wc-split--rev {
	grid-template-columns: 1.15fr 1fr;
}

.wc-split--rev .wc-split__text {
	order: 2;
}

.wc-split__media {
	margin: 0;
}

.wc-split__media img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.wc-split__text .btn-secondary {
	margin-top: 0.9rem;
}

/* Signature cards */
.wc-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.2rem, 2.5vw, 2rem);
	margin-top: 2.2rem;
}

.wc-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: var(--paper);
	border: 1px solid var(--stone);
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wc-card:hover,
.wc-card:focus {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(36, 31, 25, 0.12);
	color: inherit;
	text-decoration: none;
}

.wc-card figure {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.wc-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.wc-card:hover img {
	transform: scale(1.04);
}

.wc-card h3 {
	font-size: 1.25rem;
	margin: 1.1rem 1.2rem 0.4rem;
}

.wc-card p {
	margin: 0 1.2rem 1.3rem;
	color: var(--ink-soft);
	font-size: 0.98rem;
	line-height: 1.55;
}

.wc-more-link {
	margin-top: 1.8rem;
}

.wc-more-link a {
	font-weight: 600;
}

/* Book-direct band */
.wc-direct {
	text-align: center;
}

.wc-direct h2 {
	margin-inline: auto;
}

.wc-direct__cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.2rem;
	margin: 2.6rem 0;
	text-align: left;
}

.wc-direct__item h3,
.wc-app__item h3 {
	font-family: var(--sans);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brass);
	margin: 0 0 0.5rem;
}

.wc-band--dark .btn-primary {
	background: var(--paper);
	color: var(--spruce-deep);
}

.wc-band--dark .btn-primary:hover,
.wc-band--dark .btn-primary:focus {
	background: var(--brass);
	color: var(--paper);
}

.wc-direct__alt {
	margin-top: 1.2rem;
	font-size: 0.92rem;
	color: var(--stone);
}

.wc-direct__alt a {
	color: var(--paper);
	text-decoration: underline;
}

.wc-direct__alt a:hover {
	color: var(--brass);
}

/* Final CTA */
.wc-final {
	text-align: center;
}

.wc-final h2 {
	margin-inline: auto;
	max-width: none;
}

.wc-final__sub {
	max-width: 46ch;
	margin: 0.8rem auto 1.9rem;
	color: var(--ink-soft);
}

/* Mobile */
@media (max-width: 900px) {
	.wc-hero {
		min-height: 74vh;
	}

	.wc-split,
	.wc-split--rev {
		grid-template-columns: 1fr;
	}

	.wc-split--rev .wc-split__text {
		order: 0;
	}

	.wc-cards,
	.wc-direct__cols {
		grid-template-columns: 1fr;
	}

	.wc-stats__list {
		justify-content: center;
		gap: 1.1rem 1.8rem;
	}
}

/* --- Property page (loop 7) ------------------------------------------- */

.wc-measure {
	max-width: 720px;
}

.wc-prop-header {
	padding-block: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.wc-prop-header .property-title {
	margin: 0 0 1rem;
}

.stats-bar {
	font: 600 0.78rem/1.8 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ink-soft);
}

.stats-bar .stat-divider {
	color: var(--stone);
	margin: 0 0.55rem;
}

.wc-prop-story {
	padding-block: clamp(2rem, 4vw, 3.5rem);
}

.wc-prop-story .wc-photo {
	margin: clamp(2rem, 4vw, 3.2rem) auto;
	max-width: var(--wrap);
	padding-inline: var(--gutter);
}

.wc-photo {
	margin: 0;
}

.wc-photo img {
	width: 100%;
	height: auto;
	aspect-ratio: 21 / 9;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

/* Level cards: photo + body split */
.level-card.wc-level {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(1.5rem, 3.5vw, 3rem);
	align-items: center;
	background: var(--paper);
	border: 1px solid var(--stone);
	border-radius: 4px;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	margin: 2rem 0;
}

.wc-level--rev .wc-level__media {
	order: 2;
}

.wc-level__media {
	margin: 0;
}

.wc-level__media img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.wc-level__body .level-title {
	margin-top: 0;
}

.level-room-list {
	list-style: none;
	margin: 1.1rem 0 0;
	padding: 0;
	columns: 2;
	column-gap: 2rem;
	font-size: 0.94rem;
	color: var(--ink-soft);
}

.level-room-list li {
	padding: 0.3rem 0;
	border-bottom: 1px solid var(--stone);
	break-inside: avoid;
}

/* Guest notes + booking cards inherit the palette; tune shapes */
.callout-box {
	background: var(--paper-2);
	border-left: 3px solid var(--brass);
	border-radius: 4px;
	padding: clamp(1.5rem, 3vw, 2.2rem);
}

.callout-box .callout-title {
	font-size: 1.4rem;
	margin-top: 0;
}

.note-item h3 {
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--brass);
	margin: 1.3rem 0 0.3rem;
}

.note-item p {
	margin: 0;
	font-size: 0.97rem;
}

.booking-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
	margin: 2rem 0 1.4rem;
}

.booking-card {
	background: var(--paper);
	border: 1px solid var(--stone);
	border-radius: 4px;
	text-align: center;
	padding: 1.6rem 1rem;
}

.booking-card .booking-season {
	margin: 0 0 0.4rem;
	font-size: 1.2rem;
}

.booking-card .booking-detail {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.92rem;
}

.booking-card .booking-minimum {
	margin: 0.2rem 0 0;
	font: 600 0.78rem/1.4 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brass);
}

.wc-band--dark .wc-final__sub {
	color: rgba(247, 243, 236, 0.85);
}

@media (max-width: 900px) {
	.level-card.wc-level {
		grid-template-columns: 1fr;
	}

	.wc-level--rev .wc-level__media {
		order: 0;
	}

	.level-room-list {
		columns: 1;
	}

	.booking-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* --- Gallery page refinements (loop 8) --------------------------------- */

.gallery-category h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	margin: 2.6rem 0 1.1rem;
}

.gallery-item {
	display: block;
	overflow: hidden;
	border-radius: 4px;
}

.gallery-item img {
	transition: transform 0.35s ease;
}

.gallery-item:hover img {
	transform: scale(1.03);
}

/* --- /book page (loop 9) ----------------------------------------------- */

.wc-book-top {
	padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}

.wc-book-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}

.wc-book-points {
	list-style: none;
	margin: 1.4rem 0 0;
	padding: 0;
}

.wc-book-points li {
	padding: 0.55rem 0 0.55rem 1.6rem;
	position: relative;
	border-bottom: 1px solid var(--stone);
	font-size: 0.98rem;
	color: var(--ink-soft);
}

.wc-book-points li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: var(--brass);
	font-weight: 700;
}

.wc-book-points strong {
	color: var(--ink);
}

/* MotoPress booking form, restyled to the token system.
   Card chrome moved to .wc-book-card (friction rework 2026-07-06) so the
   card header, form, season note, and assurance list share one card. */
.wc-book-form .mphb-booking-form,
.wc-book-form .mphb_sc_search-form,
.wc-book-form form.mphb_cbf {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.wc-book-form .mphb-reservation-form-title,
.wc-book-form h3 {
	font-size: 1.3rem;
	margin-top: 0;
}

.wc-book-form label {
	font: 600 0.72rem/1.4 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-soft);
}

.wc-book-form input[type="text"],
.wc-book-form input[type="number"],
.wc-book-form select {
	width: 100%;
	border: 1px solid var(--stone);
	border-radius: 3px;
	padding: 0.7rem 0.8rem;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
}

.wc-book-form .button,
.wc-book-form button[type="submit"],
.wc-book-form input[type="submit"] {
	background: var(--spruce);
	color: var(--paper);
	border: none;
	border-radius: 3px;
	padding: 1rem 2rem;
	font: 600 0.85rem/1 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	cursor: pointer;
	width: 100%;
	margin-top: 0.6rem;
	transition: background-color 0.2s ease;
}

.wc-book-form .button:hover,
.wc-book-form button[type="submit"]:hover,
.wc-book-form input[type="submit"]:hover {
	background: var(--spruce-deep);
}

.wc-book-cal .mphb-calendar {
	background: #fff;
	border: 1px solid var(--stone);
	border-radius: 6px;
	padding: 1rem;
}

.wc-book-calnote {
	color: var(--ink-soft);
	margin-top: -0.4rem;
	margin-bottom: 1.6rem;
}

/* Comparison table on the dark band */
.wc-compare {
	overflow-x: auto;
	margin: 2rem 0 1rem;
}

.wc-compare__table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 0.97rem;
}

.wc-compare__table th,
.wc-compare__table td {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid rgba(247, 243, 236, 0.16);
	color: rgba(247, 243, 236, 0.85);
	vertical-align: top;
}

.wc-compare__table thead th {
	font: 600 0.78rem/1.2 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--stone);
	border-bottom-color: rgba(247, 243, 236, 0.3);
}

.wc-compare__table .wc-compare__here {
	color: var(--paper);
	font-weight: 500;
}

.wc-compare__table thead .wc-compare__here {
	color: var(--brass);
}

/* Policies + FAQ */
.wc-policy-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem 2.4rem;
	margin: 2rem 0 0;
}

.wc-policy h3 {
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--brass);
	margin: 0 0 0.4rem;
}

.wc-policy p {
	margin: 0;
	font-size: 0.97rem;
	color: var(--ink-soft);
}

.wc-faq {
	margin-top: clamp(3rem, 5vw, 4.5rem);
	max-width: 820px;
}

.wc-faq details {
	border-bottom: 1px solid var(--stone);
	padding: 0.9rem 0;
}

.wc-faq summary {
	cursor: pointer;
	font: 500 1.05rem/1.4 var(--sans);
	color: var(--ink);
	list-style: none;
	position: relative;
	padding-right: 2rem;
}

.wc-faq summary::-webkit-details-marker {
	display: none;
}

.wc-faq summary::after {
	content: '+';
	position: absolute;
	right: 0.2rem;
	top: 0;
	font-family: var(--serif);
	font-size: 1.4rem;
	color: var(--brass);
	transition: transform 0.2s ease;
}

.wc-faq details[open] summary::after {
	transform: rotate(45deg);
}

.wc-faq details p {
	margin: 0.7rem 0 0.3rem;
	color: var(--ink-soft);
	font-size: 0.98rem;
}

@media (max-width: 900px) {
	.wc-book-grid,
	.wc-policy-grid {
		grid-template-columns: 1fr;
	}
}

/* --- Footer & cookie notice (loop 10) ----------------------------------- */

.site-footer {
	background: var(--spruce-deep);
	color: rgba(247, 243, 236, 0.75);
	padding: 2.2rem var(--gutter);
	margin-top: 0;
}

.site-footer .footer-wrapper {
	max-width: var(--wrap);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
	align-items: center;
	justify-content: space-between;
}

.site-footer .site-info {
	font: 500 0.82rem/1.6 var(--sans);
	letter-spacing: 0.04em;
	color: var(--stone);
}

.menu-footer-container .footer-menu li a {
	font: 500 0.78rem/1.6 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(247, 243, 236, 0.8);
}

.menu-footer-container .footer-menu li a:hover,
.menu-footer-container .footer-menu li a:focus {
	color: var(--brass);
}

/* Cookie notice plugin — match the palette */
#cookie-notice,
.cookie-notice-container {
	background: var(--ink) !important;
	color: var(--stone) !important;
	font-family: var(--sans) !important;
	font-size: 0.85rem !important;
}

#cookie-notice .cn-button,
.cn-button.bootstrap {
	background: var(--brass) !important;
	color: var(--paper) !important;
	border-radius: 3px !important;
	font-family: var(--sans) !important;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.75rem !important;
	padding: 0.5rem 1.1rem !important;
}

/* Nav width: 7 items + CTA need more room than the parent's 800px cap. */
@media (min-width: 992px) {
	.main-navigation .primary-menu {
		max-width: 1040px;
	}
}

/* Hero eyebrow: cream reads better than brass over foliage. */
.wc-hero__eyebrow {
	color: rgba(247, 243, 236, 0.9);
}

/* --- Reviews page touches (loop 11) ------------------------------------- */

.reviews-attribution {
	font-size: 0.85rem;
	color: var(--ink-soft);
	margin-top: 0.6rem;
}

.reviews-hero {
	text-align: center;
	padding: clamp(2rem, 4vw, 3rem) 0 1rem;
}

.reviews-cta {
	text-align: center;
	padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.reviews-cta .cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1.4rem;
}

.reviews-external {
	text-align: center;
	padding-bottom: 3rem;
}

/* --- Kill remaining parent lime-green accents (loop 14) ----------------- */

h1:before, h2:before, h3:before, h4:before, h5:before, h6:before {
	background: var(--brass);
}

.main-navigation a:after {
	background: var(--brass);
}

.main-navigation a:hover,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
	color: var(--brass);
}

.button,
.more-link {
	border-color: var(--spruce);
	background: var(--spruce);
	color: var(--paper);
}

.button:hover,
.more-link:hover {
	border-color: var(--spruce-deep);
	background: var(--spruce-deep);
}

.menu-toggle:hover,
.menu-toggle:active,
.menu-toggle:focus,
.additional-navigation ul li a:hover,
.social-menu ul li a:hover {
	color: var(--brass);
}

/* Lightbox overlay for floor plans (JS creates .floor-plan-lightbox-overlay) */
.floor-plan-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(30, 39, 32, 0.92);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3vh 3vw;
	cursor: zoom-out;
}

.floor-plan-lightbox-overlay img {
	max-width: 94vw;
	max-height: 94vh;
	background: #fff;
	border-radius: 4px;
}

/* Floor-plan figures on the floor-plans page */
.wc-plan {
	margin: 1.6rem 0 0;
	background: #fff;
	border: 1px solid var(--stone);
	border-radius: 4px;
	padding: 1rem;
}

.wc-plan img {
	width: 100%;
	height: auto;
	display: block;
}

.wc-plan figcaption {
	font: 500 0.8rem/1.5 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-soft);
	padding-top: 0.7rem;
	text-align: center;
}

/* --- Sticky mobile availability bar (loop 15) --------------------------- */

.wc-book-bar {
	display: none;
}

@media (max-width: 768px) {
	.wc-book-bar {
		display: block;
		position: fixed;
		inset: auto 0 0;
		background: var(--spruce-deep);
		padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
		z-index: 60;
		box-shadow: 0 -6px 18px rgba(36, 31, 25, 0.18);
	}

	.wc-book-bar .btn-primary {
		display: block;
		text-align: center;
		width: 100%;
	}

	/* Keep page content + cookie bar clear of the fixed bar */
	body {
		padding-bottom: 64px;
	}

	#cookie-notice {
		bottom: 64px !important;
	}
}

/* --- Guest app band (homepage) + featured app section (amenities) ------- */

.wc-app {
	text-align: center;
}

.wc-app h2 {
	margin-inline: auto;
}

.wc-app__lead,
.amenities-app-intro {
	max-width: 60ch;
	color: var(--ink-soft);
}

.wc-app__lead {
	margin: 0 auto;
}

.wc-app__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2.2rem 2rem;
	margin: 2.8rem 0 0;
	text-align: left;
}

.wc-app__item {
	border-top: 2px solid var(--brass);
	padding-top: 1rem;
}

/* Shares the uppercase label rule with .wc-direct__item h3; only color differs. */
.wc-app__item h3 {
	color: var(--spruce);
}

.wc-app__item p {
	font-size: 0.95rem;
	color: var(--ink-soft);
	margin: 0;
}

.wc-app__note {
	margin: 2.4rem 0 0;
	font-size: 0.92rem;
	color: var(--ink-soft);
}

.amenities-app-section {
	background: var(--paper-2);
	border-block: 1px solid var(--stone);
}

.amenities-app-intro {
	margin: 0;
}

/* Collapses with the sibling bands' shared 900px breakpoint; lives here so it
   wins source order over the base rule above. */
@media (max-width: 900px) {
	.wc-app__grid {
		grid-template-columns: 1fr;
	}
}

/* wpautop injects stray <p>/<br> between grid children in page content;
   they become invisible grid cells and shuffle card positions. */
.wc-cards > p,
.wc-cards > br,
.gallery-grid > p,
.gallery-grid > br,
.wc-direct__cols > p,
.wc-direct__cols > br,
.wc-app__grid > p,
.wc-app__grid > br,
.wc-stats__list > p,
.booking-grid > p,
.wc-policy-grid > p,
.wc-policy-grid > br,
.wc-book-grid > p,
.wc-book-grid > br,
.wc-book-steps > p,
.wc-book-steps > br,
.wc-trust > p,
.wc-trust > br,
.wc-book-assurance > p,
.wc-cal-legend > p,
.wc-cal-legend > br {
	display: none;
}

/* --- Closing polish (loop 21): footer widget columns + mobile masthead --- */

.footer-widgets {
	background: var(--spruce-deep);
	color: rgba(247, 243, 236, 0.78);
	border-bottom: 1px solid rgba(247, 243, 236, 0.12);
}

.footer-widgets .widget {
	font-size: 0.92rem;
	line-height: 1.65;
}

.footer-widgets .widget a {
	color: rgba(247, 243, 236, 0.85);
}

.footer-widgets .widget a:hover,
.footer-widgets .widget a:focus {
	color: var(--brass);
}

.footer-widgets .widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-widgets .widget ul li {
	padding: 0.22rem 0;
}

.footer-widgets .widget strong {
	font-family: var(--serif);
	font-weight: 460;
	font-size: 1.05rem;
	color: var(--paper);
}

@media (max-width: 991px) {
	.site-branding,
	.site-branding.no-logo {
		padding: 1.1em 1em;
	}

	.main-navigation {
		padding-top: 14px;
		padding-bottom: 14px;
	}
}

/* ==========================================================================
   AHE LINKS HUB (/links) — social funnel landing (social/11)
   Mobile-first: most arrivals are platform in-app browsers.
   ========================================================================== */

.ahe-links-hero {
	background: var(--spruce-deep);
	color: var(--paper);
	text-align: center;
}

.ahe-links-wrap {
	max-width: 480px;
	margin: 0 auto;
	padding: 2.5rem 1.25rem 3rem;
}

.ahe-links-hero h2 {
	color: var(--paper);
	margin: 0.25rem 0 0.5rem;
}

.ahe-links-tag {
	color: var(--stone);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

.ahe-links-book {
	display: block;
	width: 100%;
	padding: 1rem 1.5rem;
	font-size: 1.1rem;
	margin-bottom: 1.75rem;
}

.ahe-links-list {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1.75rem;
}

.ahe-link-card {
	display: block;
	background: rgba(247, 243, 236, 0.06);
	border: 1px solid rgba(247, 243, 236, 0.18);
	border-radius: 10px;
	padding: 0.9rem 1.1rem;
	color: var(--paper);
	text-decoration: none;
	transition: background 0.15s ease, transform 0.15s ease;
}

.ahe-link-card:hover,
.ahe-link-card:focus {
	background: rgba(247, 243, 236, 0.12);
	transform: translateY(-1px);
	color: var(--paper);
}

.ahe-link-card strong {
	display: block;
	font-family: var(--serif, Lora, serif);
	font-size: 1.05rem;
}

.ahe-link-card span {
	display: block;
	color: var(--stone);
	font-size: 0.85rem;
	margin-top: 0.15rem;
}

.ahe-links-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.1rem;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.ahe-links-social a {
	color: var(--brass);
	text-decoration: none;
	font-size: 0.95rem;
}

.ahe-links-social a:hover {
	text-decoration: underline;
}

.ahe-links-foot {
	color: var(--ink-soft);
	color: rgba(216, 207, 190, 0.65);
	font-size: 0.8rem;
	margin: 0;
}


/*--------------------------------------------------------------
## Polish pass 2026-07-06 (site review follow-ups)
--------------------------------------------------------------*/

/* Blog index + MotoPress accommodation single: retire the parent theme's
   pulled-up sidebar (.widget-area floats left with a negative top margin —
   the Mountainview demo look). The reimagined site is sidebar-free
   everywhere else; these two templates were the stragglers, and the Search
   widget landed on top of the hero image. Numbers mirror the parent's own
   .content-area.no-sidebar rules. */
.blog .site-content .widget-area,
.single-mphb_room_type .site-content .widget-area {
	display: none;
}

.blog .content-area,
.single-mphb_room_type .content-area {
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 924px;
}

.blog .content-area .site-main,
.single-mphb_room_type .content-area .site-main {
	margin-right: 0;
	max-width: none;
}

/* MotoPress buttons outside the styled /book form (accommodation single,
   search results, checkout) ship plugin-green — restyle to the token
   system. .wc-book-form already covers the /book page itself. */
.mphb-button,
a.mphb-button,
input.mphb-reserve-btn,
.mphb-reserve-btn.button {
	background: var(--spruce);
	color: var(--paper);
	border: none;
	border-radius: 3px;
	padding: 0.95rem 1.8rem;
	font: 600 0.85rem/1 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.mphb-button:hover,
.mphb-button:focus,
a.mphb-button:hover,
a.mphb-button:focus,
input.mphb-reserve-btn:hover,
input.mphb-reserve-btn:focus,
.mphb-reserve-btn.button:hover,
.mphb-reserve-btn.button:focus {
	background: var(--spruce-deep);
	color: var(--paper);
}

/* /book availability calendar: the datepick widget renders two ~230px
   month grids left-aligned inside a full-width card (inline width set by
   the plugin's JS — hence the !important). Let the months breathe and
   center the block. */
.wc-book-cal .mphb-calendar .datepick {
	width: 100% !important;
	max-width: 860px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.wc-book-cal .datepick-month {
		width: 50% !important;
		padding: 0 1.25rem;
		box-sizing: border-box;
	}
}

@media (max-width: 767px) {
	.wc-book-cal .datepick-month {
		width: 100% !important;
		float: none;
	}
}

.wc-book-cal .datepick-month table {
	width: 100%;
	font-size: 0.95rem;
}

.wc-book-cal .datepick-month-header {
	font-size: 1rem;
}

/* ==========================================================================
   28. /BOOK FRICTION REWORK (2026-07-06)
   Direct-booking mode (dates -> live itemized quote -> checkout), booking
   card, three-step explainer, datepicker "minimal" theme recolor, checkout
   cleanup, cookie notice on-brand. Section numbers continue the file's
   loose convention; everything tokens-only.
   ========================================================================== */

/* --- Compact hero on transactional pages (/book = 5, checkout = 7) ------ */

/* The parent sizes the hero as an aspect-ratio box (padding-top: 36% on
   .image, ~513px at desktop) with the img absolutely filling it, and pins
   a gray title gradient (.page-heading-wrapper) to its bottom edge. On the
   booking page the photo is set dressing, not the show: cap the box short
   and drop the redundant title band — the page opens with its own headline.
   (Checkout, page 7, keeps its band; it has no featured image to fight.) */
.page-id-5 .site-header .header-image,
.page-id-5 .header-image .image {
	min-height: 0;
}

.page-id-5 .header-image .image {
	padding-top: clamp(170px, 18vw, 240px);
}

.page-id-5 .header-image .page-heading-wrapper {
	display: none;
}

/* --- Booking layout: intro + steps left, sticky card right -------------- */

.wc-book-grid {
	grid-template-areas:
		"intro card"
		"steps card";
	grid-template-rows: auto 1fr;
}

.wc-book-intro { grid-area: intro; }
.wc-book-steps { grid-area: steps; }
.wc-book-card  { grid-area: card; }

.wc-book-lead {
	font-size: 1.05rem;
	max-width: 54ch;
}

/* Trust chips under the lead */
.wc-trust {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 1.4rem 0 0;
	padding: 0;
}

.wc-trust li {
	background: #fff;
	border: 1px solid var(--stone);
	border-radius: 999px;
	padding: 0.42rem 0.95rem;
	font: 500 0.85rem/1.4 var(--sans);
	color: var(--ink-soft);
}

.wc-trust li strong {
	color: var(--ink);
	font-weight: 650;
}

.wc-trust li a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.wc-trust li a:hover {
	color: var(--brass);
}

/* Numbered how-it-works steps */
.wc-book-steps {
	list-style: none;
	counter-reset: bookstep;
	margin: 2.4rem 0 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
	align-content: start;
}

.wc-book-steps li {
	counter-increment: bookstep;
	position: relative;
	padding-left: 3.4rem;
}

.wc-book-steps li::before {
	content: counter(bookstep);
	position: absolute;
	left: 0;
	top: 0.05rem;
	width: 2.3rem;
	height: 2.3rem;
	border: 1px solid var(--brass);
	border-radius: 50%;
	display: grid;
	place-items: center;
	font: 600 1.05rem/1 var(--serif);
	color: var(--brass);
}

.wc-book-steps h3 {
	font: 600 1.02rem/1.3 var(--sans);
	letter-spacing: 0.01em;
	margin: 0 0 0.3rem;
	color: var(--ink);
}

.wc-book-steps p {
	margin: 0;
	font-size: 0.94rem;
	color: var(--ink-soft);
	max-width: 46ch;
}

/* --- The booking card ---------------------------------------------------- */

.wc-book-card {
	background: #fff;
	border: 1px solid var(--stone);
	border-radius: 8px;
	padding: clamp(1.4rem, 2.5vw, 1.9rem);
	box-shadow: 0 18px 44px rgba(36, 31, 25, 0.10);
}

@media (min-width: 901px) {
	.wc-book-card {
		position: sticky;
		top: 1.5rem;
	}
}

.wc-book-card__head {
	border-bottom: 1px solid var(--stone);
	padding-bottom: 0.9rem;
	margin-bottom: 1.1rem;
}

.wc-book-card__head h3 {
	font: 600 1.35rem/1.2 var(--serif);
	margin: 0;
	color: var(--ink);
}

.wc-book-card__head p {
	margin: 0.25rem 0 0;
	font: 500 0.8rem/1.4 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--brass);
}

/* Season note: the one thing guests must know before the picker */
.wc-book-note {
	margin: 1.1rem 0 0;
	padding: 0.75rem 0.95rem;
	background: var(--paper-2);
	border-radius: 4px;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--ink-soft);
}

.wc-book-note strong {
	color: var(--ink);
}

.wc-book-assurance {
	list-style: none;
	margin: 1.1rem 0 0;
	padding: 1rem 0 0;
	border-top: 1px solid var(--stone);
	display: grid;
	gap: 0.45rem;
}

.wc-book-assurance li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.87rem;
	color: var(--ink-soft);
}

.wc-book-assurance li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: var(--brass);
	font-weight: 700;
}

/* --- Direct-booking form internals --------------------------------------- */

.wc-book-form .mphb-required-fields-tip,
.wc-book-form label abbr {
	display: none;
}

.wc-book-form .mphb-booking-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.8rem;
}

.wc-book-form .mphb-booking-form > * {
	grid-column: 1 / -1;
	margin: 0;
}

.wc-book-form .mphb-booking-form > .mphb-check-in-date-wrapper { grid-column: 1; }
.wc-book-form .mphb-booking-form > .mphb-check-out-date-wrapper { grid-column: 2; }

.wc-book-form .mphb-booking-form label {
	display: block;
	margin-bottom: 0.35rem;
}

.wc-book-form input[type="text"] {
	background: #fff;
	font-size: 1rem;
	padding: 0.8rem 0.85rem;
	border-radius: 4px;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wc-book-form input[type="text"]:focus {
	outline: none;
	border-color: var(--spruce);
	box-shadow: 0 0 0 3px rgba(46, 58, 47, 0.12);
}

/* Live quote reveal */
.wc-book-form .mphb-reserve-room-section {
	border-top: 1px solid var(--stone);
	padding-top: 1rem;
	margin-top: 0.35rem;
}

.wc-book-form .mphb-reserve-room-section.mphb-hide {
	display: none;
}

.wc-book-form .mphb-rooms-quantity-wrapper {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.92rem;
	color: var(--spruce);
	margin: 0 0 0.4rem;
}

.wc-book-form .mphb-rooms-quantity-wrapper::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: var(--brass);
	font-weight: 700;
}

.wc-book-form .mphb-rooms-quantity-wrapper.mphb-hide {
	display: none;
}

.wc-book-form .mphb-period-price {
	margin: 0.5rem 0 0;
}

.wc-book-form .mphb-period-price > strong {
	display: block;
	font: 600 0.72rem/1.4 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-soft);
	margin-bottom: 0.2rem;
}

.wc-book-form .mphb-period-price .mphb-price {
	font: 600 1.85rem/1.15 var(--serif);
	color: var(--ink);
}

.wc-book-form .mphb-period-price .mphb-price-period {
	font-size: 0.95rem;
	color: var(--ink-soft);
}

.wc-book-form .mphb-period-price .mphb-tax-information {
	display: block;
	font-size: 0.88rem;
	color: var(--ink-soft);
	margin-top: 0.3rem;
}

.wc-book-form .mphb-confirm-reservation {
	margin-top: 1rem;
}

/* Errors: quiet, on-brand, never red-alert shouting */
.wc-book-form .mphb-errors-wrapper {
	background: var(--paper-2);
	border-left: 3px solid var(--brass);
	border-radius: 0 4px 4px 0;
	padding: 0.7rem 0.9rem;
	font-size: 0.9rem;
	color: var(--ink);
}

.wc-book-form .mphb-errors-wrapper.mphb-hide {
	display: none;
}

/* --- Availability calendar band: token recolor --------------------------- */

/* Three layers paint these cells: the plugin's base mphb.css (reads the
   custom properties below, lime fallbacks), the "minimal" datepick theme
   (same), and the PARENT theme's motopress-hotel-booking.css, which
   hardcodes lime #e1f0c0 / pink #ffbdbf / #7db900!important with high
   specificity AND prints after this child sheet. Vars cover the first two;
   the body-prefixed !important rules out-gun the parent. */
body .mphb-calendar.mphb-datepick,
.mphb-calendar,
.datepick-popup {
	--mphb-available-date-bg: #dfe7df;
	--mphb-available-date-color: var(--ink);
	--mphb-not-available-date-bg: #e9d5ce;
	--mphb-not-available-date-color: #8a4a38;
	--mphb-booked-date-bg: #e9d5ce;
	--mphb-booked-date-color: #8a4a38;
	--mphb-out-of-season-date-bg: #e7e0d2;
	--mphb-out-of-season-date-color: #9c9081;
	--mphb-selected-date-bg: var(--spruce);
	--mphb-selected-date-color: var(--paper);
	--mphb-unselectable-date-color: #9c9081;
}

body .mphb-calendar.mphb-datepick .datepick-month td .mphb-available-date {
	background-color: #dfe7df !important;
	color: var(--ink) !important;
}

body .mphb-calendar.mphb-datepick .datepick-month td .mphb-booked-date,
body .mphb-calendar.mphb-datepick .datepick-month td .mphb-booked-date.mphb-date-check-in.mphb-date-check-out {
	background-color: #e9d5ce !important;
	color: #8a4a38 !important;
}

body .mphb-calendar.mphb-datepick .datepick-month td .mphb-date-check-out {
	background: linear-gradient(to bottom right, #e9d5ce 0, #e9d5ce 50%, #dfe7df 50%, #dfe7df 100%) !important;
}

body .mphb-calendar.mphb-datepick .datepick-month td .mphb-booked-date.mphb-date-check-in {
	background: linear-gradient(to bottom right, #dfe7df 0, #dfe7df 50%, #e9d5ce 50%, #e9d5ce 100%) !important;
}

body .mphb-calendar.mphb-datepick .datepick-month td .datepick-highlight,
body .mphb-calendar.mphb-datepick .datepick-month td .datepick-selected,
body .mphb-calendar.mphb-datepick .datepick-month td .mphb-selected-date {
	background: var(--spruce) !important;
	color: var(--paper) !important;
}

body .mphb-calendar.mphb-datepick .datepick-month td .mphb-unselectable-date--check-in,
body .mphb-calendar.mphb-datepick .datepick-month td .mphb-unselectable-date--check-out {
	color: #9c9081;
}

/* Click-to-select footer on the direct-booking calendar */
.wc-book-cal .mphb-calendar__selected-dates {
	font: 500 0.9rem/1.5 var(--sans);
	color: var(--ink-soft);
}

.wc-book-cal .mphb-calendar__selected-dates a,
.wc-book-cal .mphb-calendar__selected-dates .mphb-clear-selection {
	color: var(--brass);
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.wc-cal-legend {
	display: flex;
	justify-content: center;
	gap: 1.6rem;
	margin-top: 1.1rem;
	font: 500 0.85rem/1.4 var(--sans);
	color: var(--ink-soft);
}

.wc-cal-legend__item {
	position: relative;
	padding-left: 1.3rem;
}

.wc-cal-legend__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 2px;
	border: 1px solid rgba(36, 31, 25, 0.12);
}

.wc-cal-legend__item--open::before {
	background: #dfe7df;
}

.wc-cal-legend__item--booked::before {
	background: #e9d5ce;
}

/* --- Datepicker popup: token recolor of the "minimal" theme -------------- */

.datepick-popup .mphb-datepicker-minimal.mphb-datepick-popup {
	border: 1px solid var(--stone);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(36, 31, 25, 0.18);
	font-family: var(--sans);
}

/* Semantics fix: the minimal theme strikes through EVERY unselectable day,
   so "open but not a valid start day" (mid-week in Sunday-to-Sunday summer)
   reads exactly like "booked" and July looks sold out. Open days lose the
   strike and just mute; only truly unavailable dates stay struck. */
.datepick-popup .mphb-datepicker-minimal.mphb-datepick-popup .datepick-month td .mphb-unselectable-date.mphb-available-date,
.mphb-calendar.mphb-datepick .mphb-datepicker-minimal .datepick-month td .mphb-unselectable-date.mphb-available-date {
	text-decoration: none;
	color: #9c9081;
}

/* Valid check-in days: quiet spruce tint so they pop without shouting */
.datepick-popup .mphb-datepicker-minimal.mphb-datepick-popup .datepick-month td a.mphb-available-date {
	background-color: #dfe7df;
	color: var(--spruce-deep);
	font-weight: 600;
	border-radius: 3px;
}

.datepick-popup .mphb-datepicker-minimal.mphb-datepick-popup .datepick-month td a.mphb-available-date:hover {
	background-color: var(--spruce);
	color: var(--paper);
}

.datepick-popup .mphb-datepick-popup .datepick-month td .datepick-selected,
.datepick-popup .mphb-datepick-popup .datepick-month td .mphb-check-in-date {
	background: var(--spruce) !important;
	color: var(--paper) !important;
}

.datepick-popup .mphb-datepick-popup .datepick-month td a.datepick-highlight {
	background: var(--paper-2) !important;
	color: var(--ink) !important;
}

.datepick-popup .mphb-datepicker-minimal.mphb-datepick-popup .datepick-month td .datepick-today {
	box-shadow: inset 0 0 0 1px var(--brass);
	border-radius: 3px;
}

/* --- Checkout (/booking-confirmation, page 7): retire sidebar, polish ---- */

.page-id-7 .site-content .widget-area {
	display: none;
}

.page-id-7 .content-area {
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 924px;
}

.page-id-7 .content-area .site-main {
	margin-right: 0;
	max-width: none;
}

.mphb-required-fields-tip {
	display: none;
}

.mphb_sc_checkout-form .mphb-checkout-section {
	background: #fff;
	border: 1px solid var(--stone);
	border-radius: 6px;
	padding: 1.4rem 1.6rem;
	margin-bottom: 1.4rem;
}

.mphb_sc_checkout-form input[type="text"],
.mphb_sc_checkout-form input[type="email"],
.mphb_sc_checkout-form input[type="tel"],
.mphb_sc_checkout-form select,
.mphb_sc_checkout-form textarea {
	border: 1px solid var(--stone);
	border-radius: 4px;
	padding: 0.65rem 0.8rem;
	background: #fff;
	font-family: var(--sans);
	max-width: 420px;
}

.mphb_sc_checkout-form input:focus,
.mphb_sc_checkout-form select:focus,
.mphb_sc_checkout-form textarea:focus {
	outline: none;
	border-color: var(--spruce);
	box-shadow: 0 0 0 3px rgba(46, 58, 47, 0.12);
}

.mphb_sc_checkout-form button[type="submit"],
.mphb_sc_checkout-form input[type="submit"],
.mphb_sc_checkout-form .mphb-button {
	background: var(--spruce);
	color: var(--paper);
	border: none;
	border-radius: 3px;
	padding: 1rem 2.4rem;
	font: 600 0.85rem/1 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.mphb_sc_checkout-form button[type="submit"]:hover,
.mphb_sc_checkout-form input[type="submit"]:hover,
.mphb_sc_checkout-form .mphb-button:hover {
	background: var(--spruce-deep);
	color: var(--paper);
}

/* --- Cookie notice on-brand ---------------------------------------------- */

#cookie-notice {
	background: var(--spruce-deep) !important;
}

#cookie-notice .cn-text-container {
	font: 400 0.85rem/1.5 var(--sans);
	color: rgba(247, 243, 236, 0.85);
}

#cookie-notice .cn-button {
	background: var(--brass) !important;
	color: #fff !important;
	border-radius: 3px;
	font: 600 0.78rem/1 var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.55rem 1.1rem;
}

/* --- Mobile: headline, then the card, then the steps ---------------------- */

@media (max-width: 900px) {
	.wc-book-grid {
		grid-template-areas: none;
	}

	.wc-book-intro,
	.wc-book-steps,
	.wc-book-card {
		grid-area: auto;
	}

	.wc-book-steps {
		order: 3;
		margin-top: 0.6rem;
	}

	.wc-book-card {
		order: 2;
	}
}
