/*
Theme Name: LGR Casa Canaria
Description: Child theme of Twenty Twenty-Five for losgigantesrentals.com — Marea layout in the Casa Canaria identity: limewash grounds, Canary-pine green, tea-wood accents, Lora + Nunito Sans.
Template: twentytwentyfive
Version: 1.5.9
Text Domain: lgr
*/

:root {
	--lgr-limewash: #FDFCF9;
	--lgr-plaster: #F1EBDF;
	--lgr-plaster-deep: #E9E0CE;
	--lgr-pine: #33684B;
	--lgr-pine-dark: #2C4A38;
	--lgr-wood: #8C5B33;
	--lgr-ink: #33322D;
	--lgr-muted: #6B675A;
	--lgr-line: #E4DCC9;
	--lgr-white: #FFFFFF;
	--lgr-radius: 8px;
	--lgr-shadow: 0 14px 34px -18px rgba(51, 50, 45, .38);
}

/* ---------------------------------------------------------------- base */
body {
	background: var(--lgr-limewash);
	color: var(--lgr-ink);
	font-family: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
	font-size: 1.02rem;
	line-height: 1.65;
}

h1, h2, h3, h4,
.wp-block-heading {
	font-family: Lora, Constantia, Georgia, serif;
	color: var(--lgr-ink);
	text-wrap: balance;
	line-height: 1.2;
}

h1 { font-weight: 600; }
h2 { font-weight: 550; }

a { color: var(--lgr-pine); }
a:hover { color: var(--lgr-pine-dark); }

::selection { background: var(--lgr-plaster-deep); }

/* buttons everywhere (theme + MotoPress) */
.wp-block-button__link,
button[type="submit"],
input[type="submit"],
.mphb-button,
.button {
	background: var(--lgr-pine);
	color: #fff;
	border: 0;
	border-radius: 6px;
	padding: .7em 1.5em;
	font-family: "Nunito Sans", "Segoe UI", sans-serif;
	font-weight: 700;
	letter-spacing: .015em;
	cursor: pointer;
	transition: background .15s ease;
}
.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.mphb-button:hover,
.button:hover {
	background: var(--lgr-pine-dark);
	color: #fff;
}

input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="date"], select, textarea {
	background: var(--lgr-white);
	border: 1px solid #D9CFBB;
	border-radius: 6px;
	padding: .55em .8em;
	color: var(--lgr-ink);
	font-family: inherit;
}
input:focus-visible, select:focus-visible, textarea:focus-visible,
a:focus-visible, button:focus-visible {
	outline: 2px solid var(--lgr-pine);
	outline-offset: 2px;
}

/* ---------------------------------------------------------------- header */
/* The theme's own header/footer parts are overridden with empty files;
   hide their zero-content wrappers so no stray borders render. */
header.wp-block-template-part,
footer.wp-block-template-part {
	display: none;
}

/* custom language-aware header (mu-plugin) */
.lgr-header {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	padding: 14px 24px;
	background: var(--lgr-limewash);
	border-bottom: 2px solid var(--lgr-pine);
}
.lgr-brand {
	font-family: Lora, Constantia, Georgia, serif;
	font-weight: 700;
	font-size: 1.22rem;
	color: var(--lgr-pine-dark);
	text-decoration: none;
	margin-right: auto;
}
.lgr-brand:hover { color: var(--lgr-pine); }
.lgr-nav {
	display: flex;
	gap: 22px;
}
.lgr-nav a {
	color: var(--lgr-ink);
	text-decoration: none;
	font-weight: 700;
	font-size: .95rem;
}
.lgr-nav a:hover { color: var(--lgr-pine); }

/* language switcher (inside header) — flags */
.lgr-langbar {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 6px 12px;
	background: var(--lgr-plaster);
	border-radius: 999px;
}
.lgr-langbar .lgr-lang {
	display: block;
	line-height: 0;
	border-radius: 3px;
	opacity: .55;
	filter: saturate(.75);
	transition: opacity .15s ease, filter .15s ease;
}
.lgr-langbar .lgr-lang img {
	display: block;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(51, 50, 45, .18);
}
.lgr-langbar .lgr-lang:hover,
.lgr-langbar .lgr-lang:focus-visible {
	opacity: 1;
	filter: none;
}
.lgr-langbar .is-current {
	opacity: 1;
	filter: none;
}
.lgr-langbar .is-current img {
	box-shadow: 0 0 0 2px var(--lgr-pine);
}

