/*
Theme Name: Seven Dunes
Theme URI: https://example.com/seven-dunes
Author: William Jeffree
Author URI: https://designhousestudio.co.uk
Description: A super-minimal, custom WordPress theme for the Seven Dunes project.
Version: 0.2.10
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seven-dunes
*/

/* Minimal base styles – keep this intentionally light */

/* ── Homepage template: strip default site-main padding ─────────────────── */

.page-template-page-templates-homepage main.site-main {
	padding: 0 !important;
	margin: 0 !important;
}

/* ── Availability alert bar ─────────────────────────────────── */

.sd-alert-bar {
	background: #2a1600;
	color: rgba(255, 255, 255, 0.78);
	padding: 10px 0;
	text-align: center;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 13px;
	line-height: 1.4;
}

.sd-alert-bar__text {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px 10px;
}

.sd-alert-bar__text strong {
	font-weight: 600;
	color: #fff;
}

.sd-alert-bar__text a {
	color: var(--sd-brand);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
}

.sd-alert-bar__text a:hover {
	color: #fff;
}

.sd-alert-bar__divider {
	opacity: 0.35;
}

/* ── Global social links & footer contact ────────────────────── */

.sd-footer-social {
	padding: 24px 0;
	border-top: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

footer.site-footer > .wrap {
	padding-top: 16px;
	padding-bottom: 20px;
	font-size: 13px;
	color: var(--sd-muted);
}

.sd-footer-social .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.sd-social-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.sd-social-list a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.05);
	color: #5f5f5f;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease;
}

.sd-social-list a:hover {
	background: var(--sd-brand);
	color: #fff;
}

.sd-social-list a svg {
	display: block;
}

.sd-footer-contact {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--sd-muted);
}

.sd-footer-contact a {
	color: var(--sd-muted);
	text-decoration: none;
}

