/*
 * PR Rentals — marketing patterns + card system.
 *
 * Every brand value (color, type family/size, radius, shadow, gradient) is a
 * theme.json token referenced via var(--wp--preset|custom--*). Only structural
 * geometry (positions, fixed media heights, hairline widths) uses literal px.
 *
 * This is the shared visual contract: the Guesty Direct Booking plugin's live-inventory
 * grids emit the same class names (.prr-card, .prr-badge, .prr-rating, …) so dynamic
 * output matches these static patterns exactly.
 */

/* ---------- Shared section scaffolding ---------- */
.prr-container {
	max-width: 1240px;
	margin: 0 auto;
	padding-inline: var(--wp--preset--spacing--60); /* 32px */
}
.prr-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--wp--preset--spacing--50);
	margin-bottom: var(--wp--preset--spacing--60);
	flex-wrap: wrap;
}
.prr-eyebrow {
	margin: 0 0 14px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--caption);
	font-weight: 600;
	letter-spacing: var(--wp--custom--letter-spacing--eyebrow);
	text-transform: uppercase;
	/* On light surfaces use the darker gold (≈7:1 AA). Bright gold (#F3B007)
	   on light is only ~1.6:1; it is kept for dark surfaces + decorative use. */
	color: var(--wp--preset--color--on-gold);
}

/* Screen-reader-only utility for headings/labels that are visual context. */
.prr-sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.prr-section__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--xx-large);
	font-weight: 600;
	line-height: var(--wp--custom--line-height--heading);
	letter-spacing: -0.01em;
	color: var(--wp--preset--color--ocean);
}

/* Arrow / "view all" link */
.prr-arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	color: var(--wp--preset--color--ocean);
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	padding-bottom: 3px;
	transition: color 0.18s ease, border-color 0.18s ease;
}
.prr-arrow-link:hover {
	color: var(--wp--preset--color--gold-hover);
	border-bottom-color: var(--wp--preset--color--gold);
}
.prr-arrow-link svg {
	width: 15px;
	height: 15px;
}


/* ============================================================
   HERO (drone film) + overlapping search slot
   ============================================================ */
.prr-hero {
	position: relative;
	background: var(--wp--preset--color--ocean);
}
.prr-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border: 0;
}
.prr-hero__scrim {
	position: absolute;
	inset: 0;
	background: var(--wp--preset--gradient--hero-scrim);
}
.prr-hero__inner {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	padding: 96px var(--wp--preset--spacing--60) 150px;
	text-align: center;
}
.prr-hero__h1 {
	max-width: 1000px;
	margin: 0 auto;
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--display);
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--white);
	text-wrap: balance;
}
.prr-hero__sub {
	max-width: 600px;
	margin: 22px auto 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--large);
	font-weight: 400;
	line-height: 1.55;
	color: var(--wp--preset--color--on-dark-bright);
}

/* Overlapping search bar (booking plugin slot). The following section
   (.prr-experiences) carries 128px top padding to leave room for the half
   that hangs below the hero. */