/* guard: nothing may force sideways panning */
body { overflow-x: clip; }

@media (max-width: 560px) {
	.lgr-header { gap: 10px 16px; padding: 12px 16px; }
	.lgr-brand { font-size: 1.05rem; }
	.lgr-nav { gap: 16px; }
	.lgr-nav a { font-size: .88rem; }
	/* language switcher gets its own centered row */
	.lgr-langbar {
		order: 3;
		flex-basis: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}
	.lgr-searchcard { margin-top: -40px; padding: 0 12px; }
	.lgr-hero-inner { padding-top: 32px; }
	/* stack the search fields — intrinsic input widths overflow twin columns */
	.mphb_sc_search-form > p { flex-basis: 100%; }
	.mphb_sc_search-form .mphb_sc_search-submit-button-wrapper { flex: 1 1 100%; }
	.mphb_sc_search-form button[type="submit"] { width: 100%; }
}

/* flex/grid items may never refuse to shrink below intrinsic width */
.lgr-searchcard .mphb_sc_search-form > p,
.lgr-searchcard .mphb_sc_search-form input,
.lgr-searchcard .mphb_sc_search-form select,
.lgr-header > *,
.lgr-nav {
	min-width: 0;
}

/* footer legal bar (mu-plugin) */
.lgr-legalbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	justify-content: center;
	align-items: baseline;
	padding: 26px 24px 30px;
	margin-top: 56px;
	font-size: .85rem;
	background: var(--lgr-plaster);
	border-top: 0;
	position: relative;
}
.lgr-legalbar .lgr-copy {
	flex-basis: 100%;
	text-align: center;
	color: var(--lgr-muted);
	font-size: .8rem;
}
.lgr-legalbar a { text-decoration: none; }
.lgr-legalbar::before {
	/* tea-wood balcony rail */
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 8px;
	background: repeating-linear-gradient(90deg, var(--lgr-wood) 0 3px, transparent 3px 14px);
	opacity: .5;
}
.lgr-legalbar a { color: var(--lgr-muted); }
.lgr-legalbar a:hover { color: var(--lgr-pine-dark); }

/* ---------------------------------------------------------------- hero (Marea layout) */
/* Full bleed comes from the block editor's .alignfull handling (the div
   carries class="lgr-hero alignfull"), not from viewport-width hacks. */
.lgr-hero {
	position: relative;
	min-height: min(62vh, 540px);
	background-size: cover;
	background-position: center 60%;
	display: flex;
	align-items: flex-start;
}
.lgr-hero::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(31, 42, 34, .48), rgba(31, 42, 34, .04) 60%);
}
.lgr-hero-inner {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	padding: clamp(40px, 8vh, 96px) 24px 0;
	width: 100%;
}
.lgr-hero-inner h1 {
	color: #fff;
	font-size: clamp(1.7rem, 4.2vw, 3rem);
	max-width: 21ch;
	margin: 0 0 .35em;
	text-shadow: 0 2px 18px rgba(20, 30, 22, .55);
}
.lgr-hero-inner p {
	color: #F2EFE7;
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	max-width: 46ch;
	margin: 0;
	text-shadow: 0 1px 10px rgba(20, 30, 22, .6);
}

/* search card floating over hero bottom */
.lgr-searchcard {
	position: relative;
	z-index: 5;
	max-width: 1032px;
	margin: -72px auto 0;
	padding: 0 24px;
}
/* the search form is a white card wherever it appears (home hero, availability page) */
.mphb_sc_search-wrapper {
	background: var(--lgr-white);
	border-radius: var(--lgr-radius);
	box-shadow: var(--lgr-shadow);
	border: 1px solid var(--lgr-line);
	padding: 18px 20px 8px;
}
.mphb_sc_search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	align-items: flex-end;
}
.mphb_sc_search-form > p {
	flex: 1 1 120px;
	min-width: 0;
	margin: 0 0 10px;
}
.mphb_sc_search-form > p.mphb_sc_search-check-in-date,
.mphb_sc_search-form > p.mphb_sc_search-check-out-date {
	flex-grow: 1.4;
}
/* JS-injected helper text — redundant inside the compact card */
.mphb-required-fields-tip {
	display: none;
}
.mphb_sc_search-form label {
	display: block;
	font-size: .72rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--lgr-muted);
	margin-bottom: 4px;
	font-weight: 700;
}
.mphb_sc_search-form input,
.mphb_sc_search-form select {
	width: 100%;
	min-width: 0;
	height: 46px;
	box-sizing: border-box;
}
.mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
	flex: 0 0 auto;
}
.mphb_sc_search-form button[type="submit"] {
	height: 46px;
	padding: 0 1.7em;
}