.sd-footer-contact a:hover {
	color: var(--sd-brand);
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@500;600;700&display=swap");

:root {
	/* Brand */
	--sd-brand: rgb(242, 143, 13);

	/* Typography */
	--sd-font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--sd-font-heading: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

	/* Neutrals */
	--sd-heading: #3a3a3a;
	--sd-text: #2b2b2b;
	--sd-muted: #5f5f5f;
	--sd-bg: #fff;
	--sd-white: #fff;

	/* Sand & Ember palette (used by hpa-* design system below) */
	--hpa-orange:  rgb(242, 143, 13); /* same as --sd-brand */
	--hpa-dark:    #3a3a3a;
	--hpa-sand:    #fdf8f0;
	--hpa-muted:   #5f5f5f;
	--hpa-white:   #fff;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* ── Global buttons ─────────────────────────────────────────── */
/*
 * .sd-btn        — solid orange, white text (primary action)
 * .sd-btn--outline — transparent with white border (use on dark/image backgrounds)
 *
 * Use these on any template. .hpa-btn (defined in the Sand & Ember section
 * below) mirrors this style for the homepage shell; both share --sd-brand /
 * --hpa-orange which resolve to the same colour.
 */

.sd-btn {
	display: inline-flex;
	align-items: center;
	padding: 15px 36px;
	background: var(--sd-brand);
	color: #fff;
	font-family: var(--sd-font-heading);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: 999px;
	text-decoration: none;
	border: 2px solid transparent;
	transition: background 160ms ease, transform 160ms ease;
}

.sd-btn:hover {
	background: #c97200;
	color: #fff;
	transform: translateY(-2px);
}

.sd-btn--outline {
	background: transparent;
	border-color: #fff;
	color: #fff;
}

.sd-btn--outline:hover {
	background: #fff;
	color: var(--sd-brand);
	transform: translateY(-2px);
}

html,
body {
	height: 100%;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	margin: 0;
	font-family: var(--sd-font-body);
	line-height: 1.5;
	color: var(--sd-text);
	background: var(--sd-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--sd-font-heading);
	color: var(--sd-heading);
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.site {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
}

.wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

header.site-header {
	padding: 16px 0;
	background: var(--sd-brand);
	color: var(--sd-white);
}

footer.site-footer {
	padding: 0;
	border-top: 0;
	background:
		linear-gradient(
			rgba(253, 248, 240, 0.93),
			rgba(253, 248, 240, 0.93)
		),
		url('/wp-content/uploads/2026/05/Sand-3.jpg') center / cover;
}

.site-header a {
	color: var(--sd-white);
	text-decoration: none;
}

.site-header a:hover,
.site-header a:focus-visible {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.site-title {
	margin: 0;
	font-size: 20px;
	line-height: 1.1;
}

.custom-logo {
	display: block;
	max-height: 44px;
	width: auto;
}

.site-nav .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 16px;
}

.site-nav a {
	display: inline-flex;
	align-items: center;
	padding: 8px 10px;
	border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	background: rgba(255, 255, 255, 0.16);
	text-decoration: none;
}

a {
	color: var(--sd-brand);
}

a:hover,
a:focus-visible {
	color: color-mix(in srgb, var(--sd-brand) 85%, #000);
}

/* Standard content pages get breathing room; homepage concept templates get none */
.page-template-default main.site-main,
.single main.site-main,
.blog main.site-main,
.archive main.site-main,
.error404 main.site-main,
.search main.site-main {
	padding: 32px 0;
}

/* Full-bleed CPT templates manage their own spacing — no top gap */
.single-sd_external_link main.site-main,
.single-sd_room main.site-main {
	padding: 0;
}

/* ── Testimonials block (shared: homepage + directory) ───────── */

.sd-testimonials {
	background:
		linear-gradient(rgba(253, 248, 240, 0.92), rgba(253, 248, 240, 0.92)),
		url('/wp-content/uploads/2026/05/Sand-1.jpg') center / cover;
	padding: 80px 0 90px;
	text-align: center;
}

.sd-testimonials__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--sd-brand);
	margin: 0 0 20px;
}

.sd-testimonials__stage {
	position: relative;
	margin-bottom: 36px;
}

.sd-testimonials__item {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transition: opacity 1200ms cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.sd-testimonials__item.is-active {
	opacity: 1;
	pointer-events: auto;
}

.sd-testimonials__quote {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: clamp(1.3rem, 3vw, 1.9rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--sd-heading);
	max-width: 720px;
	margin: 0 auto 14px;
	line-height: 1.45;
}

.sd-testimonials__name {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sd-brand);
	font-style: normal;
}

.sd-testimonials__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 28px 0 0;
}

.sd-testimonials__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: rgba(0, 0, 0, 0.18);
	cursor: pointer;
	transition: background 200ms ease, transform 200ms ease;
}

.sd-testimonials__dot.is-active {
	background: var(--sd-brand);
	transform: scale(1.3);
}

/* ------------------------------------------------------------------------- */
/* Reusable UI: dividers + “portal” grids (for cross-linking post types)      */
/* ------------------------------------------------------------------------- */

.sd-divider {
	margin: 40px 0;
	border: 0;
	height: 1px;
	background: rgba(0, 0, 0, 0.12);
}

.sd-portal__header {
	margin-bottom: 16px;
}

.sd-portal__title {
	margin: 0;
}

.sd-portal__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 14px;
}

.sd-portal-card {
	grid-column: span 12;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	text-decoration: none;
	color: inherit;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: transform 180ms ease, border-color 180ms ease;
}

@media (min-width: 720px) {
	.sd-portal-card {
		grid-column: span 6;
	}
}

@media (min-width: 1100px) {
	.sd-portal-card {
		grid-column: span 4;
	}
}

.sd-portal-card:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 0, 0, 0.16);
}

.sd-portal-card__media {
	background: rgba(0, 0, 0, 0.03);
}

.sd-portal-card__img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.sd-portal-card__body {
	padding: 14px 14px 16px;
}

.sd-portal-card__title {
	margin: 0;
	font-size: 16px;
	letter-spacing: -0.02em;
	text-transform: none;
}

/* ------------------------------------------------------------------------- */
/* Portal variant: Rooms (always 2x2)                                        */
/* ------------------------------------------------------------------------- */

.sd-portal--rooms {
	max-width: 820px;
	margin: 0 auto;
}

.sd-portal--rooms .sd-portal__header,
.sd-portal--rooms .sd-portal-card__body {
	text-align: center;
}