.prr-hero__search {
	position: relative;
	z-index: 2;
	max-width: 1000px;
	margin: -1px auto 0;
	padding: 0 var(--wp--preset--spacing--60);
	transform: translateY(50%);
}
.prr-search-pill {
	display: flex;
	align-items: center;
	padding: 8px 8px 8px 10px;
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border-warm);
	border-radius: var(--wp--custom--radius--pill);
	box-shadow: 0 24px 60px rgba(8, 42, 67, 0.28);
}
.prr-search-seg {
	display: flex;
	align-items: center;
	gap: 11px;
	flex: 1;
	min-width: 0;
	padding: 13px 20px;
	border-radius: var(--wp--custom--radius--pill);
}
.prr-search-seg:first-of-type {
	flex: 1.3;
}
.prr-search-seg svg {
	width: 20px;
	height: 20px;
	stroke: var(--wp--preset--color--ocean);
	flex-shrink: 0;
}
.prr-search-seg__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1;
}
.prr-search-seg__label {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--slate);
}
.prr-search-seg__value {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 15px;
	font-weight: 600;
	color: var(--wp--preset--color--ocean);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.prr-search-div {
	width: 1px;
	height: 36px;
	background: var(--wp--preset--color--divider);
	flex-shrink: 0;
}
.prr-search-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-left: 6px;
	padding: 18px 30px;
	border: none;
	border-radius: var(--wp--custom--radius--pill);
	background: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--ocean);
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: var(--wp--preset--shadow--button);
	transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
	/* Ensure the button itself is the click target; children (SVG + text) don't intercept. */
	pointer-events: auto;
}
.prr-search-btn > * {
	pointer-events: none;
}
.prr-search-btn svg {
	width: 19px;
	height: 19px;
	stroke: var(--wp--preset--color--ocean);
}
.prr-search-btn:hover {
	background: var(--wp--preset--color--gold-hover);
	box-shadow: var(--wp--preset--shadow--button-hover);
	transform: translateY(-2px);
}
.prr-search-btn:active {
	background: var(--wp--preset--color--gold-hover);
	box-shadow: var(--wp--preset--shadow--button);
	transform: translateY(0);
}
.prr-search-btn:focus-visible {
	outline: 3px solid var(--wp--preset--color--ocean);
	outline-offset: 3px;
}

/* Search pill — seamless native inputs (select, date, number).
   Remove all browser chrome so inputs merge with the static .prr-search-seg__value look. */
.prr-search-pill select,
.prr-search-pill input[type="date"],
.prr-search-pill input[type="number"] {
	border: 0;
	background: transparent;
	box-shadow: none;
	outline: none;
	font: inherit;
	color: var(--wp--preset--color--ocean);
	font-weight: 600;
	padding: 0;
	margin: 0;
	width: 100%;
	min-width: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}
/* Location select: custom dropdown chevron (native arrow removed above) */
.prr-search-seg__select {
	padding-right: 18px;
	background-image: url( "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230c3a5b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E" );
	background-repeat: no-repeat;
	background-position: right center;
	text-overflow: ellipsis;
}
/* Hide the redundant per-input calendar icons (the segment has its own); JS
   restores click-to-open via showPicker(). */
.prr-search-pill input[type="date"]::-webkit-calendar-picker-indicator {
	display: none;
}
.prr-search-pill input[type="number"]::-webkit-outer-spin-button,
.prr-search-pill input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.prr-search-pill input[type="number"] {
	-moz-appearance: textfield;
}
/* Accessible focus: highlight the segment instead of the native input box */
.prr-search-seg:focus-within {
	box-shadow: inset 0 0 0 2px var(--wp--preset--color--gold-soft);
	border-radius: var(--wp--custom--radius--pill);
}
/* Muted placeholder */
.prr-search-pill input::placeholder {
	color: var(--wp--preset--color--slate);
	opacity: 1;
}
/* Date inputs: keep them side-by-side within the dates segment */
.prr-search-seg__dates {
	display: flex;
	align-items: center;
	gap: 4px;
}
.prr-search-seg__date-input {
	flex: 1;
	min-width: 0;
}

/* Guests +/- stepper (shared by the home + properties search bars) */
.prr-guests {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.prr-guests__btn {
	flex: none;
	width: 26px;
	height: 26px;
	padding: 0;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 50%;
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--ocean);
	font-size: 17px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color 0.15s ease;
}
.prr-guests__btn:hover {
	border-color: var(--wp--preset--color--ocean);
}
/* Override the pill's full-width number style: keep the guests value compact.
   Extra specificity needed to beat `.prr-search-pill input[type="number"]`. */
.prr-search-pill .prr-guests .prr-guests__input {
	width: 40px;
	min-width: 40px;
	flex: none;
	text-align: center;
	cursor: text;
}

/* ============================================================
   THEMED DATE RANGE PICKER (enhances the native date inputs)
   ============================================================ */