/* ---------------------------------------------------------------- wood rail divider */
.lgr-rail {
	height: 10px;
	max-width: 1032px;
	margin: 40px auto 8px;
	background: repeating-linear-gradient(90deg, var(--lgr-wood) 0 3px, transparent 3px 14px);
	opacity: .5;
	border: 0;
}

/* ---------------------------------------------------------------- property cards ([mphb_rooms]) */
.mphb_sc_rooms-wrapper .mphb-room-type,
.mphb_sc_search_results-wrapper .mphb-room-type {
	background: var(--lgr-white);
	border: 1px solid var(--lgr-line);
	border-radius: var(--lgr-radius);
	overflow: hidden;
	box-shadow: 0 8px 22px -16px rgba(51, 50, 45, .35);
}
.mphb_sc_rooms-wrapper.mphb-room-types {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 26px;
	align-items: stretch;
}
/* neutralize the plugin's inline-block/float card layout */
.mphb_sc_rooms-wrapper .mphb-room-type {
	display: flex;
	flex-direction: column;
	float: none;
	width: auto;
	margin: 0;
	vertical-align: top;
}
/* the plugin spaces stacked cards with a sibling margin — not in a grid */
.mphb_sc_rooms-wrapper .mphb-room-type + .mphb-room-type,
.mphb_sc_rooms-wrapper .mphb-room-type:not(:first-child) {
	margin-top: 0;
}
.mphb-room-type .mphb-loop-room-thumbnail {
	margin: 0 !important;
}
.mphb-room-type img.wp-post-image {
	display: block;
	width: 100%;
	height: 240px;
	object-fit: cover;
}
h2.mphb-room-type-title {
	font-size: 1.25rem;
	margin: .8em 1rem .2em;
}
.mphb-room-type-title a { text-decoration: none; color: var(--lgr-ink); }
.mphb-room-type-title a:hover { color: var(--lgr-pine); }
.mphb-room-type .mphb-excerpt,
.mphb-room-type .mphb-room-type-attributes {
	margin: 0 1rem .6em;
	font-size: .92rem;
	color: var(--lgr-muted);
}
.mphb-room-type .mphb-price,
.mphb-price {
	color: var(--lgr-pine-dark);
	font-weight: 800;
}
.mphb-room-type .mphb-view-details-button,
.mphb-room-type .mphb-book-button {
	margin: 0 1rem 1rem;
}
/* tea-wood lintel over the card body (the h2 only — an <a> shares the class) */
h2.mphb-room-type-title::before {
	content: "";
	display: block;
	width: 46px;
	height: 3px;
	background: var(--lgr-wood);
	margin-bottom: 10px;
	opacity: .75;
}
.mphb-room-type p {
	margin: 0 1rem .6em;
}
/* buttons: one consistent left edge, no plugin padding/indent */
.mphb-room-type .mphb-view-details-button-wrapper {
	margin: auto 1rem .6rem;
	padding: 0;
	text-indent: 0;
	text-align: left;
}
.mphb-room-type .mphb-to-book-btn-wrapper {
	margin: 0 1rem 1.2rem;
	padding: 0;
	text-indent: 0;
	text-align: left;
}
/* home grid: one primary button per card — Book lives on the detail page */
.mphb_sc_rooms-wrapper .mphb-to-book-btn-wrapper {
	display: none;
}
.mphb_sc_rooms-wrapper .mphb-view-details-button-wrapper {
	margin-bottom: 1.2rem;
}

/* --------------------------------------- search-results card internals */
/* the Details heading and attributes list ship without the card's 1rem
   side margin; the View Details button stacks its own margin on top of
   its wrapper's — align everything to one left edge */