.sd-portal--rooms .sd-portal__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sd-portal--rooms .sd-portal-card {
	grid-column: auto;
}

/* ── Split centre-logo header (all pages) ────────────────────── */

.hpa-award-bar-top {
	background: #2a1600;
	padding: 10px 0;
	text-align: center;
}

.hpa-award-bar-top__text {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px 10px;
	font-family: "Inter", system-ui, sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
}

.hpa-award-bar-top__text a {
	color: var(--sd-brand);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
}

.hpa-award-bar-top__text a:hover {
	color: #fff;
}

.hpa-split-header {
	padding: 0;
}

.hpa-split-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 68px;
	gap: 16px;
}

.hpa-split-header__brand {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hpa-split-header__brand .custom-logo {
	max-height: 50px;
	width: auto;
}

.hpa-split-header__site-name {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}

.hpa-split-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.hpa-split-nav--right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0;
}

.hpa-split-nav--right ul {
	justify-content: flex-end;
}

.hpa-split-nav__book-now {
	margin: 0;
}

.hpa-split-nav a {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid transparent;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hpa-split-nav a:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
}

.hpa-split-nav__cta {
	border: 1px solid rgba(255, 255, 255, 0.55);
	font-weight: 600 !important;
	background: transparent !important;
}

.hpa-split-nav__cta:hover {
	background: rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
}

@media (max-width: 720px) {
	.hpa-split-header__inner {
		grid-template-columns: 1fr auto;
	}

	.hpa-split-nav--left {
		display: none;
	}

	.hpa-split-header__brand {
		order: -1;
	}
}


/* ═══════════════════════════════════════════════════════════════════════════
 * Sand & Ember design system
 * Manrope headings / Inter body / brand orange accents.
 * Used on: Homepage, About (Two Column Image Offset), any full-bleed pages.
 * ═══════════════════════════════════════════════════════════════════════════ */

.hpa {
	font-family: "Inter", system-ui, sans-serif;
	color: var(--hpa-dark);
}

.hpa-wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────────── */

.hpa-btn {
	display: inline-flex;
	align-items: center;
	padding: 15px 36px;
	background: var(--hpa-orange);
	color: #fff;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: 999px;
	text-decoration: none;
	transition: background 160ms ease, transform 160ms ease;
}

.hpa-btn:hover {
	background: #c97200;
	color: #fff;
	transform: translateY(-2px);
}

.hpa-btn--outline {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
}

.hpa-btn--outline:hover {
	background: #fff;
	color: var(--hpa-dark);
	transform: translateY(-2px);
}

/* ── Hero ───────────────────────────────────────────────────── */

.hpa-hero {
	position: relative;
	min-height: 100vh;
}

/* Stage fills the section */
.hpa-hero__stage {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Slides layer */
.hpa-hero__slides {
	position: absolute;
	inset: 0;
}

.hpa-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	--kb-end-x: 0%;
	--kb-end-y: 0%;
	opacity: 0;
	transform: translate(0, 0) scale(1.06);
	transition: opacity 900ms ease;
	will-change: opacity, transform;
}

.hpa-hero__slide.is-active {
	opacity: 1;
	animation: hpa-hero-ken-burns 8s ease-in-out infinite alternate;
}

@keyframes hpa-hero-ken-burns {
	from { transform: translate(0, 0) scale(1.06); }
	to   { transform: translate(var(--kb-end-x), var(--kb-end-y)) scale(1.14); }
}

/* Gradient overlay */
.hpa-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(20, 12, 4, 0.28) 0%,
		rgba(20, 12, 4, 0.65) 100%
	);
	pointer-events: none;
}

/* Text content */
.hpa-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 40px 24px;
	max-width: 800px;
}

/* Pagination dots */
.hpa-hero__dots {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 8px;
}

.hpa-hero__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: background 200ms ease, transform 200ms ease;
}

.hpa-hero__dot.is-active {
	background: #fff;
	transform: scale(1.3);
}

.hpa-hero__eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--hpa-orange);
	margin: 0 0 18px;
}

.hpa-hero__heading {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 22px;
	line-height: 1.0;
}