.prr-daterange {
	position: relative;
	/* Override .prr-search-seg__value's clipping so the calendar can escape, and
	   raise the whole dates field above later segments (guests/Search). */
	overflow: visible;
	z-index: 20;
}
.prr-daterange.is-open {
	z-index: 30;
}
.prr-daterange__trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	font-weight: 600;
	color: var(--wp--preset--color--ocean);
	text-align: left;
	cursor: pointer;
	white-space: nowrap;
}
.prr-daterange__sep {
	color: var(--wp--preset--color--slate);
}
.prr-daterange__val.is-placeholder {
	color: var(--wp--preset--color--slate);
	font-weight: 500;
}
.prr-daterange__pop {
	position: absolute;
	z-index: 1000;
	top: calc(100% + 12px);
	left: 0;
	width: 300px;
	max-width: calc(100vw - 40px);
	padding: 14px;
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border-warm);
	border-radius: var(--wp--custom--radius--card);
	box-shadow: var(--wp--preset--shadow--overlay);
	cursor: default;
}
.prr-daterange__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.prr-daterange__title {
	font-family: var(--wp--preset--font-family--inter);
	font-weight: 700;
	color: var(--wp--preset--color--ocean);
}
.prr-daterange__nav {
	flex: none;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 50%;
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--ocean);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}
.prr-daterange__nav:hover:not(:disabled) {
	border-color: var(--wp--preset--color--ocean);
}
.prr-daterange__nav:disabled {
	opacity: 0.35;
	cursor: default;
}
.prr-daterange__dow {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	margin-bottom: 4px;
}
.prr-daterange__dow span {
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	color: var(--wp--preset--color--slate);
}
.prr-daterange__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
}
.prr-daterange__cell {
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 8px;
	background: none;
	font: inherit;
	font-size: 13.5px;
	color: var(--wp--preset--color--charcoal);
	cursor: pointer;
}
.prr-daterange__cell--empty {
	cursor: default;
}
.prr-daterange__cell:not(.is-disabled):not(.is-start):not(.is-end):not(.prr-daterange__cell--empty):hover {
	background: var(--wp--preset--color--sand);
}
.prr-daterange__cell.is-disabled {
	color: var(--wp--preset--color--slate-faint);
	cursor: default;
}
.prr-daterange__cell.is-inrange {
	background: var(--wp--preset--color--gold-soft);
	border-radius: 0;
}
.prr-daterange__cell.is-start,
.prr-daterange__cell.is-end {
	background: var(--wp--preset--color--ocean);
	color: var(--wp--preset--color--white);
	font-weight: 700;
}
.prr-daterange__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 12px;
}
.prr-daterange__action {
	padding: 8px 16px;
	border: 0;
	border-radius: var(--wp--custom--radius--button);
	background: none;
	font: inherit;
	font-weight: 600;
	color: var(--wp--preset--color--ocean);
	cursor: pointer;
}
.prr-daterange__action--primary {
	background: var(--wp--preset--color--gold);
}
.prr-daterange__action--primary:hover {
	background: var(--wp--preset--color--gold-hover);
}
/* On narrow screens anchor the popover to the field's right edge so it can't
   overflow the viewport (the field is indented by the segment icon). */
@media (max-width: 600px) {
	.prr-daterange__pop {
		left: auto;
		right: 0;
		width: 300px;
		max-width: calc(100vw - 32px);
	}
}

/* ============================================================
   EXPERIENCES ROW + COLLECTIONS SECTION
   ============================================================ */
.prr-experiences {
	background: var(--wp--preset--color--white);
	border-block: 1px solid var(--wp--preset--color--border);
	/* First section under the hero: the extra top padding leaves room for the
	   half of the overlapping search bar that hangs below the hero. */
	padding-block: 128px 80px;
}
.prr-collections {
	padding-block: 80px 40px;
}
.prr-collections__intro {
	text-align: center;
	margin-bottom: 8px;
}
.prr-collections__intro .prr-eyebrow {
	margin-bottom: 14px;
}