.mphb-room-type .mphb-room-type-details-title {
	font-size: 1rem;
	margin: .4rem 1rem .3rem;
}
.mphb-room-type ul.mphb-loop-room-type-attributes {
	margin: 0 1rem .8rem;
	padding-left: 1.15rem;
	font-size: .92rem;
	color: var(--lgr-muted);
}
.mphb-view-details-button-wrapper .mphb-view-details-button,
.mphb-to-book-btn-wrapper .mphb-book-button {
	margin: 0;
}
.mphb-to-book-btn-wrapper br {
	display: none;
}

/* ---------------------------------------------------------------- trust strip */
/* padded blocks constrained by the layout's max-width must count padding
   inside that width, or they render wider than their unpadded siblings */
.lgr-trust,
.wpcf7,
.mphb-booking-details,
.mphb-checkout-form {
	box-sizing: border-box;
}
.lgr-trust {
	background: var(--lgr-plaster);
	text-align: center;
	font-size: .88rem;
	letter-spacing: .05em;
	color: #7A6A50;
	padding: 14px 24px;
	border-radius: var(--lgr-radius);
	margin-top: 36px;
}

/* VV/NRA registration line on property pages */
.lgr-reg, .mphb-room-type-page .lgr-reg {
	display: inline-block;
	border: 1px solid var(--lgr-pine);
	color: var(--lgr-pine-dark);
	border-radius: 999px;
	padding: 3px 14px;
	font-size: .8rem;
}

/* ---------------------------------------------------------------- MotoPress general */
.mphb-datepick,
.datepick-popup .datepick {
	font-family: "Nunito Sans", "Segoe UI", sans-serif;
	border-color: var(--lgr-line);
}
.datepick-highlight, .datepick .datepick-selected {
	background: var(--lgr-pine) !important;
	color: #fff !important;
}
.mphb-booking-details, .mphb-checkout-form {
	background: var(--lgr-white);
	border: 1px solid var(--lgr-line);
	border-radius: var(--lgr-radius);
	padding: 18px 22px;
}
.mphb-errors-wrapper {
	border-left: 3px solid #B4472E;
	background: #FBF1ED;
	padding: 10px 14px;
	border-radius: 4px;
}
/* the plugin prints the container even with no errors (whitespace only) */
.mphb-errors-wrapper:not(:has(*)) {
	display: none;
}

/* content width comes from theme.json settings.layout (contentSize 1032px) */

body.home .wp-block-post-title { display: none; }

/* Home: hero sits flush under the header (TT5 injects inline spacing) */
body.home main.wp-block-group { margin-top: 0 !important; }
body.home main > .wp-block-group.alignfull { padding-top: 0 !important; }

/* ------------------------------------------------- property detail pages */
body.single-mphb_room_type .wp-block-post-title {
	margin: 2rem 0 1.2rem;
}
body.single-mphb_room_type .wp-block-post-featured-image {
	margin-bottom: 2rem;
}
body.single-mphb_room_type .wp-block-post-featured-image img {
	border-radius: var(--lgr-radius);
}

/* two columns: narrative + calendar left, sticky booking card right */
@media (min-width: 881px) {
	body.single-mphb_room_type .wp-block-post-content {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 370px;
		gap: 0 48px;
		align-items: start;
	}
	body.single-mphb_room_type .wp-block-post-content > * {
		grid-column: 1;
		min-width: 0;
	}
	body.single-mphb_room_type .wp-block-post-content > .lgr-bookbox {
		grid-column: 2;
		grid-row: 1 / span 98;
		position: sticky;
		top: 24px;
	}
	body.single-mphb_room_type .wp-block-post-content > .mphb-single-room-type-gallery-wrapper {
		grid-column: 1 / -1;
		grid-row: 99;
	}
}

/* section headings get the tea-wood lintel */
.mphb-details-title,
.mphb-calendar-title {
	font-size: 1.3rem;
	margin: 1.8rem 0 .8rem;
}
.mphb-details-title::before,
.mphb-calendar-title::before {
	content: "";
	display: block;
	width: 46px;
	height: 3px;
	background: var(--lgr-wood);
	margin-bottom: 10px;
	opacity: .75;
}