.hpa-hero__sub {
	font-size: clamp(1rem, 2vw, 1.15rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 auto 40px;
	max-width: 520px;
}

/* ── Intro ──────────────────────────────────────────────────── */

.hpa-intro {
	background:
		linear-gradient(
			rgba(253, 248, 240, 0.90),
			rgba(253, 248, 240, 0.90)
		),
		url('/wp-content/uploads/2026/05/Sand-1.jpg') center / cover;
	padding: 90px 0;
	text-align: center;
}

.hpa-intro__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--hpa-orange);
	margin: 0 0 20px;
}

.hpa-intro__lead {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: clamp(1.4rem, 3.5vw, 2.1rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--hpa-dark);
	max-width: 740px;
	margin: 0 auto 20px;
	line-height: 1.45;
}

/* ── Testimonial rotator ─────────────────────────────────────── */

.hpa-testimonials {
	position: relative;
	margin-bottom: 36px;
	/* Height is set by the tallest testimonial via JS, or falls back to auto */
}

.hpa-testimonial {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transition: opacity 1200ms cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.hpa-testimonial.is-active {
	opacity: 1;
	pointer-events: auto;
}

.hpa-testimonial .hpa-intro__lead {
	margin-bottom: 14px;
}

.hpa-testimonial__name {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hpa-orange);
	font-style: normal;
}

.hpa-testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 28px 0 36px;
}

/* Reuse .hpa-hero__dot but override colours for the light background */
.hpa-testimonial-dots .hpa-hero__dot {
	background: rgba(0, 0, 0, 0.18);
}

.hpa-testimonial-dots .hpa-hero__dot.is-active {
	background: var(--hpa-orange);
	transform: scale(1.3);
}

/* ── Photo strip ────────────────────────────────────────────── */

.hpa-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* fallback */
}

.hpa-strip[data-count="1"] { grid-template-columns: 1fr; }
.hpa-strip[data-count="2"] { grid-template-columns: 1fr 1fr; }
.hpa-strip[data-count="3"] { grid-template-columns: repeat(3, 1fr); }

.hpa-strip__img {
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
	transition: transform 400ms ease;
}

/* Taller images when there are fewer of them */
.hpa-strip[data-count="1"] .hpa-strip__img { height: 540px; }
.hpa-strip[data-count="2"] .hpa-strip__img { height: 440px; }

.hpa-strip__item {
	overflow: hidden;
}

.hpa-strip__item:hover .hpa-strip__img {
	transform: scale(1.04);
}

/* ── About ──────────────────────────────────────────────────── */

.hpa-about {
	background: var(--hpa-white);
	padding: 110px 0;
}

.hpa-about__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 90px;
	align-items: center;
}

.hpa-about__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--hpa-orange);
	margin: 0 0 14px;
}

.hpa-about__heading {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: clamp(1.9rem, 3vw, 2.9rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: var(--hpa-dark);
	margin: 0 0 24px;
	line-height: 1.05;
}

.hpa-about__body {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--hpa-muted);
	margin: 0 0 32px;
}

/* Body copy on the About page template — matches .hpa-about__body */
.hpa-about__content p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--hpa-muted);
	margin: 0 0 32px;
}

.hpa-about__media {
	position: relative;
}

.hpa-about__img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 3px;
	position: relative;
	z-index: 1;
}

.hpa-about__media::after {
	content: '';
	position: absolute;
	bottom: -22px;
	right: -22px;
	width: 55%;
	height: 55%;
	background: var(--hpa-orange);
	opacity: 0.15;
	border-radius: 3px;
	z-index: 0;
}

/* ── Space highlights ───────────────────────────────────────── */

.hpa-spaces {
	background:
		linear-gradient(
			rgba(253, 248, 240, 0.88),
			rgba(253, 248, 240, 0.88)
		),
		url('/wp-content/uploads/2026/05/Sand-2.jpg') center / cover;
	padding: 90px 0;
}

.hpa-spaces__header {
	text-align: center;
	margin-bottom: 56px;
}

.hpa-spaces__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--hpa-orange);
	margin: 0 0 12px;
}

.hpa-spaces__title {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: var(--hpa-dark);
	margin: 0;
}

.hpa-spaces__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.hpa-spaces__grid .hpa-space {
	flex: 0 1 calc(33.333% - 14px);
}