/* ============================================================
   CARD SYSTEM (listing + experience) — Guesty Direct Booking plugin contract
   ============================================================ */
.prr-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wp--preset--spacing--50);
}
.prr-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.prr-card {
	display: block;
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--card);
	overflow: hidden;
	box-shadow: var(--wp--preset--shadow--card);
	text-decoration: none;
	color: inherit;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.prr-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--wp--preset--shadow--card-hover);
}
.prr-card__media {
	position: relative;
	height: 212px;
}
.prr-card--experience .prr-card__media {
	height: 168px;
}
.prr-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Listing-card photo slider */
.prr-cardslider {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.prr-cardslider__track {
	display: flex;
	height: 100%;
	transition: transform 0.3s ease;
}
.prr-cardslider__track .prr-card__img {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}
.prr-cardslider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--wp--preset--color--ocean);
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(12, 58, 91, 0.22);
	opacity: 0;
	transition: opacity 0.15s ease, background 0.15s ease;
	z-index: 3;
}
.prr-card__media:hover .prr-cardslider__nav,
.prr-cardslider__nav:focus-visible {
	opacity: 1;
}
@media (hover: none) {
	.prr-cardslider__nav {
		opacity: 1;
	}
}
.prr-cardslider__nav:hover {
	background: var(--wp--preset--color--white);
}
.prr-cardslider__nav svg {
	width: 16px;
	height: 16px;
}
.prr-cardslider__nav--prev {
	left: 10px;
}
.prr-cardslider__nav--next {
	right: 10px;
}
.prr-cardslider__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	display: flex;
	justify-content: center;
	gap: 6px;
	z-index: 3;
}
.prr-cardslider__dot {
	width: 7px;
	height: 7px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 1px 2px rgba(12, 58, 91, 0.25);
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}
.prr-cardslider__dot.is-active {
	background: var(--wp--preset--color--white);
	transform: scale(1.3);
}

/* Overlay badges */
.prr-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--caption);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	padding: 7px 11px;
	border-radius: var(--wp--custom--radius--tag);
	background: var(--wp--preset--color--gold);
	color: var(--wp--preset--color--ocean);
}
.prr-badge--experience {
	background: var(--wp--preset--color--ocean);
	color: var(--wp--preset--color--gold-soft);
}
.prr-rating {
	position: absolute;
	top: 13px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 11px 7px 9px;
	border-radius: var(--wp--custom--radius--pill);
	background: var(--wp--preset--color--ocean);
	color: var(--wp--preset--color--white);
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--caption);
	font-weight: 600;
}
.prr-rating svg {
	width: 12px;
	height: 12px;
	fill: var(--wp--preset--color--gold);
}

.prr-card__body {
	padding: 18px 20px 20px;
}
.prr-card__hood {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 9px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--caption);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--slate);
}
.prr-card__hood svg {
	width: 12px;
	height: 12px;
	stroke: var(--wp--preset--color--slate);
}
.prr-card__title {
	margin: 0 0 14px;
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: 18px;
	font-weight: 600;
	line-height: var(--wp--custom--line-height--tight);
	color: var(--wp--preset--color--ocean);
}
.prr-card--experience .prr-card__title {
	margin-bottom: 12px;
}
.prr-card__meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}
.prr-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 500;
	color: var(--wp--preset--color--slate);
}
.prr-card__meta svg {
	width: 13px;
	height: 13px;
	stroke: var(--wp--preset--color--slate);
}
.prr-card__foot {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding-top: 14px;
	border-top: 1px solid var(--wp--preset--color--divider);
}
.prr-price {
	white-space: nowrap;
}
.prr-price {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 19px;
	font-weight: 700;
	color: var(--wp--preset--color--charcoal);
}
.prr-price__unit {
	font-size: var(--wp--preset--font-size--small);
	font-weight: 400;
	color: var(--wp--preset--color--slate);
}
.prr-price__from {
	font-size: var(--wp--preset--font-size--small);
	font-weight: 400;
	color: var(--wp--preset--color--slate);
}
.prr-card__specs {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.prr-card__cap {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 500;
	color: var(--wp--preset--color--slate);
}
.prr-card__cap svg {
	width: 14px;
	height: 14px;
	stroke: var(--wp--preset--color--slate);
}

/* ============================================================
   COLLECTION BAND HEADING
   ============================================================ */
.prr-collection-band {
	padding-block: 48px;
	border-bottom: 1px solid var(--wp--preset--color--border);
}
.prr-collection-band__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--wp--preset--spacing--50);
	margin-bottom: 26px;
	flex-wrap: wrap;
}
.prr-collection-band__title {
	margin: 0 0 8px;
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--x-large);
	font-weight: 600;
	line-height: 1.15;
	color: var(--wp--preset--color--ocean);
}
.prr-collection-band__desc {
	margin: 0;
	max-width: 560px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 15px;
	line-height: var(--wp--custom--line-height--body);
	color: var(--wp--preset--color--slate);
}