/* details list as chips */
ul.mphb-single-room-type-attributes {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
ul.mphb-single-room-type-attributes li {
	background: var(--lgr-plaster);
	border-radius: 999px;
	padding: 5px 16px;
	font-size: .9rem;
}
ul.mphb-single-room-type-attributes .mphb-attribute-title {
	color: var(--lgr-muted);
}

/* inline availability calendar — replace the plugin's gray-gradient skin */
.mphb-calendar.inlinePicker {
	background: var(--lgr-white);
	border: 1px solid var(--lgr-line);
	border-radius: var(--lgr-radius);
	padding: 14px;
	max-width: 100%;
	display: inline-block;
}
.mphb-calendar.inlinePicker .datepick {
	border: 0 !important;
	background: transparent !important;
	font-family: inherit !important;
}
.datepick .datepick-nav,
.datepick .datepick-ctrl {
	background: var(--lgr-plaster) !important;
	border-radius: 6px;
	color: var(--lgr-pine-dark) !important;
}
.datepick .datepick-nav a,
.datepick .datepick-ctrl a {
	color: var(--lgr-pine-dark) !important;
	background: transparent !important;
	font-weight: 700;
}
.datepick .datepick-month-header,
.datepick .datepick-month-header select,
.datepick .datepick-month-header input {
	background: transparent !important;
	color: var(--lgr-ink) !important;
	font-weight: 700;
	border: 0;
	height: auto;
}
.datepick .datepick-month th,
.datepick .datepick-month th span {
	background: transparent !important;
	color: var(--lgr-muted) !important;
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.datepick .datepick-month td {
	background: transparent !important;
}
.datepick .datepick-month td span,
.datepick .datepick-month td a {
	background: transparent !important;
	border-radius: 5px;
	color: var(--lgr-ink);
}
.datepick .datepick-month td .datepick-today {
	outline: 2px solid var(--lgr-wood);
	outline-offset: -2px;
}
/* hover: visible plaster chip with dark text — the transparent-background
   reskin was leaving the plugin's white hover text on a white page */
.datepick .datepick-month td a:hover,
.mphb-datepick-popup .datepick-month td a:hover,
.mphb-calendar td .mphb-selectable-date--check-in:hover,
.mphb-calendar td .mphb-selectable-date--check-out:hover {
	background: var(--lgr-plaster-deep) !important;
	color: var(--lgr-ink) !important;
}
.datepick .datepick-month td a.datepick-selected:hover,
.datepick .datepick-month td a.datepick-highlight:hover {
	background: var(--lgr-pine-dark) !important;
	color: #fff !important;
}
/* keep booked/blocked dates semantically visible */
.datepick .datepick-month td .mphb-booked-date,
.datepick .datepick-month td.mphb-booked-date {
	background: #F3DEDA !important;
	color: #8A3B28 !important;
	text-decoration: line-through;
}

/* photo grid gallery (native [gallery] markup, Fancybox lightbox on click) */
.mphb-single-room-type-gallery-wrapper {
	margin-top: 2.4rem;
}
.mphb-single-room-type-gallery-wrapper .gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 10px;
}
.mphb-single-room-type-gallery-wrapper .gallery-item {
	margin: 0;
}
.mphb-single-room-type-gallery-wrapper .gallery-item:first-child {
	grid-column: span 2;
	grid-row: span 2;
}
.mphb-single-room-type-gallery-wrapper .gallery-icon,
.mphb-single-room-type-gallery-wrapper .gallery-icon a {
	display: block;
	height: 100%;
}
.mphb-single-room-type-gallery-wrapper .gallery-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	border-radius: 6px;
}

/* sticky booking card */
.lgr-bookbox {
	background: var(--lgr-white);
	border: 1px solid var(--lgr-line);
	border-radius: var(--lgr-radius);
	box-shadow: var(--lgr-shadow);
	padding: 20px 22px 22px;
	margin-top: 1rem;
}
.lgr-bookbox .mphb-regular-price {
	font-family: Lora, Georgia, serif;
	font-size: 1.5rem;
	color: var(--lgr-pine-dark);
	margin: 0 0 .3em;
}
.lgr-bookbox .mphb-reservation-form-title {
	font-size: 1.05rem;
	margin: 0 0 .8em;
	color: var(--lgr-muted);
	font-family: "Nunito Sans", "Segoe UI", sans-serif;
	font-weight: 700;
}
.lgr-bookbox form.mphb-booking-form > p {
	margin: 0 0 .9em;
}
.lgr-bookbox form.mphb-booking-form label {
	display: block;
	font-size: .72rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--lgr-muted);
	margin-bottom: 4px;
	font-weight: 700;
}
.lgr-bookbox form.mphb-booking-form input,
.lgr-bookbox form.mphb-booking-form select {
	width: 100%;
	height: 44px;
	box-sizing: border-box;
}
.lgr-bookbox .mphb-reserve-btn-wrapper {
	margin: 1.1em 0 0;
}
.lgr-bookbox .mphb-reserve-btn-wrapper button {
	width: 100%;
}