.hpa-space {
	background: var(--hpa-white);
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: transform 200ms ease, box-shadow 200ms ease;
	display: flex;
	flex-direction: column;
}

.hpa-space:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.hpa-space__img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.hpa-space__body {
	padding: 18px 20px 22px;
	text-align: center;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hpa-space__more {
	margin-top: auto;
	align-self: center;
}

.hpa-space__title {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--hpa-dark);
	margin: 0 0 6px;
}

.hpa-space__title a {
	color: inherit;
	text-decoration: none;
}

.hpa-space__title a:hover {
	color: var(--hpa-orange);
}

.hpa-space__img-link {
	display: block;
}

.hpa-space__text {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--hpa-muted);
	margin: 0 0 16px;
}

.hpa-space__more {
	border-color: var(--hpa-orange);
	color: var(--hpa-orange);
}

.hpa-space__more:hover {
	background: var(--hpa-orange);
	color: #fff;
}

/* ── Location ───────────────────────────────────────────────── */

.hpa-location {
	background: var(--hpa-dark);
	padding: 110px 0;
}

.hpa-location__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 90px;
	align-items: center;
}

.hpa-location__img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 3px;
}

.hpa-location__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--hpa-orange);
	margin: 0 0 14px;
}

.hpa-location__heading {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: clamp(1.9rem, 3vw, 2.9rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 24px;
	line-height: 1.05;
}

.hpa-location__body {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.68);
	margin: 0 0 32px;
}

/* ── Book CTA ───────────────────────────────────────────────── */

.hpa-cta {
	background:
		linear-gradient(
			rgba(242, 143, 13, 0.88),
			rgba(242, 143, 13, 0.88)
		),
		url('/wp-content/uploads/2026/05/Sand-3.jpg') center / cover;
	padding: 110px 0;
	text-align: center;
}

.hpa-cta__heading {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: clamp(2.2rem, 6vw, 4.5rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 14px;
	line-height: 1.0;
}

.hpa-cta__sub {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 auto 24px;
	max-width: 500px;
}

.hpa-cta__note {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.65);
	margin: 0 auto 32px;
	max-width: 480px;
}

/* ── Award bar ──────────────────────────────────────────────── */

.hpa-award-bar {
	background: var(--hpa-sand);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	padding: 12px 0;
}

.hpa-award {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--hpa-dark);
}

.hpa-award__link {
	color: var(--hpa-orange);
	text-decoration: none;
	font-weight: 600;
}

.hpa-award__link:hover {
	text-decoration: underline;
}

/* ── Booking info banner ─────────────────────────────────────── */

.hpa-booking-info {
	background: var(--hpa-white);
	padding: 40px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.hpa-booking-info__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 880px) {
	.hpa-about__inner,
	.hpa-location__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.hpa-about__inner {
		direction: rtl;
	}

	.hpa-about__inner > * {
		direction: ltr;
	}

	.hpa-spaces__grid .hpa-space {
		flex: 0 1 calc(50% - 10px);
	}

	.hpa-strip {
		grid-template-columns: 1fr;
	}

	.hpa-strip__img {
		height: 280px;
	}
}

@media (max-width: 580px) {
	.hpa-spaces__grid .hpa-space {
		flex: 0 1 100%;
	}
}

/* ── Top Spots section ───────────────────────────────────────────────────────── */

.hpa-top-spots {
	padding: 80px 0;
	background: #faf8f4;
}

.hpa-top-spots__header {
	text-align: center;
	margin-bottom: 40px;
}

.hpa-top-spots__label {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f28f0d;
	margin: 0 0 8px;
}

.hpa-top-spots__heading {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	color: #3a3a3a;
	margin: 0 0 12px;
}

.hpa-top-spots__intro {
	font-size: 1rem;
	line-height: 1.7;
	color: #5f5f5f;
	max-width: 560px;
	margin: 0 auto;
}

.hpa-top-spots__intro p {
	margin: 0 0 0.75em;
}

.hpa-top-spots__intro p:last-child {
	margin-bottom: 0;
}

/* ── Two-column body ─────────────────────────────────────────────────────────── */

.hpa-top-spots__body {
	display: flex;
	gap: 24px;
	align-items: stretch;
}