/* ============================================================
   SOCIAL PROOF / REVIEWS
   ============================================================ */
.prr-reviews {
	position: relative;
	background: var(--wp--preset--gradient--ocean-hero);
}
.prr-reviews__inner {
	padding-block: 84px;
}
.prr-reviews__grid {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 56px;
	align-items: start;
}
.prr-eyebrow--light {
	margin-bottom: 18px;
	/* On the dark ocean band, bright gold passes (~7.5:1). */
	color: var(--wp--preset--color--gold);
}
.prr-stat {
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.prr-stat__num {
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--display);
	font-weight: 600;
	line-height: 0.9;
	color: var(--wp--preset--color--white);
}
.prr-stat__plus {
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--xx-large);
	font-weight: 600;
	color: var(--wp--preset--color--gold);
}
.prr-stat__label {
	margin: 10px 0 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 500;
	line-height: 1.5;
	color: var(--wp--preset--color--on-dark-bright);
}
.prr-stat__avg {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
}
.prr-stars {
	display: flex;
	gap: 3px;
}
.prr-stars svg {
	width: 20px;
	height: 20px;
	fill: var(--wp--preset--color--gold);
}
.prr-stat__avg-label {
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 600;
	color: var(--wp--preset--color--white);
}
.prr-reviews__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.prr-review {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px 22px;
	border-radius: var(--wp--custom--radius--card);
	background: var(--wp--custom--surface--glass);
	border: 1px solid var(--wp--custom--surface--glass-border);
}
.prr-review__stars {
	display: flex;
	gap: 2px;
}
.prr-review__stars svg {
	width: 15px;
	height: 15px;
	fill: var(--wp--preset--color--gold);
}
.prr-review__quote {
	flex: 1;
	margin: 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 15px;
	line-height: var(--wp--custom--line-height--body);
	color: var(--wp--preset--color--on-dark-bright);
}
.prr-review__name {
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	color: var(--wp--preset--color--white);
}
.prr-review__trip {
	margin-top: 3px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--caption);
	color: var(--wp--preset--color--on-dark);
}

/* ============================================================
   BEST PRICE GUARANTEE — badge + banner
   ============================================================ */
.prr-bpg-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 10px 17px 10px 14px;
	border-radius: var(--wp--custom--radius--pill);
	background: var(--wp--preset--color--ocean);
}
.prr-bpg-badge svg {
	width: 17px;
	height: 17px;
	stroke: var(--wp--preset--color--gold);
	flex-shrink: 0;
}
.prr-bpg-badge span {
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	color: var(--wp--preset--color--white);
}

.prr-bpg-banner {
	background: var(--wp--preset--color--gold);
	/* Sit flush against the reviews above (no page-background strip). */
	margin-block: 0;
}
/* Remove the block-spacing gaps WordPress puts between the top-level page
   blocks, so header → hero and last-section → footer sit flush (the design has
   no sand strips between the full-width bands). */