/* ------------------------------------------------------------- blog list */
.wp-block-query-title {
	margin: 2rem 0 1.6rem;
}
.lgr-bloglist .wp-block-post-template {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 26px;
	list-style: none;
	padding: 0;
	align-items: stretch;
}
/* core flow-layout adds margin-block-start between <li>s — poison in a grid */
.lgr-bloglist .wp-block-post-template > li {
	margin: 0 !important;
}
/* uniform cover crop regardless of source aspect */
.lgr-blogcard .wp-block-post-featured-image img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	object-fit: cover;
}
.lgr-blogcard {
	background: var(--lgr-white);
	border: 1px solid var(--lgr-line);
	border-radius: var(--lgr-radius);
	overflow: hidden;
	box-shadow: 0 8px 22px -16px rgba(51, 50, 45, .35);
	height: 100%;
}
.lgr-blogcard .wp-block-post-featured-image {
	margin: 0;
}
.lgr-blogcard .wp-block-post-featured-image img {
	display: block;
	border-radius: 0;
}
.lgr-blogcard h2 {
	font-size: 1.18rem;
	margin: .9rem 1.1rem .3rem;
}
.lgr-blogcard h2::before {
	content: "";
	display: block;
	width: 46px;
	height: 3px;
	background: var(--lgr-wood);
	margin-bottom: 10px;
	opacity: .75;
}
.lgr-blogcard h2 a { text-decoration: none; color: var(--lgr-ink); }
.lgr-blogcard h2 a:hover { color: var(--lgr-pine); }
.lgr-blogcard .wp-block-post-date {
	margin: 0 1.1rem;
	font-size: .78rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--lgr-muted);
}
.lgr-blogcard .wp-block-post-excerpt {
	margin: .5rem 1.1rem 1.2rem;
	font-size: .93rem;
	color: var(--lgr-muted);
}
.wp-block-query-pagination {
	margin-top: 2rem;
	gap: 14px;
}
.lgr-photo-credit {
	font-size: .74rem;
	color: var(--lgr-muted);
	border-top: 1px solid var(--lgr-line);
	padding-top: 10px;
	margin-top: 2.4rem;
}
/* single post date: SUMMER 2026 treatment */
body.single-post .wp-block-post-date {
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--lgr-muted);
	margin: 0 0 1.4rem;
}
/* single post readability */
body.single-post .wp-block-post-content > * {
	max-width: 72ch;
}
body.single-post .wp-block-post-title {
	margin: 2rem 0 .4rem;
	max-width: 26ch;
}
body.single-post .wp-block-post-content h2 {
	font-size: 1.35rem;
	margin-top: 1.6em;
}

/* --------------------------------------------------------- post tables */
.wp-block-table {
	overflow-x: auto;
	margin: 1.4rem 0;
}
.wp-block-table table {
	border-collapse: collapse;
	width: 100%;
	font-size: .92rem;
	font-variant-numeric: tabular-nums;
}
.wp-block-table th {
	background: var(--lgr-plaster);
	color: var(--lgr-ink);
	font-family: "Nunito Sans", "Segoe UI", sans-serif;
	font-size: .78rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-align: left;
	padding: 8px 12px;
}
.wp-block-table td {
	border-bottom: 1px solid var(--lgr-line);
	padding: 7px 12px;
}
.wp-block-table tbody tr:nth-child(even) td {
	background: rgba(241, 235, 223, .35);
}