/* ── Map column ──────────────────────────────────────────────────────────────── */

.hpa-top-spots__map-col {
	flex: 0 0 55%;
	display: flex;
	flex-direction: column;
}

.hpa-top-spots__map-wrap {
	flex: 1;
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

#hpa-top-spots-map {
	flex: 1;
	width: 100%;
	min-height: 320px;
}

/* ── Numbered pin label (above active pin) ───────────────────────────────────── */

.sd-pin-wrap--numbered {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sd-pin-wrap__dot {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hpa-ts-pin-label {
	background: #3a3a3a;
	color: #fff;
	font-family: "Manrope", system-ui, sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	padding: 4px 9px;
	border-radius: 6px;
	white-space: nowrap;
	/* Floated out of flow so it never displaces the dot (which is anchored
	   to the coordinate). Sits centred just above the pin. */
	position: absolute;
	bottom: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
}

.hpa-ts-pin-label::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 4px solid transparent;
	border-top-color: #3a3a3a;
}

/* ── Cards column ────────────────────────────────────────────────────────────── */

.hpa-top-spots__cards {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.hpa-top-spots__card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1.5px solid #e8e4da;
	border-radius: 10px;
	padding: 10px 14px 10px 10px;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hpa-top-spots__card:hover,
.hpa-top-spots__card.is-active {
	border-color: #f28f0d;
	box-shadow: 0 2px 12px rgba(242, 143, 13, 0.15);
}

.hpa-top-spots__card-num {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #f28f0d;
	color: #fff;
	font-family: "Manrope", system-ui, sans-serif;
	font-size: 0.8rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.15s ease;
}

.hpa-top-spots__card.is-active .hpa-top-spots__card-num {
	transform: scale(1.12);
}

.hpa-top-spots__card-thumb {
	flex-shrink: 0;
	width: 56px;
	height: 52px;
	border-radius: 7px;
	overflow: hidden;
}

.hpa-top-spots__card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hpa-top-spots__card-thumb--empty {
	background: #e8e4da;
}

.hpa-top-spots__card-info {
	flex: 1;
	min-width: 0;
}

.hpa-top-spots__card-tag {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #f28f0d;
	margin: 0 0 2px;
}

.hpa-top-spots__card-title {
	font-family: "Manrope", system-ui, sans-serif;
	font-size: 0.88rem;
	font-weight: 800;
	color: #3a3a3a;
	margin: 0 0 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hpa-top-spots__card-more {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	color: #fff;
	background: #3a3a3a;
	border-radius: 100px;
	padding: 3px 11px;
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: background 0.15s ease;
}

.hpa-top-spots__card-more:hover,
.hpa-top-spots__card.is-active .hpa-top-spots__card-more {
	background: #f28f0d;
	color: #fff;
}

/* ── Card foot (button + walk time row) ─────────────────────────────────────── */

.hpa-top-spots__card-foot {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
	flex-wrap: wrap;
}

.hpa-top-spots__card-time {
	font-size: 0.68rem;
	color: #7a7a6e;
	font-weight: 600;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

/* ── CTA row ─────────────────────────────────────────────────────────────────── */

.hpa-top-spots__cta-row {
	margin-top: 32px;
	text-align: center;
}

.hpa-top-spots__cta-btn {
	background: var(--hpa-orange);
	color: #fff;
}

.hpa-top-spots__cta-btn:hover {
	background: #c97200;
	color: #fff;
}

/* ── Mobile ──────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
	.hpa-top-spots__body {
		flex-direction: column;
	}

	.hpa-top-spots__map-col {
		flex: none;
		width: 100%;
	}

	#hpa-top-spots-map {
		height: 260px;
	}

	.hpa-top-spots__card-title {
		white-space: normal;
	}
}


/* ── All Rooms page template ─────────────────────────────────────────────────── */

.sd-rooms-page {
	padding: 60px 0 80px;
}

.sd-rooms-page__header {
	text-align: center;
	margin-bottom: 48px;
}

.sd-rooms-page__title {
	font-family: var(--sd-font-heading);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: var(--sd-heading);
	margin: 0 0 16px;
}

.sd-rooms-page__intro {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--sd-text);
	max-width: 640px;
	margin: 0 auto;
}