.wp-site-blocks > * {
	margin-block-start: 0;
}
.prr-bpg-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--wp--preset--spacing--60);
	padding-block: 52px;
	flex-wrap: wrap;
}
.prr-bpg-banner__lead {
	display: flex;
	align-items: center;
	gap: 22px;
}
.prr-bpg-banner__icon {
	flex-shrink: 0;
	width: 62px;
	height: 62px;
	border-radius: 16px;
	background: var(--wp--preset--color--ocean);
	display: flex;
	align-items: center;
	justify-content: center;
}
.prr-bpg-banner__icon svg {
	width: 30px;
	height: 30px;
	stroke: var(--wp--preset--color--gold);
}
.prr-bpg-banner__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--xx-large);
	font-weight: 600;
	line-height: var(--wp--custom--line-height--heading);
	color: var(--wp--preset--color--ocean);
}
.prr-bpg-banner__text {
	margin: 7px 0 0;
	max-width: 540px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 15.5px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--wp--preset--color--on-gold);
}

/* Inverse button (ocean on gold) — reuses the button radius token */
.prr-btn--inverse {
	display: inline-block;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 600;
	color: var(--wp--preset--color--gold);
	background: var(--wp--preset--color--ocean);
	border: none;
	padding: 18px 34px;
	border-radius: var(--wp--custom--radius--button);
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}
.prr-btn--inverse:hover {
	background: var(--wp--preset--color--ocean-deep);
	transform: translateY(-2px);
}
.prr-btn--inverse:active {
	transform: translateY(0);
}

/* Shared button utilities (used across archive + detail). */
.prr-btn-outline {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--wp--preset--color--ocean);
	background: transparent;
	border: 1.5px solid var(--wp--preset--color--ocean);
	padding: 14px 30px;
	border-radius: var(--wp--custom--radius--button);
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease;
}
.prr-btn-outline:hover {
	background: var(--wp--preset--color--ocean);
	color: var(--wp--preset--color--sand);
}
.prr-btn-solid {
	width: 100%;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	color: var(--wp--preset--color--white);
	background: var(--wp--preset--color--ocean);
	border: none;
	padding: 15px 24px;
	border-radius: var(--wp--custom--radius--button);
	cursor: pointer;
}

/* ============================================================
   FOCUS STATES (cards / links are interactive)
   ============================================================ */
.prr-card:focus-visible,
.prr-arrow-link:focus-visible,
.prr-btn--inverse:focus-visible {
	outline: 3px solid var(--wp--preset--color--gold);
	outline-offset: 3px;
	border-radius: var(--wp--custom--radius--card);
}

/* ============================================================
   EMPTY RESULTS STATE (properties archive)
   ============================================================ */
.prr-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px var(--wp--preset--spacing--60);
	gap: var(--wp--preset--spacing--40);
}
.prr-empty-state__heading {
	margin: 0;
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--x-large);
	font-weight: 600;
	color: var(--wp--preset--color--ocean);
}
.prr-empty-state__text {
	margin: 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--medium);
	color: var(--wp--preset--color--slate);
	max-width: 400px;
}
.prr-empty-state__link {
	display: inline-block;
	width: auto;
	text-decoration: none;
	padding: 15px 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
	.prr-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.prr-reviews__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.prr-reviews__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 860px) {
	/* The stacked search is tall; don't half-overlap it into the next section.
	   Sit it at the bottom of the hero and give the section a clean gap. */
	.prr-hero {
		padding-bottom: 24px;
	}
	.prr-hero__inner {
		padding: 72px var(--wp--preset--spacing--50) 36px;
	}
	.prr-hero__search {
		transform: none;
	}
	.prr-experiences {
		padding-block: 36px 56px;
	}
	.prr-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	/* Search collapses to a single stacked field on small screens. */
	.prr-search-pill {
		flex-direction: column;
		align-items: stretch;
		border-radius: 24px;
		padding: 10px;
	}
	.prr-search-seg,
	.prr-search-seg:first-of-type {
		flex: none;
		padding: 12px 14px;
		border-radius: 18px;
	}
	.prr-search-div {
		width: auto;
		height: 1px;
	}
	.prr-search-btn {
		margin-left: 0;
		justify-content: center;
	}
}
@media (max-width: 600px) {
	.prr-grid,
	.prr-grid--4,
	.prr-reviews__cards {
		grid-template-columns: 1fr;
	}
	.prr-hero__search {
		padding-inline: var(--wp--preset--spacing--40);
	}
}
@media (prefers-reduced-motion: reduce) {
	.prr-card,
	.prr-arrow-link,
	.prr-btn--inverse,
	.prr-faq__q::after {
		transition: none;
	}
}