/* -------------------------------------------- homepage blog teaser row */
.lgr-homeblog {
	margin-top: 12px;
}
.lgr-homeblog > h2 {
	font-size: 1.5rem;
	margin: 0 0 1.2rem;
}
.lgr-homeblog .lgr-bloglist .wp-block-post-template {
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.lgr-homeblog .lgr-blogcard h2 {
	font-size: 1.08rem;
}
.lgr-homeblog-more {
	text-align: center;
	margin: 1.6rem 0 0;
}
.lgr-homeblog-more .button {
	text-decoration: none;
	display: inline-block;
}

/* ---------------------------------------------------- post booking CTA */
.lgr-postcta {
	background: var(--lgr-plaster);
	border-radius: var(--lgr-radius);
	padding: 26px 28px;
	margin-top: 2.6rem;
	box-sizing: border-box;
}
.lgr-postcta h2 {
	font-size: 1.25rem;
	margin: 0 0 .35em;
}
.lgr-postcta h2::before {
	content: "";
	display: block;
	width: 46px;
	height: 3px;
	background: var(--lgr-wood);
	margin-bottom: 10px;
	opacity: .75;
}
.lgr-postcta p {
	margin: 0 0 1.1em;
	color: var(--lgr-muted);
}
.lgr-postcta .button {
	display: inline-block;
	text-decoration: none;
}

/* --------------------------------------------------- housekeeping page */
.lgr-clean-day {
	font-size: 1.05rem;
	margin: 1.6rem 0 .5rem;
	color: var(--lgr-pine-dark);
}
.lgr-clean-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.lgr-clean-list li {
	background: var(--lgr-white);
	border: 1px solid var(--lgr-line);
	border-radius: var(--lgr-radius);
	padding: 12px 16px;
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	align-items: center;
}
.lgr-clean-list li.is-done {
	color: var(--lgr-muted);
	background: transparent;
}
.lgr-clean-room { font-weight: 700; }
.lgr-clean-what { color: var(--lgr-muted); font-size: .9rem; }
.lgr-clean-same {
	color: #8A3B28;
	background: #F3DEDA;
	border-radius: 4px;
	padding: 2px 8px;
	font-size: .8rem;
	letter-spacing: .04em;
}
.lgr-clean-doneform { margin-left: auto; }
.lgr-clean-notice {
	background: var(--lgr-plaster);
	border-left: 3px solid var(--lgr-pine);
	padding: 8px 14px;
	border-radius: 4px;
}

/* ------------------------------------------------------ contact form (CF7) */
.wpcf7 {
	background: var(--lgr-white);
	border: 1px solid var(--lgr-line);
	border-radius: var(--lgr-radius);
	box-shadow: var(--lgr-shadow);
	padding: 24px 26px;
	max-width: 640px;
}
.wpcf7 label {
	display: block;
	font-size: .72rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--lgr-muted);
	font-weight: 700;
	margin-bottom: 14px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
	display: block;
	width: 100%;
	margin-top: 5px;
	box-sizing: border-box;
	font-size: 1rem;
	letter-spacing: normal;
	text-transform: none;
}
.wpcf7 textarea { min-height: 150px; }
.wpcf7 .wpcf7-not-valid-tip { color: #B4472E; font-size: .82rem; text-transform: none; letter-spacing: normal; }
.wpcf7 form .wpcf7-response-output {
	margin: 1em 0 0;
	padding: 10px 14px;
	border: 0;
	border-left: 3px solid var(--lgr-pine);
	background: var(--lgr-plaster);
	border-radius: 4px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
	border-left-color: #B4472E;
	background: #FBF1ED;
}

/* ------------------------------------------------------- cookie banner */
.cmplz-cookiebanner {
	font-family: "Nunito Sans", "Segoe UI", system-ui, sans-serif !important;
	border-radius: var(--lgr-radius) !important;
	border: 1px solid var(--lgr-line) !important;
}
.cmplz-cookiebanner .cmplz-header .cmplz-title {
	font-family: Lora, Georgia, serif !important;
}
.cmplz-cookiebanner .cmplz-btn.cmplz-accept {
	background-color: var(--lgr-pine) !important;
	border-color: var(--lgr-pine) !important;
	color: #fff !important;
}
.cmplz-cookiebanner .cmplz-btn.cmplz-deny,
.cmplz-cookiebanner .cmplz-btn.cmplz-view-preferences {
	background-color: #fff !important;
	border: 1px solid var(--lgr-pine) !important;
	color: var(--lgr-pine-dark) !important;
}
.cmplz-cookiebanner ul {
	list-style: none;
	padding-left: 0;
}