/* ============================================================
   PAGE HERO (BPG — not the home drone-film hero)
   ============================================================ */
.prr-page-hero {
	background: var(--wp--preset--gradient--ocean-hero);
	text-align: center;
}
.prr-page-hero__inner {
	padding-block: 88px 80px;
}
.prr-page-hero__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 24px;
	border-radius: 20px;
	background: rgba(250, 246, 239, 0.14);
	border: 1px solid rgba(250, 246, 239, 0.28);
}
.prr-page-hero__icon svg {
	width: 34px;
	height: 34px;
	stroke: var(--wp--preset--color--gold);
}
.prr-page-hero__eyebrow {
	margin: 0 0 18px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--caption);
	font-weight: 600;
	letter-spacing: var(--wp--custom--letter-spacing--eyebrow);
	text-transform: uppercase;
	color: var(--wp--preset--color--gold);
}
.prr-page-hero__h1 {
	margin: 0 auto;
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--huge);
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--white);
	text-wrap: balance;
}
.prr-page-hero__sub {
	max-width: 600px;
	margin: 22px auto 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--large);
	font-weight: 400;
	line-height: 1.55;
	color: var(--wp--preset--color--on-dark-bright);
}

/* ============================================================
   HOW IT WORKS — 3-step explainer
   ============================================================ */
.prr-howitworks {
	background: var(--wp--preset--color--sand);
}
.prr-howitworks__inner {
	padding-block: 80px;
}
.prr-howitworks__title {
	margin: 0 0 52px;
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--xx-large);
	font-weight: 600;
	line-height: var(--wp--custom--line-height--heading);
	letter-spacing: -0.01em;
	color: var(--wp--preset--color--ocean);
}
.prr-howitworks__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wp--preset--spacing--60);
}
.prr-howitworks__step {
	position: relative;
	padding: 36px 32px 32px;
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--card);
	box-shadow: var(--wp--preset--shadow--card);
}
.prr-howitworks__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 22px;
	border-radius: 50%;
	background: var(--wp--preset--color--ocean);
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--large);
	font-weight: 600;
	color: var(--wp--preset--color--gold);
	line-height: 1;
}
.prr-howitworks__step-title {
	margin: 0 0 12px;
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--x-large);
	font-weight: 600;
	line-height: var(--wp--custom--line-height--tight);
	color: var(--wp--preset--color--ocean);
}
.prr-howitworks__step-text {
	margin: 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 15px;
	line-height: var(--wp--custom--line-height--body);
	color: var(--wp--preset--color--slate);
}

/* ============================================================
   SAVINGS COMPARISON — OTA vs Direct
   ============================================================ */
.prr-savings {
	background: var(--wp--preset--color--white);
	border-top: 1px solid var(--wp--preset--color--border);
}
.prr-savings__inner {
	padding-block: 80px;
}
.prr-savings__title {
	margin: 0 0 48px;
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--xx-large);
	font-weight: 600;
	line-height: var(--wp--custom--line-height--heading);
	letter-spacing: -0.01em;
	color: var(--wp--preset--color--ocean);
}
.prr-savings__cols {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--wp--preset--spacing--60);
	max-width: 780px;
	margin-inline: auto;
}
.prr-savings__col {
	padding: 32px 28px;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: var(--wp--custom--radius--card);
	background: var(--wp--preset--color--sand);
}
.prr-savings__col--highlight {
	border-color: var(--wp--preset--color--ocean);
	border-width: 2px;
	background: var(--wp--preset--color--white);
	box-shadow: var(--wp--preset--shadow--card);
}
.prr-savings__col-label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 24px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 600;
	color: var(--wp--preset--color--charcoal);
}
.prr-savings__col-icon--muted {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--wp--preset--color--border);
	font-size: 14px;
	color: var(--wp--preset--color--slate);
	line-height: 1;
}
.prr-savings__best-tag {
	display: inline-block;
	padding: 4px 10px;
	border-radius: var(--wp--custom--radius--tag);
	background: var(--wp--preset--color--gold);
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--caption);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ocean);
	white-space: nowrap;
}
.prr-savings__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--wp--preset--color--divider);
	font-family: var(--wp--preset--font-family--inter);
	font-size: 15px;
	color: var(--wp--preset--color--charcoal);
}
.prr-savings__row:last-of-type {
	border-bottom: none;
}
.prr-savings__total {
	font-weight: 700;
	font-size: var(--wp--preset--font-size--large);
	color: var(--wp--preset--color--ocean);
}
.prr-savings__fee {
	color: var(--wp--preset--color--slate);
}
.prr-savings__discount {
	color: var(--wp--preset--color--ocean);
	font-weight: 600;
}
.prr-savings__save-line {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 20px 0 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 600;
	color: var(--wp--preset--color--ocean);
}
.prr-savings__save-line svg {
	width: 18px;
	height: 18px;
	stroke: var(--wp--preset--color--ocean);
	flex-shrink: 0;
}

/* ============================================================
   FAQ ACCORDION (native <details>/<summary>)
   ============================================================ */
.prr-faq {
	background: var(--wp--preset--color--sand);
	border-top: 1px solid var(--wp--preset--color--border);
}
.prr-faq__inner {
	padding-block: 80px;
}
.prr-faq__title {
	margin: 0 0 40px;
	font-family: var(--wp--preset--font-family--fraunces);
	font-size: var(--wp--preset--font-size--xx-large);
	font-weight: 600;
	line-height: var(--wp--custom--line-height--heading);
	letter-spacing: -0.01em;
	color: var(--wp--preset--color--ocean);
}
.prr-faq__list {
	max-width: 780px;
	margin-inline: auto;
}
.prr-faq__item {
	border-bottom: 1px solid var(--wp--preset--color--border);
}
.prr-faq__item:first-of-type {
	border-top: 1px solid var(--wp--preset--color--border);
}
.prr-faq__q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 4px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 600;
	color: var(--wp--preset--color--ocean);
	cursor: pointer;
	list-style: none;
	user-select: none;
}
.prr-faq__q::-webkit-details-marker {
	display: none;
}
.prr-faq__q::after {
	content: '+';
	font-size: 22px;
	font-weight: 400;
	color: var(--wp--preset--color--gold);
	flex-shrink: 0;
	margin-left: 16px;
	transition: transform 0.2s ease;
}
.prr-faq__item[open] > .prr-faq__q::after {
	content: '\2212';
}
.prr-faq__a {
	padding: 0 4px 22px;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 15px;
	line-height: var(--wp--custom--line-height--body);
	color: var(--wp--preset--color--slate);
}
.prr-faq__a p {
	margin: 0;
}
.prr-faq__a a {
	color: var(--wp--preset--color--ocean);
	font-weight: 600;
	text-decoration: underline;
}
.prr-faq__a a:hover {
	color: var(--wp--preset--color--gold-hover);
}

/* ============================================================
   RESPONSIVE — BPG page sections
   ============================================================ */
@media (max-width: 720px) {
	.prr-howitworks__grid {
		grid-template-columns: 1fr;
	}
	.prr-savings__cols {
		grid-template-columns: 1fr;
	}
	.prr-page-hero__h1 {
		font-size: var(--wp--preset--font-size--xx-large);
	}
}
