:root {
	--fph-ink: #111714;
	--fph-forest: #36483d;
	--fph-paper: #f4f0e8;
	--fph-stone: #d9dfd1;
	--fph-line: rgba(17, 23, 20, 0.16);
	--fph-muted: rgba(17, 23, 20, 0.66);
	--fph-clay: #aa4831;
	--fph-copper: #bf7e4d;
	--fph-earth: #5d4a42;
	--fph-footer-reveal: min(420px, 58vh);
	--fph-display: "Aboreto", "Fraunces", Georgia, serif;
	--fph-body: "Afacad", "Gill Sans", sans-serif;
}

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

html {
	background: var(--fph-paper);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--fph-paper);
	color: var(--fph-ink);
	font-family: var(--fph-body);
}

body.fph-menu-open {
	overflow: hidden;
}

body.admin-bar .fph-site-header {
	top: 32px;
}

a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--fph-clay);
	outline-offset: 4px;
}

img,
iframe {
	max-width: 100%;
}

.fph-site-shell {
	position: relative;
	z-index: 1;
	margin-block-start: 0;
	margin-block-end: var(--fph-footer-reveal);
	background: var(--fph-paper);
}

.fph-site-shell:has(.fph-inside-hero),
.fph-site-shell:has(.fph-story-sequence),
.fph-site-shell:has(.fph-suite-explorer) {
	background-image:
		linear-gradient(90deg, rgba(17, 23, 20, 0.055) 1px, transparent 1px),
		radial-gradient(circle at 8% 4%, rgba(170, 72, 49, 0.09), transparent 22rem);
	background-size: 25% 100%, auto;
}

.fph-page-shell {
	min-height: 72vh;
	padding-block: clamp(130px, 18vw, 210px) clamp(80px, 12vw, 150px);
	padding-inline: clamp(18px, 5vw, 76px);
}

.fph-page-shell > * {
	max-width: 820px;
}

.fph-page-shell__title,
.fph-archive__title,
.fph-post__title {
	margin: 0 0 28px;
	font-family: var(--fph-display);
	font-size: clamp(2.6rem, 5vw, 5.6rem);
	line-height: 0.96;
}

.fph-site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	padding: 16px clamp(18px, 4vw, 58px);
	color: #fff;
	background: linear-gradient(180deg, rgba(17, 23, 20, 0.46), rgba(17, 23, 20, 0));
	transition: background-color 240ms ease, backdrop-filter 240ms ease;
}

.fph-site-header--editor-preview {
	position: relative;
	inset: auto;
	z-index: 1;
	background: rgba(17, 23, 20, 0.84);
	backdrop-filter: blur(16px);
}

.fph-site-header.is-scrolled,
.fph-menu-open .fph-site-header {
	background: rgba(17, 23, 20, 0.84);
	backdrop-filter: blur(16px);
}

.fph-site-header a,
.fph-site-header button {
	color: inherit;
}

.fph-site-header__nav-left a,
.fph-site-header__nav-right a,
.fph-menu-toggle {
	font-family: var(--fph-body);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fph-site-header__nav-left,
.fph-site-header__nav-right {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.5vw, 34px);
}

.fph-site-header__nav-left a,
.fph-site-header__nav-right a {
	opacity: 0.82;
	text-decoration: none;
	transition: opacity 180ms ease;
}

.fph-site-header__nav-left a:hover,
.fph-site-header__nav-left a:focus-visible,
.fph-site-header__nav-right a:hover,
.fph-site-header__nav-right a:focus-visible {
	opacity: 1;
}

.fph-site-header__nav-left a[aria-current="page"],
.fph-site-header__nav-right a[aria-current="page"] {
	opacity: 1;
	color: var(--fph-copper);
}

.fph-site-header__logo {
	display: inline-grid;
	justify-items: center;
}

.fph-site-header__logo.wp-block-image,
.fph-menu-overlay__logo.wp-block-image,
.fph-site-header__logo.wp-block-site-logo,
.fph-menu-overlay__logo.wp-block-site-logo,
.fph-site-footer__logo.wp-block-site-logo {
	margin: 0;
}

.fph-site-header__logo a,
.fph-menu-overlay__logo a {
	display: inline-grid;
}

.fph-site-header__logo img {
	width: clamp(78px, 7.2vw, 112px);
	height: auto;
}

.fph-site-header__right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 2.5vw, 34px);
}



.fph-menu-toggle {
	display: inline-flex;
	min-height: 42px;
	cursor: pointer;
	align-items: center;
	gap: 10px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	background: rgba(0, 0, 0, 0.12);
	padding: 0 14px;
	backdrop-filter: blur(10px);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
}

.fph-menu-toggle__bars {
	position: relative;
	display: grid;
	width: 18px;
	gap: 5px;
}

.fph-menu-toggle__bars span {
	display: block;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease;
}

.fph-menu-open .fph-menu-toggle__bars span:first-child {
	transform: translateY(3.5px) rotate(45deg);
}

.fph-menu-open .fph-menu-toggle__bars span:last-child {
	transform: translateY(-3.5px) rotate(-45deg);
}

/* ── Menu overlay ─────────────────────────────────────────────────────────── */

.fph-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: grid;
	grid-template-columns: 38fr 62fr;
	opacity: 0;
	pointer-events: none;
	transition: opacity 300ms ease, visibility 300ms ease;
	visibility: hidden;
}

.fph-menu-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.fph-menu-overlay--editor-preview {
	position: relative;
	z-index: 1;
	min-height: 720px;
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

/* Left panel — subdued background image with dark scrim */
.fph-menu-overlay__panel-left {
	position: relative;
	overflow: hidden;
	background-image: var(--fph-overlay-bg);
	background-position: center;
	background-size: cover;
	padding: clamp(28px, 4vw, 52px);
}

.fph-menu-overlay__panel-left::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(10, 16, 13, 0.72) 0%,
		rgba(10, 16, 13, 0.58) 60%,
		rgba(10, 16, 13, 0.75) 100%
	);
	pointer-events: none;
}

/* Logo sits above the scrim */
.fph-menu-overlay__logo {
	position: relative;
	z-index: 1;
	display: inline-block;
}

.fph-menu-overlay__logo img {
	width: clamp(100px, 11vw, 152px);
	height: auto;
	/* Invert to white against the dark image */
	filter: brightness(0) invert(1);
}

/* Right panel — clean off-white */
.fph-menu-overlay__panel-right {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--fph-paper);
	padding: clamp(28px, 4vw, 52px) clamp(32px, 6vw, 96px);
}

/* Close button — top-right of the right panel */
.fph-menu-overlay__close {
	position: absolute;
	top: clamp(20px, 3vw, 36px);
	right: clamp(20px, 3vw, 40px);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(17, 23, 20, 0.07);
	color: var(--fph-ink);
	cursor: pointer;
	transition: background 200ms ease, color 200ms ease;
}

.fph-menu-overlay__close span {
	position: absolute;
	width: 24px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}

.fph-menu-overlay__close span:first-child {
	transform: rotate(45deg);
}

.fph-menu-overlay__close span:last-child {
	transform: rotate(-45deg);
}

.fph-menu-overlay__close:hover,
.fph-menu-overlay__close:focus-visible {
	background: rgba(17, 23, 20, 0.13);
	color: var(--fph-copper);
	outline: none;
}

/* Nav links — vertically centred, clean and light-weight */
.fph-menu-overlay__links {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	gap: 0;
	padding-block: 80px 32px;
}

.fph-menu-overlay__links a {
	--fph-menu-link-delay: calc((var(--fph-menu-index, 0) * 75ms) + 60ms);
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid rgba(18, 24, 22, 0.08);
	color: var(--fph-ink);
	font-family: var(--fph-display);
	font-size: clamp(1.9rem, 4.2vw, 4.4rem);
	font-weight: 300;
	letter-spacing: -0.01em;
	line-height: 1.1;
	text-decoration: none;
	opacity: 0;
	transform: translateY(20px);
	transition: color 180ms ease, transform 180ms ease;
}

.fph-menu-overlay__links a:first-child {
	border-top: 1px solid rgba(18, 24, 22, 0.08);
}

.fph-menu-overlay.is-open .fph-menu-overlay__links a,
.fph-menu-overlay--editor-preview .fph-menu-overlay__links a {
	animation: fph-menu-link-in 650ms cubic-bezier(0.22, 1, 0.36, 1) var(--fph-menu-link-delay) both;
}

.fph-menu-overlay__links a:hover,
.fph-menu-overlay__links a:focus-visible {
	color: var(--fph-copper);
	outline: none;
	transform: translateX(6px);
}

.fph-menu-overlay__links a[aria-current="page"],
.fph-menu-overlay__links .current-menu-item > a {
	color: var(--fph-copper);
}

@keyframes fph-menu-link-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.fph-menu-overlay__links a {
		opacity: 1;
		transform: none;
	}

	.fph-menu-overlay.is-open .fph-menu-overlay__links a,
	.fph-menu-overlay--editor-preview .fph-menu-overlay__links a {
		animation: none;
	}

	.fph-menu-overlay__links a:hover,
	.fph-menu-overlay__links a:focus-visible {
		transform: none;
	}
}

/* Footer strip — contact shortcuts */
.fph-menu-overlay__footer {
	display: flex;
	align-items: stretch;
	border-top: 1px solid rgba(18, 24, 22, 0.1);
	margin-top: auto;
	padding-top: 0;
}

.fph-menu-overlay__footer-item {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: clamp(16px, 2.2vw, 24px) clamp(12px, 1.6vw, 20px);
	color: var(--fph-ink);
	font-family: var(--fph-body);
	font-size: clamp(0.7rem, 1.05vw, 0.95rem);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease, background 180ms ease;
}

.fph-menu-overlay__footer-item:hover,
.fph-menu-overlay__footer-item:focus-visible {
	background: rgba(18, 24, 22, 0.04);
	color: var(--fph-copper);
	outline: none;
}

.fph-menu-overlay__footer-sep {
	width: 1px;
	flex-shrink: 0;
	align-self: stretch;
	background: rgba(18, 24, 22, 0.1);
}

.fph-menu-overlay__footer-arrow {
	flex-shrink: 0;
	opacity: 0.5;
	transition: opacity 180ms ease, transform 180ms ease;
}

.fph-menu-overlay__footer-item:hover .fph-menu-overlay__footer-arrow,
.fph-menu-overlay__footer-item:focus-visible .fph-menu-overlay__footer-arrow {
	opacity: 1;
	transform: translateX(3px);
}

.fph-menu-overlay__logo img {
	width: clamp(100px, 11vw, 152px);
	height: auto;
	filter: brightness(0) invert(1);
}

.fph-site-footer__logo img {
	width: clamp(104px, 13vw, 164px);
	height: auto;
	filter: invert(1);
}

.fph-site-footer a,
.fph-site-footer span {
	display: block;
	font-weight: 800;
}

.fph-site-footer {
	position: fixed;
	inset: auto 0 0;
	z-index: 0;
	display: grid;
	min-height: var(--fph-footer-reveal);
	align-content: space-between;
	gap: 40px;
	border-top: 1px solid var(--fph-line);
	background: #fff;
	padding: clamp(34px, 6vw, 76px) clamp(22px, 5.4vw, 100px);
	color: var(--fph-ink);
}

.fph-site-footer__grid {
	display: grid;
	grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(150px, 0.55fr));
	gap: clamp(30px, 7vw, 112px);
}

.fph-site-footer p {
	max-width: 16ch;
	margin: 20px 0 0;
	color: rgba(17, 23, 20, 0.62);
	font-size: clamp(1.2rem, 1.8vw, 1.8rem);
	line-height: 1.25;
}

.fph-site-footer h2 {
	margin: 0 0 20px;
	color: rgba(17, 23, 20, 0.38);
	font-family: var(--fph-display);
	font-size: clamp(1.1rem, 1.5vw, 1.45rem);
	line-height: 1;
}

.fph-site-footer nav,
.fph-site-footer__grid > div:not(:first-child) {
	display: grid;
	align-content: start;
	gap: 11px;
	font-family: var(--fph-body);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fph-site-footer nav a[aria-current="page"],
.fph-site-footer nav .current-menu-item > a {
	color: var(--fph-copper);
	opacity: 1;
}

.fph-site-footer__bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
	color: rgba(17, 23, 20, 0.38);
}

.fph-eyebrow {
	margin: 0 0 18px;
	color: var(--fph-copper);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.fph-eyebrow--light {
	color: rgba(255, 255, 255, 0.72);
}

.fph-display-title,
.fph-display-heading,
.fph-section-title {
	margin: 0;
	font-family: var(--fph-display);
	font-weight: 800;
	text-wrap: balance;
}

.fph-display-title {
	max-width: 11.8ch;
	color: #fff;
	font-size: clamp(3.35rem, 7.2vw, 6.7rem);
	line-height: 0.92;
	text-transform: uppercase;
}

.fph-display-heading {
	max-width: 13ch;
	font-size: clamp(2.35rem, 5.2vw, 5.4rem);
	line-height: 0.94;
}

.fph-section-title {
	max-width: 10ch;
	font-size: clamp(1.8rem, 3.35vw, 3.7rem);
	line-height: 0.96;
}

.fph-lead {
	margin: 22px 0 0;
	color: var(--fph-muted);
	font-size: clamp(1.03rem, 1.35vw, 1.22rem);
	line-height: 1.85;
	
	/* Non-destructive removal - hide from frontend only */
	display: none;
}

.fph-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid currentColor;
	padding: 0 20px;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.fph-button:hover,
.fph-button:focus-visible {
	transform: translateY(-2px);
}

.fph-button--clay {
	border-color: var(--fph-clay);
	background: var(--fph-clay);
	color: #fff;
	box-shadow: 0 18px 48px rgba(170, 72, 49, 0.25);
}

.fph-button--ghost {
	background: transparent;
	color: currentColor;
}

.fph-button--ink {
	border-color: var(--fph-ink);
	background: rgba(17, 23, 20, 0.88);
	color: #fff;
}

.fph-motion-title-line {
	display: block;
	overflow: hidden;
}

.fph-motion-title-line > span {
	display: block;
	will-change: transform;
}

.fph-motion-hero-media,
.fph-motion-gallery-image,
.fph-motion-story-image,
.fph-motion-destination-mask {
	will-change: transform;
}

.fph-reduce-motion .fph-motion-destination-mask {
	clip-path: none !important;
}

.fph-inside-hero {
	position: relative;
	isolation: isolate;
	min-height: 76svh;
	overflow: hidden;
	background: var(--fph-paper);
	padding: clamp(118px, 12vw, 168px) clamp(18px, 5vw, 76px) clamp(76px, 10vw, 136px);
}

.fph-inside-hero__texture {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(17, 23, 20, 0.08) 1px, transparent 1px),
		radial-gradient(circle at 86% 18%, rgba(191, 126, 77, 0.16), transparent 20rem);
	background-size: 25% 100%, auto;
}

.fph-inside-hero__background {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.86) brightness(0.82);
}

.fph-inside-hero:has(.fph-inside-hero__background) {
	color: #fff;
}

.fph-inside-hero:has(.fph-inside-hero__background) .fph-inside-hero__texture {
	background:
		linear-gradient(90deg, rgba(5, 12, 10, 0.78), rgba(5, 12, 10, 0.16) 58%, rgba(5, 12, 10, 0.58)),
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 100% 100%, 100% 58px;
}

.fph-inside-hero:has(.fph-inside-hero__background) .fph-breadcrumb,
.fph-inside-hero:has(.fph-inside-hero__background) .fph-inside-hero__lead p {
	color: rgba(255, 255, 255, 0.8);
}

.fph-inside-hero__grid {
	display: grid;
	width: 100%;
	grid-template-columns: minmax(220px, 0.25fr) minmax(0, 0.75fr);
	gap: clamp(30px, 6vw, 96px);
	align-items: start;
}

.fph-inside-hero__heading {
	align-self: start;
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.fph-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	color: var(--fph-muted);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fph-breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.fph-inside-hero__title {
	margin: 0;
	font-family: var(--fph-display);
	font-size: clamp(2.55rem, 3.8vw, 4.8rem);
	font-weight: 800;
	line-height: 0.9;
	text-transform: uppercase;
}

.fph-inside-hero__lead {
	display: grid;
	justify-self: center;
	max-width: 820px;
	gap: 0;
	padding-top: clamp(104px, 10vw, 178px);
}

.fph-inside-hero__lead p {
	margin: 0;
	color: rgba(17, 23, 20, 0.72);
	font-size: clamp(1.24rem, 1.78vw, 1.66rem);
	line-height: 1.68;
}

.fph-inside-hero__lead p + p {
	margin-top: 24px;
}

.fph-story-sequence {
	background: var(--fph-paper);
}

.fph-story-section {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.56fr);
	gap: clamp(34px, 7vw, 108px);
	min-height: 132svh;
	border-top: 1px solid var(--fph-line);
	padding: clamp(54px, 8vw, 116px) clamp(18px, 5vw, 76px);
}

.fph-story-section--image-right {
	grid-template-columns: minmax(300px, 0.56fr) minmax(0, 0.95fr);
}

.fph-story-section--image-right .fph-story-section__media {
	order: 2;
}

.fph-story-section__media {
	display: grid;
	align-content: start;
	gap: 16px;
	margin: 0;
}

.fph-story-section__frame {
	height: calc(132svh - 10rem);
	min-height: 620px;
	overflow: hidden;
	background: var(--fph-ink);
	box-shadow: 0 30px 100px rgba(17, 23, 20, 0.12);
}

.fph-story-section__image {
	width: 100%;
	height: 110%;
	object-fit: cover;
	filter: saturate(0.86) contrast(1.04);
}

.fph-story-section__media figcaption {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	color: var(--fph-muted);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.45;
	text-transform: uppercase;
}

.fph-story-section__media figcaption span {
	color: var(--fph-clay);
	font-family: var(--fph-body);
	font-size: 0.74rem;
	line-height: 1;
}

.fph-story-section__media figcaption p {
	margin: 0;
}

.fph-story-section__copy {
	display: flex;
	align-items: center;
	min-height: calc(132svh - 10rem);
}

.fph-story-section__copy-panel {
	position: sticky;
	top: 112px;
	max-width: 480px;
	padding-block: 20px;
}

.fph-story-section__copy-panel h2 {
	max-width: 10.5ch;
	margin: 0;
	font-family: var(--fph-display);
	font-size: clamp(2.15rem, 4.6vw, 4.85rem);
	font-weight: 800;
	line-height: 0.95;
	text-wrap: balance;
}

.fph-story-section__copy-panel p:not(.fph-eyebrow) {
	margin: 24px 0 0;
	color: var(--fph-muted);
	font-size: clamp(1rem, 1.18vw, 1.16rem);
	line-height: 1.78;
}

.fph-story-section__copy-panel .fph-button {
	margin-top: 34px;
}

.fph-editor-section-card {
	border-top: 1px solid #ddd;
	margin-top: 18px;
	padding-top: 18px;
}

.fph-editor-section-card.is-selected {
	border-top-color: var(--fph-clay);
	box-shadow: inset 3px 0 0 var(--fph-clay);
	padding-left: 12px;
}

.fph-editor-section-card__label {
	margin: 0 0 12px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fph-editor-section-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 10px 0 18px;
}

.fph-editor-section-card__nested {
	border-top: 1px solid #e3e0d8;
	margin-top: 12px;
	padding-top: 12px;
}

.fph-editor-grid-two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.fph-editor-inline-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	align-items: end;
}

.fph-editor-geometry-help {
	margin: 12px 0 0;
	color: var(--fph-muted);
	font-size: 0.84rem;
	line-height: 1.55;
}

.fph-editor-geometry-fallback {
	margin-top: 14px;
	border-top: 1px solid #e3e0d8;
	padding-top: 12px;
}

.fph-editor-geometry-fallback summary {
	cursor: pointer;
	color: var(--fph-ink);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fph-editor-geometry-fallback__field {
	margin-top: 12px;
}

.fph-editor-geometry-error {
	margin: -8px 0 10px;
	color: #b42318;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.45;
}

.fph-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: 100svh;
	align-items: end;
	overflow: hidden;
	padding: 112px clamp(18px, 5vw, 76px) clamp(28px, 5vw, 68px);
	color: #fff;
}

.fph-hero__media,
.fph-amenities > img {
	position: absolute;
	inset: 0;
	z-index: -3;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.fph-hero__shade {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 76% 18%, rgba(191, 126, 77, 0.24), transparent 19rem),
		linear-gradient(90deg, rgba(5, 12, 10, 0.9), rgba(5, 12, 10, 0.14) 54%, rgba(5, 12, 10, 0.62)),
		linear-gradient(0deg, rgba(5, 12, 10, 0.74), transparent 48%);
}

.fph-hero__frame {
	position: absolute;
	inset: 82px clamp(14px, 3vw, 46px) clamp(18px, 3vw, 44px);
	z-index: -1;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom: 0;
	pointer-events: none;
}

.fph-hero__rail {
	position: absolute;
	top: 112px;
	right: clamp(18px, 5vw, 76px);
	z-index: 2;
	display: grid;
	justify-items: end;
	gap: 9px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

.fph-hero__content {
	position: relative;
	z-index: 3;
	display: grid;
	width: 100%;
	grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
	align-items: end;
	gap: clamp(34px, 8vw, 118px);
}

.fph-hero__copy {
	max-width: 850px;
	min-width: 0;
}

.fph-hero__lead {
	max-width: 640px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.02rem, 1.55vw, 1.32rem);
	line-height: 1.75;
	overflow-wrap: break-word;
}

.fph-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.fph-hero__facts {
	display: grid;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(16px);
	min-width: 0;
}

.fph-hero__fact {
	display: grid;
	min-height: 96px;
	align-content: center;
	gap: 6px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	padding: 18px 22px;
}

.fph-hero__fact:last-child {
	border-bottom: 0;
}

.fph-hero__fact--accent {
	background: var(--fph-clay);
}

.fph-suite__details {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
}

.fph-suite__details li {
	font-size: clamp(0.75rem, 1.1vw, 0.875rem);
	line-height: 1.6;
	padding: 0.15rem 0 0.15rem 1.1rem;
	position: relative;
	color: var(--fph-off-white);
}

.fph-suite__details li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 0.45rem;
	height: 1px;
	background: currentColor;
	opacity: 0.45;
}

.fph-hero__fact span,
.fph-suite__stats span,
.fph-location__proof span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fph-hero__fact strong {
	font-size: clamp(1.45rem, 2.6vw, 2.25rem);
	line-height: 1;
}

.fph-editorial-statement {
	display: grid;
	grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
	align-items: center;
	gap: clamp(36px, 9vw, 136px);
	overflow: hidden;
	background: var(--fph-paper);
	padding: clamp(76px, 12vw, 156px) 0 clamp(38px, 6vw, 78px) clamp(18px, 5vw, 76px);
}

@media (max-width: 900px) {
	.fph-editorial-statement {
		grid-template-columns: 1fr;
		padding-right: clamp(18px, 5vw, 76px);
	}
}

.fph-editorial-statement--text {
	grid-template-columns: 1fr;
}

.fph-editorial-statement__copy {
	max-width: 620px;
	min-width: 0;
}

.fph-editorial-statement__body {
	display: grid;
	gap: 16px;
	margin-top: clamp(42px, 6vw, 74px);
	color: var(--fph-ink);
	font-size: clamp(1.16rem, 2vw, 2.25rem);
	font-weight: 500;
	line-height: 1.22;
}

.fph-editorial-statement__body p {
	margin: 0;
}

.fph-motion-philosophy-line {
	will-change: opacity;
}

.fph-editorial-statement__media {
	width: 100%;
	max-width: none;
	margin: 0;
	min-width: 0;
}

.fph-editorial-statement__media > div {
	aspect-ratio: 4 / 5;
	min-height: clamp(420px, 45vh, 680px);
	overflow: hidden;
	background: var(--fph-forest);
}

.fph-editorial-statement__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 44% center;
	filter: saturate(0.86);
}

.fph-editorial-statement__media figcaption {
	max-width: 28ch;
	margin-top: 16px;
	color: var(--fph-muted);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fph-suite,
.fph-gallery {
	background: var(--fph-stone);
	padding-block: clamp(76px, 12vw, 156px);
}

.fph-suite {
	overflow: visible;
}

.fph-gallery {
	overflow: hidden;
}

.fph-suite__grid,
.fph-gallery__layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1fr);
	gap: clamp(30px, 5vw, 74px);
	padding-inline: clamp(18px, 5vw, 76px);
}

.fph-suite__grid {
	align-items: stretch;
	min-height: 85svh;
}

.fph-suite__intro,
.fph-gallery__intro {
	position: sticky;
	top: 112px;
	align-self: start;
	padding-right: clamp(18px, 3vw, 42px);
	min-width: 0;
}

.fph-suite__switcher {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 520px;
	margin-top: 32px;
	border: 1px solid var(--fph-ink);
}

.fph-suite__switcher button {
	min-height: 54px;
	cursor: pointer;
	border: 0;
	border-right: 1px solid var(--fph-ink);
	background: transparent;
	color: var(--fph-ink);
	font-weight: 800;
	text-transform: uppercase;
}

.fph-suite__switcher button:last-child {
	border-right: 0;
}

.fph-suite__switcher button[aria-selected="true"],
.fph-suite__switcher button.is-active {
	background: var(--fph-ink);
	color: #fff;
}

.fph-suite__stage {
	display: grid;
	grid-template-rows: auto auto;
	align-content: start;
	align-self: start;
	min-height: 0;
	overflow: hidden;
	background: var(--fph-ink);
	box-shadow: 0 34px 110px rgba(17, 23, 20, 0.18);
}

.fph-suite__panels {
	position: relative;
	overflow: hidden;
	min-height: min(720px, 76svh);
	background: var(--fph-ink);
}

.fph-suite__panel {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.58fr);
	gap: clamp(24px, 5vw, 72px);
	align-content: end;
	padding: clamp(22px, 4vw, 58px);
	color: #fff;
	opacity: 0;
	pointer-events: none;
	transition: opacity 280ms ease;
}

.fph-suite__panel.is-active {
	opacity: 1;
	pointer-events: auto;
}

.fph-suite__panel img {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.82);
}

.fph-suite__panel-shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(circle at 82% 18%, rgba(191, 126, 77, 0.24), transparent 18rem),
		linear-gradient(90deg, rgba(8, 14, 12, 0.88), rgba(8, 14, 12, 0.22) 54%, rgba(8, 14, 12, 0.76)),
		linear-gradient(0deg, rgba(8, 14, 12, 0.86), transparent 48%);
}

.fph-suite__panel-copy,
.fph-suite__stats {
	position: relative;
	z-index: 2;
	align-self: end;
}

.fph-suite__panel-copy h3 {
	max-width: 11ch;
	margin: 0;
	font-family: var(--fph-display);
	font-size: clamp(2.6rem, 5.8vw, 5.9rem);
	line-height: 0.92;
	text-wrap: balance;
}

.fph-suite__panel-copy p:not(.fph-eyebrow) {
	max-width: 560px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1rem, 1.4vw, 1.22rem);
	line-height: 1.78;
}

.fph-suite__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
}

.fph-suite__actions > span {
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.1);
	padding: 12px 16px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.fph-suite__mobile-facts {
	display: none;
}

.fph-suite__stats {
	display: grid;
	gap: 1px;
	background: rgba(255, 255, 255, 0.2);
}

.fph-suite__stats div {
	display: grid;
	min-height: 116px;
	align-content: space-between;
	gap: 8px;
	background: rgba(12, 18, 16, 0.72);
	padding: 20px;
	backdrop-filter: blur(14px);
}

.fph-suite__stats strong {
	font-family: var(--fph-display);
	font-size: clamp(1.35rem, 2.2vw, 2.1rem);
}


.fph-fact-grid {
	background: var(--fph-paper);
	padding: clamp(76px, 12vw, 156px) clamp(18px, 5vw, 76px);
}

.fph-fact-grid--dark,
.fph-fact-grid--suite-offer {
	background: var(--fph-ink);
	color: #fff;
}

.fph-fact-grid--forest {
	background: var(--fph-forest);
	color: #fff;
}

.fph-fact-grid--suite-offer {
	min-height: 112svh;
}

.fph-fact-grid__layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
	gap: clamp(34px, 6vw, 96px);
	align-items: start;
}

.fph-fact-grid--suite-offer .fph-fact-grid__layout {
	grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.7fr);
	gap: clamp(34px, 7vw, 106px);
}

.fph-fact-grid--suite-offer .fph-fact-grid__intro {
	position: sticky;
	top: 112px;
	display: flex;
	min-height: calc(112svh - 10rem);
	align-items: center;
	max-width: 680px;
}

.fph-fact-grid--suite-offer .fph-display-heading {
	max-width: 12ch;
}

.fph-fact-grid--suite-amenities .fph-fact-grid__intro {
	max-width: 520px;
}

.fph-fact-grid__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--fph-line);
}

.fph-fact-grid--suite-offer .fph-fact-grid__items {
	grid-template-columns: 1fr;
	align-self: center;
	background: rgba(255, 255, 255, 0.16);
}

.fph-fact-grid__item {
	position: relative;
	display: grid;
	min-height: 190px;
	align-content: space-between;
	gap: 22px;
	background: var(--fph-stone);
	color: var(--fph-ink);
	padding: clamp(20px, 3vw, 34px);
}

.fph-fact-grid--paper .fph-fact-grid__item {
	background: var(--fph-paper);
}

.fph-fact-grid--dark .fph-fact-grid__item,
.fph-fact-grid--forest .fph-fact-grid__item,
.fph-fact-grid--suite-offer .fph-fact-grid__item {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.fph-fact-grid--suite-amenities .fph-fact-grid__item {
	min-height: 0;
	align-content: unset;
	gap: 0;
	transition:
		background-color 900ms cubic-bezier(0.16, 1, 0.3, 1),
		color 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fph-fact-grid--suite-amenities .fph-fact-grid__item:hover {
	background: var(--fph-ink);
	color: #fff;
}

.fph-fact-grid__amenity-body {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 22px);
}

.fph-fact-grid__amenity-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	color: var(--fph-copper);
	transition: color 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fph-fact-grid--suite-amenities .fph-fact-grid__item:hover .fph-fact-grid__amenity-icon {
	color: var(--fph-copper);
}

.fph-fact-grid__item h3 {
	max-width: 12ch;
	margin: 0;
	font-family: var(--fph-display);
	font-size: clamp(1.8rem, 3.35vw, 3.7rem);
	line-height: 0.96;
	text-wrap: balance;
}

.fph-fact-grid--suite-amenities .fph-fact-grid__item h3 {
	max-width: 30ch;
	font-family: var(--fph-body);
	font-size: clamp(1.04rem, 1.5vw, 1.28rem);
	font-weight: 600;
	line-height: 1.38;
}

.fph-fact-grid__item p:not(.fph-eyebrow) {
	margin: 0;
	color: var(--fph-muted);
	font-size: clamp(1rem, 1.35vw, 1.16rem);
	line-height: 1.8;
}

.fph-fact-grid--dark .fph-fact-grid__item p:not(.fph-eyebrow),
.fph-fact-grid--forest .fph-fact-grid__item p:not(.fph-eyebrow),
.fph-fact-grid--suite-offer .fph-fact-grid__item p:not(.fph-eyebrow) {
	color: rgba(255, 255, 255, 0.76);
}

.fph-fact-grid__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 4px;
}

.fph-fact-grid__meta strong {
	font-family: var(--fph-display);
	font-size: clamp(1.6rem, 2.8vw, 3rem);
	font-weight: 400;
	line-height: 1;
}

.fph-fact-grid__meta a {
	display: none;
}

.fph-suite-explorer {
	overflow: hidden;
	scroll-margin-top: 112px;
	background: var(--fph-stone);
	padding-block: clamp(76px, 11vw, 142px);
}

.fph-suite-explorer__layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	gap: clamp(30px, 5vw, 78px);
	padding-inline: clamp(18px, 5vw, 76px);
}

.fph-suite-explorer__copy {
	position: sticky;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.fph-suite-explorer__intro .fph-section-title {
	max-width: 10ch;
}

.fph-suite-explorer__intro .fph-lead {
	color: var(--fph-muted);
	font-size: clamp(1.02rem, 1.35vw, 1.2rem);
	line-height: 1.82;
}

.fph-suite-explorer__controls {
	display: grid;
	gap: 8px;
	margin-top: 24px;
}

.fph-suite-explorer__group-tabs,
.fph-suite-explorer__variant-tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.fph-suite-explorer__variant-tabs {
	transition: opacity 300ms ease, transform 300ms ease;
}

.fph-suite-explorer__group-tabs button,
.fph-suite-explorer__variant-tabs button {
	min-height: 36px;
	cursor: pointer;
	border: 1px solid var(--fph-line);
	border-radius: 20px;
	background: var(--fph-paper);
	color: var(--fph-ink);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: all 300ms ease;
	padding: 6px 16px;
}

.fph-suite-explorer__variant-tabs button {
	min-height: 32px;
	font-size: 0.68rem;
	padding: 4px 14px;
}

.fph-suite-explorer__group-tabs button:hover,
.fph-suite-explorer__group-tabs button:focus-visible {
	background: rgba(17, 23, 20, 0.08);
	border-color: var(--fph-ink);
	transform: translateY(-1px);
}

.fph-suite-explorer__variant-tabs button:hover,
.fph-suite-explorer__variant-tabs button:focus-visible {
	background: rgba(170, 72, 49, 0.08);
	border-color: var(--fph-clay);
	transform: translateY(-1px);
}

.fph-suite-explorer__group-tabs button.is-active {
	background: var(--fph-ink);
	color: #fff;
	border-color: var(--fph-ink);
	box-shadow: 0 2px 8px rgba(17, 23, 20, 0.2);
}

.fph-suite-explorer__variant-tabs button.is-active {
	background: var(--fph-clay);
	color: #fff;
	border-color: var(--fph-clay);
	box-shadow: 0 2px 8px rgba(170, 72, 49, 0.2);
}

/* Animation for variant tabs appearance */
.fph-suite-explorer__variant-tabs:not(.is-visible) {
	opacity: 0;
	transform: translateY(-10px);
	pointer-events: none;
}

.fph-suite-explorer__variant-tabs.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.fph-suite-explorer__facts {
	display: grid;
	gap: 1px;
	background: var(--fph-line);
}

.fph-suite-explorer__facts[hidden] {
	display: none;
}

.fph-suite-explorer__facts div {
	display: grid;
	grid-template-columns: 0.5fr 1fr;
	gap: 16px;
	background: var(--fph-paper);
	padding: 16px;
}

.fph-suite-explorer__facts span {
	color: var(--fph-muted);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fph-suite-explorer__facts strong {
	font-size: clamp(1rem, 1.4vw, 1.24rem);
	line-height: 1.15;
}

.fph-suite-explorer__insight-stack {
	display: grid;
	margin-top: auto;
}

.fph-suite-explorer__insight[hidden] {
	display: none;
}

.fph-suite-explorer__insight {
	display: grid;
	gap: 1px;
	background: var(--fph-line);
}

.fph-suite-explorer__stage,
.fph-suite-explorer__panels,
.fph-suite-explorer__panel {
	min-width: 0;
}

.fph-suite-explorer__panel[hidden] {
	display: none;
}

.fph-suite-explorer__plan-shell {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	min-width: 0;
	overflow: hidden;
	background: var(--fph-paper);
	box-shadow: none;
}

.fph-suite-explorer__plan-header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 1px solid var(--fph-line);
	padding: clamp(16px, 2.6vw, 28px);
}

.fph-suite-explorer__plan-header .fph-eyebrow {
	margin-bottom: 8px;
}

.fph-suite-explorer__plan-header h3 {
	margin: 0;
	font-family: var(--fph-display);
	font-size: clamp(2rem, 3.4vw, 4.2rem);
	font-weight: 800;
	line-height: 1;
}

.fph-suite-explorer__plan-tools {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.fph-suite-explorer__plan-tools button {
	display: grid;
	min-width: 44px;
	height: 44px;
	cursor: pointer;
	place-items: center;
	border: 1px solid rgba(17, 23, 20, 0.24);
	background: transparent;
	color: var(--fph-clay);
	transition: background-color 700ms ease, color 700ms ease;
}

.fph-suite-explorer__plan-tools button:hover,
.fph-suite-explorer__plan-tools button:focus-visible {
	background: var(--fph-ink);
	color: #fff;
}

.fph-suite-explorer__focus-icon--minimize {
	display: none;
}

.fph-suite-explorer__plan-shell.is-focus .fph-suite-explorer__focus-icon--expand {
	display: none;
}

.fph-suite-explorer__plan-shell.is-focus .fph-suite-explorer__focus-icon--minimize {
	display: block;
}

.fph-suite-explorer__plan-canvas {
	display: grid;
	height: clamp(500px, 58vw, 760px);
	min-width: 0;
	place-items: center;
	overflow: hidden;
	background: #fff;
	padding: clamp(16px, 2vw, 26px);
}

.fph-suite-explorer__plan-frame {
	display: grid;
	width: 100%;
	height: 100%;
	max-width: 980px;
	place-items: center;
	margin-inline: auto;
	background: #fff;
}

.fph-suite-explorer__plan-viewport {
	--plan-scale: 1;
	position: relative;
	display: inline-grid;
	height: 100%;
	aspect-ratio: var(--plan-aspect, auto);
	max-width: 100%;
	max-height: 100%;
	place-items: center;
	overflow: visible;
	background: #fff;
	transform: scale(var(--plan-scale));
	transform-origin: center;
	transition: transform 420ms ease;
}

.fph-suite-explorer__plan-image {
	display: block;
	width: auto;
	max-width: 100%;
	height: 100%;
	max-height: 100%;
	grid-area: 1 / 1;
}

.fph-suite-explorer__plan-image {
	object-fit: contain;
	background: #fff;
}

.fph-suite-explorer__plan-image--svg {
	box-shadow: none;
}

.fph-suite-explorer__hotspots {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
}

.fph-suite-explorer__hotspot {
	cursor: pointer;
	pointer-events: auto;
	outline: none;
}

.fph-suite-explorer__hotspot-shape {
	fill: rgba(170, 72, 49, 0.06);
	stroke: rgba(170, 72, 49, 0.26);
	stroke-width: 2;
	vector-effect: non-scaling-stroke;
	transition: fill 220ms ease, stroke 220ms ease;
}

.fph-suite-explorer__hotspot-label {
	transform-box: fill-box;
	transform-origin: center;
	opacity: 0;
	fill: #fff;
	font-family: var(--fph-body);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	paint-order: stroke;
	pointer-events: none;
	stroke: var(--fph-ink);
	stroke-linejoin: round;
	stroke-width: 5px;
	text-anchor: middle;
	text-transform: uppercase;
	transition: opacity 180ms ease;
}

.fph-suite-explorer__hotspot:hover .fph-suite-explorer__hotspot-shape,
.fph-suite-explorer__hotspot:focus-visible .fph-suite-explorer__hotspot-shape,
.fph-suite-explorer__hotspot.is-active .fph-suite-explorer__hotspot-shape {
	fill: rgba(170, 72, 49, 0.32);
	stroke: rgba(170, 72, 49, 1);
}

.fph-suite-explorer.is-geometry-calibrating .fph-suite-explorer__hotspot-shape {
	fill: rgba(48, 75, 59, 0.08);
	stroke: rgba(48, 75, 59, 0.32);
}

.fph-suite-explorer.is-geometry-calibrating
	.fph-suite-explorer__hotspot.is-active
	.fph-suite-explorer__hotspot-shape {
	fill: rgba(170, 72, 49, 0.2);
	stroke: rgba(170, 72, 49, 0.92);
	stroke-width: 2.5;
}

.fph-suite-explorer.is-geometry-calibrating
	.fph-suite-explorer__hotspot-shape.is-selected-polygon {
	fill: rgba(170, 72, 49, 0.3);
	stroke: var(--fph-clay);
}

.fph-suite-explorer__geometry-control {
	pointer-events: auto;
}

.fph-suite-explorer__geometry-edge,
.fph-suite-explorer__geometry-point {
	cursor: pointer;
	vector-effect: non-scaling-stroke;
}

.fph-suite-explorer__geometry-edge {
	fill: rgba(255, 255, 255, 0.92);
	stroke: rgba(170, 72, 49, 0.72);
	stroke-dasharray: 2 2;
	stroke-width: 1.5;
}

.fph-suite-explorer__geometry-point {
	fill: var(--fph-paper);
	stroke: var(--fph-clay);
	stroke-width: 2;
}

.fph-suite-explorer__geometry-edge:hover,
.fph-suite-explorer__geometry-edge:focus-visible,
.fph-suite-explorer__geometry-point:hover,
.fph-suite-explorer__geometry-point:focus-visible,
.fph-suite-explorer__geometry-point.is-selected {
	fill: var(--fph-clay);
	stroke: var(--fph-ink);
	outline: none;
}

.fph-suite-explorer__hotspot:hover .fph-suite-explorer__hotspot-label,
.fph-suite-explorer__hotspot:focus-visible .fph-suite-explorer__hotspot-label,
.fph-suite-explorer__hotspot.is-active .fph-suite-explorer__hotspot-label {
	opacity: 1;
}

.fph-suite-explorer__plan-placeholder {
	margin: 0;
	color: var(--fph-muted);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.fph-suite-explorer__details {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(240px, 0.6fr);
	gap: 1px;
	background: var(--fph-line);
}

.fph-suite-explorer__details--interactive {
	grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.78fr);
}


.fph-suite-explorer__room-panel {
	display: grid;
	align-content: start;
	gap: 18px;
	background: var(--fph-forest);
	color: #fff;
	padding: clamp(18px, 2.4vw, 30px);
}

.fph-suite-explorer__room-panel .fph-eyebrow {
	color: rgba(255, 255, 255, 0.68);
}

.fph-suite-explorer__room-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fph-suite-explorer__room-chips button {
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: transparent;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	padding: 8px 10px;
	text-transform: uppercase;
	transition:
		background-color 220ms ease,
		color 220ms ease,
		border-color 220ms ease;
}

.fph-suite-explorer__room-chips button:hover,
.fph-suite-explorer__room-chips button:focus-visible,
.fph-suite-explorer__room-chips button.is-active {
	border-color: rgba(255, 255, 255, 0.82);
	background: rgba(191, 126, 77, 0.26);
	color: #fff;
}

.fph-suite-explorer__room-chips button.is-active {
	border-color: rgba(255, 255, 255, 0.95);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.fph-suite-explorer__room-cards {
	min-height: 220px;
}

.fph-suite-explorer__room-empty,
.fph-suite-explorer__room-card {
	margin: 0;
}

.fph-suite-explorer__room-empty[hidden],
.fph-suite-explorer__room-card[hidden] {
	display: none;
}

.fph-suite-explorer__room-card h4 {
	margin: 0 0 12px;
	font-family: var(--fph-display);
	font-size: clamp(1.65rem, 2.4vw, 2.65rem);
	font-weight: 800;
	line-height: 1;
}

.fph-suite-explorer__room-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.98rem;
	line-height: 1.56;
}

.fph-suite-explorer__room-card .fph-suite-explorer__room-summary {
	margin-bottom: 10px;
	color: #fff;
	font-weight: 700;
}

.fph-suite-explorer__room-card.is-active {
	padding-top: 4px;
}


.fph-suite-explorer__insight .fph-suite-explorer__room-panel {
	gap: 14px;
}



@media (min-width: 981px) {
	.fph-suite-explorer__stage .fph-suite-explorer__details {
		display: none;
	}
}

@media (max-width: 980px) {
	.fph-suite-explorer__insight-stack {
		display: none;
	}
}



.fph-suite-explorer__features {
	display: grid;
	gap: 1px;
	margin: 0;
	list-style: none;
	padding: 0;
	background: var(--fph-line);
}

.fph-suite-explorer__features li {
	background: var(--fph-forest);
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.98rem;
	line-height: 1.5;
	padding: 16px clamp(18px, 2.5vw, 26px);
}

.fph-suite-plan-focus {
	overflow: hidden;
}

.fph-suite-plan-focus .fph-site-header {
	opacity: 0;
	pointer-events: none;
}

.fph-suite-plan-focus .fph-suite-explorer {
	position: relative;
	z-index: 120;
}

.fph-suite-explorer__plan-shell.is-focus {
	position: fixed;
	inset: clamp(12px, 3vw, 34px);
	z-index: 500;
	grid-template-rows: auto minmax(0, 1fr) auto;
	box-shadow: 0 40px 140px rgba(0, 0, 0, 0.34);
}

.fph-suite-explorer__plan-shell.is-focus .fph-suite-explorer__plan-canvas {
	height: 100%;
	min-height: 0;
}

.fph-suite-explorer__plan-shell:not(.is-focus) [data-suite-explorer-zoom] {
	display: none;
}

.admin-bar .fph-suite-explorer__plan-shell.is-focus {
	top: calc(clamp(12px, 3vw, 34px) + 32px);
}

.fph-location {
	background: var(--fph-earth);
	color: #fff;
}

.fph-location__hero {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: 112svh;
	place-items: center;
	overflow: hidden;
	padding: clamp(90px, 13vw, 170px) clamp(18px, 5vw, 76px);
	text-align: center;
}

.fph-location__mask {
	position: absolute;
	inset: 0;
	z-index: -3;
	overflow: hidden;
	clip-path: circle(140% at 50% 50%);
}

.fph-location__mask img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: brightness(0.72) saturate(0.86);
}

.fph-location__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(0deg, rgba(45, 30, 24, 0.74), rgba(45, 30, 24, 0.2)),
		radial-gradient(circle at center, transparent, rgba(45, 30, 24, 0.64));
}

.fph-location__copy {
	position: relative;
	z-index: 2;
	display: grid;
	max-width: 980px;
	place-items: center;
}

.fph-location__copy p:not(.fph-eyebrow) {
	max-width: 680px;
	margin: 32px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.05rem, 1.55vw, 1.36rem);
	line-height: 1.8;
}

.fph-location__proof {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: clamp(42px, 6vw, 76px);
	background: rgba(255, 255, 255, 0.22);
	text-align: left;
}

.fph-location__proof div {
	display: flex;
	min-height: 238px;
	flex-direction: column;
	justify-content: flex-end;
	gap: 20px;
	background: rgba(42, 27, 22, 0.72);
	padding: 24px;
	backdrop-filter: blur(12px);
}

.fph-location__proof strong {
	max-width: 13ch;
	font-family: var(--fph-display);
	font-size: clamp(1.25rem, 1.9vw, 2rem);
	line-height: 1.08;
}

.fph-location__map {
	position: relative;
	min-height: clamp(430px, 58vw, 720px);
	overflow: hidden;
	background: #fff;
}

.fph-location__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(0.22) contrast(1.02) saturate(0.86);
	pointer-events: none;
}

.fph-location__map-card {
	position: absolute;
	bottom: clamp(18px, 4vw, 54px);
	left: clamp(18px, 5vw, 76px);
	max-width: 440px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(17, 23, 20, 0.78);
	padding: clamp(18px, 3vw, 30px);
	color: #fff;
	backdrop-filter: blur(14px);
}

.fph-location__map-card p:last-child {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.7;
}

.fph-location__map > .fph-button {
	position: absolute;
	right: clamp(18px, 5vw, 76px);
	bottom: clamp(18px, 4vw, 54px);
}

.fph-gallery {
	background: var(--fph-paper);
}

.fph-gallery__layout {
	padding-right: 0;
}

.fph-gallery__controls {
	display: flex;
	gap: 8px;
	margin-top: 28px;
}

.fph-gallery__controls button {
	display: grid;
	width: 48px;
	height: 48px;
	cursor: pointer;
	place-items: center;
	border: 1px solid var(--fph-ink);
	background: transparent;
	color: var(--fph-ink);
	transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.fph-gallery__controls button:hover,
.fph-gallery__controls button:focus-visible {
	background: var(--fph-ink);
	color: #fff;
}

.fph-gallery__controls button:disabled {
	cursor: not-allowed;
	opacity: 0.35;
}

.fph-gallery__viewport {
	margin-right: min(-8vw, -104px);
	overflow: hidden;
	overscroll-behavior-x: contain;
	touch-action: pan-y pinch-zoom;
	cursor: grab;
}

.fph-gallery__viewport:active {
	cursor: grabbing;
}

.fph-gallery__track {
	display: flex;
	gap: clamp(14px, 1.6vw, 24px);
	padding-right: clamp(18px, 5vw, 76px);
	backface-visibility: hidden;
	touch-action: pan-y pinch-zoom;
}

.fph-gallery__card {
	flex: 0 0 clamp(340px, 36vw, 540px);
	min-width: 0;
	background: var(--fph-ink);
	box-shadow: 0 28px 90px rgba(18, 24, 22, 0.14);
	contain: layout paint;
}

.fph-gallery__card figure {
	position: relative;
	height: clamp(440px, 50vw, 680px);
	margin: 0;
	overflow: hidden;
}

.fph-gallery__card img {
	width: 100%;
	height: 112%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.82);
	transition: transform 300ms ease, filter 300ms ease;
}

.fph-gallery__card:hover img {
	transform: scale(1.025);
	filter: saturate(1.02);
}

.fph-gallery__card figcaption {
	position: absolute;
	inset: auto 0 0;
	display: flex;
	min-height: 210px;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding: clamp(18px, 3vw, 32px);
	color: #fff;
	background:
		linear-gradient(0deg, rgba(8, 14, 12, 0.86), rgba(8, 14, 12, 0.32) 62%, transparent),
		radial-gradient(circle at 70% 20%, rgba(191, 126, 77, 0.12), transparent 18rem);
}

.fph-gallery__card figcaption span {
	display: inline-flex;
	width: fit-content;
	gap: 14px;
	background: var(--fph-paper);
	padding: 12px 16px;
	color: var(--fph-ink);
	font-weight: 800;
	text-transform: uppercase;
}

.fph-gallery__card figcaption strong {
	color: var(--fph-clay);
	font-family: var(--fph-display);
}

.fph-gallery__card figcaption p {
	max-width: 34ch;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.7;
	text-transform: uppercase;
}

/* ─── Photo Grid (Gallery page) ──────────────────────────────────────────── */

.fph-photo-grid {
	background: var(--fph-paper);
	padding-bottom: clamp(80px, 12vw, 160px);
}

.fph-photo-grid__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(24px, 4vw, 56px);
	padding: clamp(32px, 5vw, 56px) clamp(18px, 5vw, 76px) clamp(20px, 3vw, 36px);
	border-bottom: 1px solid rgba(17, 23, 20, 0.12);
	margin-bottom: clamp(16px, 2vw, 28px);
}

.fph-photo-grid__toolbar-label {
	flex-shrink: 0;
}

.fph-photo-grid__toolbar-label .fph-eyebrow {
	margin-bottom: 4px;
}

.fph-photo-grid__title {
	margin: 0;
	font-family: var(--fph-sans);
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	font-weight: 800;
	color: var(--fph-ink);
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.fph-photo-grid__filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.fph-photo-grid__filter-btn {
	display: inline-flex;
	align-items: center;
	height: 44px;
	padding: 0 20px;
	border: 1px solid var(--fph-ink);
	background: transparent;
	color: var(--fph-ink);
	font-family: var(--fph-sans);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 600ms ease, color 600ms ease, border-color 600ms ease;
}

.fph-photo-grid__filter-btn:hover,
.fph-photo-grid__filter-btn:focus-visible {
	background: var(--fph-ink);
	color: #fff;
	outline: none;
}

.fph-photo-grid__filter-btn.is-active {
	background: var(--fph-ink);
	color: #fff;
	border-color: var(--fph-ink);
}

.fph-photo-grid__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: clamp(280px, 28vw, 420px);
	gap: clamp(6px, 0.8vw, 12px);
	padding: 0 clamp(18px, 5vw, 76px);
}

.fph-photo-grid__card {
	position: relative;
	overflow: hidden;
	background: var(--fph-ink);
	contain: layout paint;
	transition: opacity 320ms ease;
}

.fph-photo-grid__card.is-hidden {
	display: none;
}

.fph-photo-grid__card.is-featured {
	grid-column: span 2;
}

.fph-photo-grid__card figure {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.fph-photo-grid__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.84);
	transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
	display: block;
}

.fph-photo-grid__card:hover img {
	transform: scale(1.04);
	filter: saturate(1.0);
}

.fph-photo-grid__card figcaption {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: clamp(16px, 2.5vw, 28px);
	color: #fff;
	background:
		linear-gradient(0deg, rgba(8, 14, 12, 0.88) 0%, rgba(8, 14, 12, 0.36) 48%, transparent 72%),
		radial-gradient(circle at 80% 16%, rgba(191, 126, 77, 0.14), transparent 16rem);
	transform: translateY(100%);
	transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}

.fph-photo-grid__card:hover figcaption,
.fph-photo-grid__card:focus-within figcaption {
	transform: translateY(0);
}

.fph-photo-grid__card-category {
	display: block;
	margin-bottom: 8px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fph-clay);
}

.fph-photo-grid__card-title {
	display: block;
	margin-bottom: 6px;
	font-family: var(--fph-sans);
	font-size: clamp(0.9rem, 1.4vw, 1.1rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.25;
}

.fph-photo-grid__card-desc {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
	max-width: 38ch;
}

.fph-amenities {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: 820px;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
	overflow: hidden;
	background: var(--fph-ink);
	color: #fff;
}

.fph-amenities > img {
	filter: saturate(0.82) brightness(0.72);
	transform: scale(1.03);
	object-position: 42% center;
}

.fph-amenities__shade {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(17, 23, 20, 0.02) 0%, rgba(17, 23, 20, 0.12) 34%, rgba(17, 23, 20, 0.48) 58%, rgba(17, 23, 20, 0.82) 86%),
		radial-gradient(circle at 64% 18%, rgba(170, 72, 49, 0.08), transparent 20rem);
}

.fph-amenities__content {
	align-self: center;
	padding: clamp(40px, 6vw, 88px);
}

.fph-amenities__content ul {
	margin: 42px 0 0;
	list-style: none;
	padding: 0;
}

.fph-amenities__content li {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 18px 0;
	color: rgba(255, 255, 255, 0.8);
}

.fph-amenities__content li::before {
	content: "+";
	display: inline-block;
	width: 24px;
	color: var(--fph-copper);
	font-weight: 800;
}

.fph-inquiry {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
	gap: clamp(36px, 7vw, 96px);
	background:
		linear-gradient(90deg, rgba(54, 72, 61, 0.98), rgba(54, 72, 61, 0.78)),
		var(--exterior-hero, none);
	background-position: center;
	background-size: cover;
	color: #fff;
	padding: clamp(76px, 12vw, 156px) clamp(18px, 5vw, 76px);
}

.fph-inquiry__frame {
	position: absolute;
	inset: clamp(18px, 3vw, 42px);
	z-index: -1;
	border: 1px solid rgba(255, 255, 255, 0.14);
	pointer-events: none;
}

.fph-inquiry__copy {
	max-width: 720px;
}

.fph-inquiry__copy p:not(.fph-eyebrow) {
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: clamp(1rem, 1.35vw, 1.18rem);
	line-height: 1.85;
}

.fph-inquiry__contacts {
	display: grid;
	gap: 14px;
	margin-top: 34px;
}

.fph-inquiry__contacts a {
	font-weight: 800;
}

.fph-inquiry__slot {
	display: grid;
	align-self: start;
	gap: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	padding: clamp(20px, 3vw, 34px);
	backdrop-filter: blur(16px);
}

.fph-inquiry .wpcf7 input[name="viewing-window"][readonly] {
	cursor: pointer;
	background: rgba(255, 255, 255, 0.88);
	caret-color: transparent;
}

.fph-booking-popover-backdrop {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(12px, 3vw, 24px);
	overflow: auto;
	background: rgba(17, 23, 20, 0.56);
	-webkit-overflow-scrolling: touch;
}

.fph-booking-popover-backdrop[hidden] {
	display: none;
}

body.fph-booking-popover-open {
	overflow: hidden;
}

.fph-booking-popover {
	position: relative;
	box-sizing: border-box;
	width: min(680px, 100%);
	max-height: min(620px, calc(100dvh - 24px));
	overflow: auto;
	border: 1px solid rgba(17, 23, 20, 0.18);
	background: #fff;
	color: var(--fph-ink);
	box-shadow: 0 20px 54px rgba(17, 23, 20, 0.18);
}

.fph-booking-popover__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 18px 14px;
	border-bottom: 1px solid rgba(17, 23, 20, 0.12);
	background: #fff;
}

.fph-booking-popover__eyebrow {
	margin: 0 0 8px;
	color: var(--fph-copper);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.fph-booking-popover__selection {
	margin: 0;
	color: rgba(17, 23, 20, 0.72);
	font-size: 0.88rem;
	line-height: 1.5;
}

.fph-booking-popover__selection.is-error {
	color: #aa4831;
}

.fph-booking-popover__close {
	display: grid;
	width: 36px;
	height: 36px;
	flex: 0 0 auto;
	place-items: center;
	border: 1px solid rgba(17, 23, 20, 0.18);
	background: #fff;
	color: var(--fph-ink);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	position: relative;
	z-index: 1;
	pointer-events: auto;
}

.fph-booking-popover__close:hover,
.fph-booking-popover__close:focus-visible {
	border-color: var(--fph-copper);
	color: var(--fph-copper);
	outline: none;
}

.fph-booking-popover__calendar {
	padding: 14px;
	background: #fff;
}

.fph-booking-popover__hint {
	margin: 0;
	padding: 0 18px 18px;
	color: rgba(17, 23, 20, 0.56);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fph-booking-popover .fc {
	--fc-border-color: rgba(17, 23, 20, 0.14);
	--fc-page-bg-color: #fff;
	--fc-neutral-bg-color: rgba(17, 23, 20, 0.04);
	--fc-today-bg-color: rgba(191, 126, 77, 0.12);
	--fc-list-event-hover-bg-color: rgba(17, 23, 20, 0.04);
	color: var(--fph-ink);
	font-family: var(--fph-body);
	font-size: 0.76rem;
}

.fph-booking-popover .fc table {
	margin: 0;
}

.fph-booking-popover .fc .fc-toolbar {
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
}

.fph-booking-popover .fc .fc-toolbar-title {
	color: var(--fph-ink);
	font-family: var(--fph-display);
	font-size: clamp(1rem, 1.5vw, 1.28rem);
	font-weight: 500;
	letter-spacing: 0;
	text-transform: uppercase;
}

.fph-booking-popover .fc .fc-button {
	border: 1px solid rgba(17, 23, 20, 0.2);
	border-radius: 0;
	background: #fff;
	color: var(--fph-ink);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: none;
}

.fph-booking-popover .fc .fc-button:hover,
.fph-booking-popover .fc .fc-button:focus-visible,
.fph-booking-popover .fc .fc-button-primary:not(:disabled).fc-button-active {
	border-color: var(--fph-forest);
	background: var(--fph-forest);
	color: #fff;
	box-shadow: none;
}

.fph-booking-popover .fc .fc-col-header-cell,
.fph-booking-popover .fc .fc-timegrid-axis,
.fph-booking-popover .fc .fc-timegrid-slot-label {
	background: rgba(17, 23, 20, 0.03);
	color: rgba(17, 23, 20, 0.62);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.fph-booking-popover .fc .fc-timegrid-slot {
	height: 34px;
}

.fph-booking-popover .fc .fc-timegrid-now-indicator-line {
	border-color: var(--fph-copper);
}

.fph-booking-popover .fc .fc-highlight {
	background: rgba(191, 126, 77, 0.22);
}

.fph-booking-popover .fc .fc-bg-event {
	background: rgba(17, 23, 20, 0.08) !important;
	opacity: 1;
}

.fph-booking-popover .fc .fc-event {
	border-radius: 0;
	padding: 2px 4px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: not-allowed;
}

.fph-booking-popover .fc .fc-event.is-confirmed,
.fph-booking-popover .fc .fph-booking-event--confirmed {
	border-color: #aa4831;
	background: #aa4831;
	color: #fffaf0;
}

.fph-booking-popover .fc .fc-event.is-pending,
.fph-booking-popover .fc .fph-booking-event--pending {
	border-color: #bf7e4d;
	background: #f3dfb5;
	color: var(--fph-ink);
}

.fph-booking-editor-preview {
	display: grid;
	gap: 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 14px;
	color: rgba(255, 255, 255, 0.78);
}

.fph-booking-editor-preview__field {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 48px;
	background: rgba(255, 255, 255, 0.92);
	color: rgba(17, 23, 20, 0.62);
	padding: 12px 14px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fph-booking-editor-preview__field::after {
	content: "Calendar";
	color: var(--fph-copper);
	font-size: 0.66rem;
	letter-spacing: 0.12em;
}

.fph-booking-editor-preview p {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.55;
}


.fph-inquiry--suite-viewing {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--fph-forest);
	color: #fff;
	padding-block: clamp(72px, 10vw, 126px);
}

.fph-inquiry--suite-viewing .fph-inquiry__frame {
	border: 0;
	background:
		radial-gradient(circle at 80% 18%, rgba(191, 126, 77, 0.24), transparent 18rem),
		linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%);
	background-size: auto, 32px 32px;
}

.fph-inquiry--suite-viewing .fph-inquiry__copy p:not(.fph-eyebrow) {
	display: none;
}

.fph-inquiry--suite-viewing .fph-inquiry__slot {
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.18);
	padding: clamp(24px, 4vw, 58px);
	backdrop-filter: blur(14px);
}

.fph-inquiry--suite-viewing .fph-inquiry__slot p {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: clamp(1.02rem, 1.35vw, 1.18rem);
	line-height: 1.82;
}

.fph-inquiry__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.fph-inquiry--suite-viewing .fph-inquiry__actions .fph-button {
	min-width: 178px;
	border-color: rgba(255, 255, 255, 0.34);
	background: transparent;
	color: #fff;
	box-shadow: none;
}

.fph-inquiry--suite-viewing .fph-inquiry__actions .fph-button--clay {
	border-color: var(--fph-paper);
	background: var(--fph-paper);
	color: var(--fph-ink);
}

.fph-inquiry--suite-viewing .fph-inquiry__actions .fph-button:hover,
.fph-inquiry--suite-viewing .fph-inquiry__actions .fph-button:focus-visible {
	border-color: var(--fph-paper);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.fph-inquiry--suite-viewing .fph-inquiry__actions .fph-button--clay:hover,
.fph-inquiry--suite-viewing .fph-inquiry__actions .fph-button--clay:focus-visible {
	background: #fff;
	color: var(--fph-ink);
}

/* Contact Form 7 integration styles */
.fph-inquiry__slot .wpcf7 {
	width: 100%;
}

.fph-inquiry__form-grid {
	display: grid;
	gap: 16px;
}

.fph-inquiry__form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.fph-inquiry__form-field {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.fph-inquiry__form-field > label {
	display: grid;
	gap: 8px;
	margin: 0;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

/* Make CF7 paragraph tags invisible to grid layout */
.fph-inquiry__form-row p {
	margin: 0;
	display: contents;
}

.fph-inquiry .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.fph-inquiry .wpcf7-form-control.wpcf7-text,
.fph-inquiry .wpcf7-form-control.wpcf7-email,
.fph-inquiry .wpcf7-form-control.wpcf7-textarea,
.fph-inquiry .wpcf7-form-control.wpcf7-select {
	display: block;
	width: 100%;
	min-height: 52px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.94);
	color: rgba(17, 23, 20, 0.58);
	padding: 15px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	box-sizing: border-box;
}

.fph-inquiry .wpcf7-form-control.wpcf7-select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 44px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23bf7e4d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	cursor: pointer;
}

.fph-inquiry .wpcf7-form-control.wpcf7-select:focus {
	border-color: rgba(255, 255, 255, 0.4);
	background-color: rgba(255, 255, 255, 1);
	outline: none;
}

.fph-inquiry .wpcf7-form-control.wpcf7-textarea {
	min-height: 140px;
	resize: vertical;
}

.fph-inquiry__form-row--full {
	grid-column: 1 / -1;
}

.fph-inquiry .wpcf7-form-control::placeholder {
	color: rgba(17, 23, 20, 0.58);
}

.fph-inquiry .wpcf7-form-control:focus {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 1);
	color: rgba(17, 23, 20, 0.8);
	outline: none;
}

.fph-inquiry__form-submit {
	margin-top: 8px;
}

.fph-inquiry .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 52px;
	padding: 12px 28px;
	border: 1px solid var(--fph-paper);
	background: var(--fph-paper);
	color: var(--fph-ink);
	font-family: var(--fph-display);
	font-size: 0.94rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.fph-inquiry .wpcf7-submit:hover {
	background: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fph-inquiry .wpcf7-submit:focus-visible {
	outline: 2px solid var(--fph-paper);
	outline-offset: 2px;
}

.fph-inquiry .wpcf7-not-valid-tip {
	display: block;
	margin-top: 4px;
	color: #ff6b6b;
	font-size: 0.75rem;
	font-weight: 600;
}

.fph-inquiry .wpcf7-response-output {
	margin-top: 16px;
	padding: 12px;
	border-radius: 4px;
	font-size: 0.88rem;
	font-weight: 600;
}

.fph-inquiry .wpcf7-mail-sent-ok {
	background: rgba(76, 175, 80, 0.1);
	color: #4caf50;
	border: 1px solid rgba(76, 175, 80, 0.3);
}

.fph-inquiry .wpcf7-validation-errors,
.fph-inquiry .wpcf7-spam-blocked {
	background: rgba(244, 67, 54, 0.1);
	color: #f44336;
	border: 1px solid rgba(244, 67, 54, 0.3);
}

@media (max-width: 760px) {
	.fph-booking-popover-backdrop {
		padding: 12px;
		align-items: center;
	}

	.fph-booking-popover {
		width: 100%;
		max-height: min(620px, calc(100dvh - 24px));
	}

	.fph-booking-popover .fc .fc-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.fph-booking-popover .fc .fc-toolbar-chunk {
		display: flex;
		justify-content: center;
	}

	.fph-booking-popover .fc .fc-button {
		padding: 0.32rem 0.5rem;
		font-size: 0.58rem;
	}

	.fph-booking-popover .fc .fc-timegrid-slot {
		height: 38px;
	}
}

/* ─── Contact Details ─────────────────────────────────────────────────────── */

.fph-contact-details {
	background: var(--fph-paper);
	padding: clamp(64px, 8vw, 116px) clamp(18px, 5vw, 76px);
}

.fph-contact-details__inner {
	display: grid;
	grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
	gap: clamp(34px, 6vw, 96px);
	align-items: start;
}

.fph-contact-details__copy {
	min-width: 0;
}

.fph-contact-details__heading {
	max-width: 14ch;
	margin: 0 0 20px;
	font-family: var(--fph-display);
	font-size: clamp(1.5rem, 2.4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.06;
}

.fph-contact-details__lead {
	max-width: 44ch;
	margin: 0;
	color: var(--fph-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.fph-contact-details__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--fph-line);
	min-width: 0;
}

.fph-contact-details__card {
	display: grid;
	min-height: 210px;
	min-width: 0;
	align-content: space-between;
	padding: clamp(20px, 2.8vw, 36px);
	background: var(--fph-stone);
	color: var(--fph-ink);
	text-decoration: none;
	transition: background-color 900ms cubic-bezier(0.16, 1, 0.3, 1), color 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fph-contact-details__card:hover,
.fph-contact-details__card:focus-visible {
	background: var(--fph-ink);
	color: #fff;
}

.fph-contact-details__card:focus-visible {
	outline: 2px solid var(--fph-copper);
	outline-offset: -2px;
}

.fph-contact-details__icon {
	color: var(--fph-copper);
	flex-shrink: 0;
	transition: color 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fph-contact-details__card:hover .fph-contact-details__icon,
.fph-contact-details__card:focus-visible .fph-contact-details__icon {
	color: var(--fph-copper);
}

.fph-contact-details__card-body {
	min-width: 0;
}

.fph-contact-details__card .fph-eyebrow {
	margin: 0 0 10px;
	color: rgba(17, 23, 20, 0.54);
	transition: color 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fph-contact-details__card:hover .fph-eyebrow,
.fph-contact-details__card:focus-visible .fph-eyebrow {
	color: rgba(255, 255, 255, 0.54);
}

.fph-contact-details__card-value {
	display: block;
	max-width: 18ch;
	font-size: clamp(1.1rem, 1.85vw, 1.9rem);
	font-weight: 800;
	line-height: 1.08;
}

/* ─── Contact Details — responsive ───────────────────────────────────────── */

@media (max-width: 960px) {
	.fph-contact-details__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.fph-contact-details__grid {
		grid-template-columns: 1fr;
	}
}

/* ─────────────────────────────────────────────────────────────────────────── */


.fph-editorial-template {
	--fph-essay-pad: clamp(22px, 4.8vw, 92px);
	--fph-essay-max: 1500px;
	--fph-essay-rule: rgba(17, 23, 20, 0.1);
	background: var(--fph-paper);
}

.fph-editorial-template--page:has(.wp-block-post-content .fph-inside-hero) > .fph-editorial-hero,
.fph-editorial-template--page:has(.wp-block-post-content .fph-hero) > .fph-editorial-hero,
.fph-editorial-template--page:has(.wp-block-post-content .fph-suite-explorer) > .fph-editorial-hero,
.fph-editorial-template--page:has(.wp-block-post-content .fph-inside-hero) > .fph-editorial-featured-image,
.fph-editorial-template--page:has(.wp-block-post-content .fph-hero) > .fph-editorial-featured-image,
.fph-editorial-template--page:has(.wp-block-post-content .fph-suite-explorer) > .fph-editorial-featured-image {
	display: none;
}

.fph-editorial-hero,
.fph-essay {
	background-image:
		linear-gradient(90deg, var(--fph-essay-rule) 1px, transparent 1px),
		linear-gradient(rgba(17, 23, 20, 0.045) 1px, transparent 1px);
	background-size: 25% 100%, 100% 56px;
	background-position: center top;
}

.fph-editorial-hero {
	display: grid;
	grid-template-columns:
		minmax(var(--fph-essay-pad), 1fr)
		repeat(10, minmax(0, calc(var(--fph-essay-max) / 10)))
		minmax(var(--fph-essay-pad), 1fr);
	align-items: end;
	min-height: clamp(420px, 62svh, 680px);
	border-bottom: 1px solid var(--fph-line);
	padding: clamp(116px, 14vw, 180px) 0 clamp(44px, 7vw, 86px);
	background-color: var(--fph-paper);
}

.fph-editorial-hero > * {
	grid-column: 4 / span 6;
	width: auto;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
}

.fph-editorial-hero--page > *,
.fph-editorial-hero--fallback > * {
	grid-column: 2 / span 7;
}

.fph-editorial-hero__title {
	max-width: 12ch;
	margin: clamp(12px, 2vw, 24px) 0 0;
	font-family: var(--fph-display);
	font-size: clamp(3rem, 5.8vw, 6.8rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 0.96;
	text-wrap: balance;
	word-break: normal;
	overflow-wrap: break-word;
	hyphens: none;
}

.fph-editorial-hero__title--single {
	max-width: 12.5ch;
	font-size: clamp(3rem, 5.1vw, 6rem);
}

.fph-editorial-hero__deck {
	max-width: 720px;
	margin-top: clamp(20px, 3vw, 40px);
	color: var(--fph-muted);
	font-size: clamp(1.08rem, 1.45vw, 1.36rem);
	line-height: 1.64;
}

.fph-editorial-meta {
	display: flex;
	width: max-content;
	max-width: 100%;
	align-items: center;
	gap: 0;
	color: var(--fph-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fph-editorial-meta > * {
	display: inline-flex;
	align-items: center;
	margin: 0;
}

.fph-editorial-meta > * + *::before {
	content: "/";
	margin: 0 0.78em;
	opacity: 0.58;
}

.fph-editorial-meta a {
	color: inherit;
	text-decoration-color: transparent;
}

.fph-editorial-meta a:hover,
.fph-editorial-meta a:focus-visible {
	color: var(--fph-clay);
	text-decoration-color: currentColor;
}

.fph-editorial-featured-image {
	width: 100%;
	margin: 0;
	overflow: hidden;
	border-bottom: 1px solid var(--fph-line);
	background: var(--fph-forest);
}

.fph-editorial-featured-image img {
	display: block;
	width: 100%;
	min-height: clamp(420px, 72vh, 860px);
	object-fit: cover;
	filter: saturate(0.9) contrast(1.02);
}

.fph-editorial-content {
	padding: 0 0 clamp(76px, 10vw, 140px);
}

.fph-editorial-content > .wp-block-post-content {
	font-size: clamp(1rem, 1.04vw, 1.12rem);
	line-height: 1.84;
}

.fph-editorial-template--page:has(.wp-block-post-content .fph-inside-hero) .fph-editorial-content,
.fph-editorial-template--page:has(.wp-block-post-content .fph-hero) .fph-editorial-content,
.fph-editorial-template--page:has(.wp-block-post-content .fph-suite-explorer) .fph-editorial-content {
	padding-block: 0;
}

.fph-editorial-template--page:has(.wp-block-post-content .fph-inside-hero) .fph-editorial-content > .wp-block-post-content,
.fph-editorial-template--page:has(.wp-block-post-content .fph-hero) .fph-editorial-content > .wp-block-post-content,
.fph-editorial-template--page:has(.wp-block-post-content .fph-suite-explorer) .fph-editorial-content > .wp-block-post-content {
	font-size: inherit;
	line-height: inherit;
}

.fph-editorial-content > .wp-block-post-content > :where(p, ul, ol, h1, h2, h3, h4, h5, h6, blockquote, .wp-block-quote, .wp-block-pullquote, .wp-block-list, .wp-block-details, .wp-block-table, .wp-block-buttons, .wp-block-image:not(.alignwide):not(.alignfull), .wp-block-columns:not(.alignwide):not(.alignfull), .wp-block-group:not(.alignwide):not(.alignfull):not(.fph-essay)) {
	width: min(720px, calc(100% - (var(--fph-essay-pad) * 2)));
	max-width: none;
	margin-right: auto;
	margin-left: auto;
}

.fph-editorial-content > .wp-block-post-content > :where(.alignwide) {
	width: min(var(--fph-essay-max), calc(100% - (var(--fph-essay-pad) * 2)));
	max-width: none;
	margin-right: auto;
	margin-left: auto;
}

.fph-editorial-content > .wp-block-post-content > :where(.alignfull) {
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
}

.fph-editorial-content > .wp-block-post-content > p,
.fph-editorial-content > .wp-block-post-content > ul,
.fph-editorial-content > .wp-block-post-content > ol {
	color: rgba(17, 23, 20, 0.76);
}

.fph-editorial-content > .wp-block-post-content > h2,
.fph-editorial-content > .wp-block-post-content > h3,
.fph-editorial-content > .wp-block-post-content > h4 {
	margin-top: clamp(42px, 7vw, 90px);
	font-family: var(--fph-display);
	line-height: 1.02;
	text-wrap: balance;
}

.fph-editorial-content > .wp-block-post-content > h2 {
	max-width: 12ch;
	font-size: clamp(2.35rem, 4.25vw, 5.2rem);
}

.fph-editorial-content > .wp-block-post-content > h3 {
	max-width: 15ch;
	font-size: clamp(1.85rem, 2.9vw, 3.35rem);
}

.fph-editorial-content > .wp-block-post-content > .wp-block-image.alignwide,
.fph-editorial-content > .wp-block-post-content > .wp-block-image.alignfull {
	margin-block: clamp(48px, 8vw, 108px);
}

.fph-editorial-content > .wp-block-post-content > .wp-block-image img {
	filter: saturate(0.9);
}

.fph-editorial-content figcaption:not(.fph-gallery__card figcaption),
.fph-essay-caption {
	color: var(--fph-muted);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.5;
	text-transform: uppercase;
}

.fph-essay {
	position: relative;
	margin-block-start: 0;
	background-color: var(--fph-paper);
}

.fph-essay :where(h2, h3) {
	margin: 0;
	font-family: var(--fph-display);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 0.98;
	text-wrap: balance;
}

.fph-essay :where(p:not(.fph-eyebrow):not(.fph-essay-caption)) {
	color: rgba(17, 23, 20, 0.82);
	font-size: clamp(1.02rem, 1.08vw, 1.18rem);
	line-height: 1.72;
}

.fph-essay-opener {
	padding: clamp(72px, 10vw, 148px) 0 0;
}

.fph-essay-opener__kicker,
.fph-essay-opener__title {
	width: min(var(--fph-essay-max), calc(100% - (var(--fph-essay-pad) * 2)));
	margin-inline: auto;
}

.fph-essay-opener__title {
	max-width: 12ch;
	margin-top: clamp(18px, 4vw, 42px);
	margin-left: var(--fph-essay-pad);
	font-size: clamp(3rem, 6.2vw, 7.4rem);
}

.fph-essay-opener__media {
	position: relative;
	margin: clamp(52px, 8vw, 102px) 0 0;
	overflow: hidden;
	background: var(--fph-forest);
}

.fph-essay-opener__media img {
	display: block;
	width: 100%;
	min-height: clamp(420px, 72vh, 820px);
	object-fit: cover;
	filter: saturate(0.86) contrast(1.04);
}

.fph-essay-opener__statement {
	position: absolute;
	right: var(--fph-essay-pad);
	bottom: clamp(22px, 4vw, 54px);
	width: min(680px, calc(100% - (var(--fph-essay-pad) * 2)));
	margin: 0;
	color: #fff;
	font-size: clamp(1.12rem, 2vw, 2rem);
	font-weight: 800;
	line-height: 1.05;
	text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.fph-essay-proof {
	display: grid;
	grid-template-columns:
		minmax(var(--fph-essay-pad), 1fr)
		repeat(10, minmax(0, calc(var(--fph-essay-max) / 10)))
		minmax(var(--fph-essay-pad), 1fr);
	min-height: clamp(760px, 118svh, 1160px);
	padding: clamp(62px, 9vw, 132px) 0;
}

.fph-essay-proof__lead {
	grid-column: 2 / span 5;
	align-self: start;
	margin: 0;
	font-size: clamp(1.35rem, 2.1vw, 2.2rem);
	font-weight: 800;
	line-height: 1.08;
}

.fph-essay-proof__note {
	grid-column: 6 / span 3;
	align-self: start;
	max-width: 42ch;
	margin: clamp(60px, 10vw, 126px) 0 0;
	font-size: clamp(1rem, 1vw, 1.08rem);
	line-height: 1.7;
}

.fph-essay-proof__image {
	margin: 0;
	overflow: hidden;
	background: var(--fph-forest);
}

.fph-essay-proof__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.9) contrast(1.02);
}

.fph-essay-proof__image--primary {
	grid-column: 2 / span 3;
	align-self: center;
	height: clamp(260px, 34vw, 430px);
}

.fph-essay-proof__image--secondary {
	grid-column: 8 / span 3;
	align-self: end;
	height: clamp(190px, 24vw, 320px);
}

.fph-essay-proof__statement {
	grid-column: 2 / span 4;
	align-self: end;
	max-width: 12ch;
	margin: 0;
	font-size: clamp(1.7rem, 2.9vw, 3.3rem);
	line-height: 0.98;
}

.fph-essay-plate {
	padding: 0;
}

.fph-essay-plate__media {
	margin: 0;
	overflow: hidden;
	background: var(--fph-forest);
}

.fph-essay-plate__media img {
	display: block;
	width: 100%;
	min-height: clamp(520px, 86vh, 960px);
	object-fit: cover;
	filter: saturate(0.9) contrast(1.04);
}

.fph-essay-plate__copy {
	display: grid;
	grid-template-columns:
		minmax(var(--fph-essay-pad), 1fr)
		repeat(10, minmax(0, calc(var(--fph-essay-max) / 10)))
		minmax(var(--fph-essay-pad), 1fr);
	padding: clamp(58px, 8vw, 112px) 0 clamp(74px, 10vw, 140px);
}

.fph-essay-plate__copy h2 {
	grid-column: 2 / span 4;
	max-width: 13ch;
	font-size: clamp(1.9rem, 3.3vw, 3.8rem);
}

.fph-essay-plate__copy p {
	grid-column: 7 / span 4;
	align-self: end;
	max-width: none;
	column-gap: clamp(24px, 3vw, 44px);
	columns: 2 18ch;
	font-size: clamp(1.06rem, 1.12vw, 1.2rem);
	line-height: 1.68;
	text-wrap: pretty;
}

.fph-essay-method {
	display: grid;
	grid-template-columns:
		minmax(var(--fph-essay-pad), 1fr)
		repeat(10, minmax(0, calc(var(--fph-essay-max) / 10)))
		minmax(var(--fph-essay-pad), 1fr);
	min-height: 120svh;
	padding: clamp(70px, 10vw, 140px) 0;
}

.fph-essay-method__copy {
	grid-column: 2 / span 4;
	position: sticky;
	top: clamp(96px, 12vh, 132px);
	align-self: start;
	max-width: 480px;
}

.fph-essay-method__copy h2 {
	max-width: 12ch;
	font-size: clamp(2rem, 3.8vw, 4.6rem);
}

.fph-essay-method__media {
	grid-column: 6 / span 6;
	align-self: start;
	height: calc(120svh - 9rem);
	min-height: 640px;
	margin: 0;
	overflow: hidden;
	background: var(--fph-forest);
}

.fph-essay-method__media img {
	display: block;
	width: 100%;
	height: 108%;
	object-fit: cover;
	filter: saturate(0.9) contrast(1.04);
}

.fph-essay-constellation {
	display: grid;
	grid-template-columns:
		minmax(var(--fph-essay-pad), 1fr)
		repeat(10, minmax(0, calc(var(--fph-essay-max) / 10)))
		minmax(var(--fph-essay-pad), 1fr);
	min-height: clamp(900px, 150svh, 1400px);
	padding: clamp(68px, 10vw, 136px) 0;
}

.fph-essay-constellation__statement {
	grid-column: 2 / span 4;
	align-self: start;
	max-width: 12ch;
	margin: 0;
	font-size: clamp(1.8rem, 3.2vw, 3.7rem);
	line-height: 0.98;
}

.fph-essay-constellation__image {
	margin: 0;
	overflow: hidden;
	background: var(--fph-forest);
}

.fph-essay-constellation__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.02);
}

.fph-essay-constellation__image--wide {
	grid-column: 6 / span 5;
	align-self: start;
	height: clamp(260px, 34vw, 430px);
}

.fph-essay-constellation__image--small {
	grid-column: 2 / span 3;
	align-self: center;
	height: clamp(160px, 20vw, 260px);
}

.fph-essay-constellation__image--tall {
	grid-column: 5 / span 3;
	align-self: end;
	height: clamp(320px, 42vw, 560px);
}

.fph-essay-accordions {
	width: min(var(--fph-essay-max), calc(100% - (var(--fph-essay-pad) * 2)));
	margin-inline: auto;
	padding: clamp(64px, 9vw, 120px) 0;
}

.fph-essay-accordions h2 {
	max-width: 12ch;
	margin-bottom: clamp(32px, 5vw, 68px);
	font-size: clamp(2rem, 3.7vw, 4.4rem);
}

.fph-essay-accordion {
	border-top: 1px solid var(--fph-line);
	margin: 0;
}

.fph-essay-accordion:last-child {
	border-bottom: 1px solid var(--fph-line);
}

.fph-essay-accordion summary {
	position: relative;
	cursor: pointer;
	padding: 24px 48px 24px 0;
	font-family: var(--fph-display);
	font-size: clamp(1.35rem, 2.1vw, 2.4rem);
	line-height: 1.08;
	list-style: none;
}

.fph-essay-accordion summary::-webkit-details-marker {
	display: none;
}

.fph-essay-accordion summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 0;
	color: var(--fph-clay);
	font-family: var(--fph-body);
	transform: translateY(-50%);
}

.fph-essay-accordion[open] summary::after {
	content: "–";
}

.fph-essay-accordion p {
	max-width: 68ch;
	margin: 0 0 28px;
	font-size: clamp(1rem, 1.08vw, 1.1rem);
}

.fph-essay-connect {
	padding: clamp(70px, 9vw, 132px) var(--fph-essay-pad);
	color: #fff;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		var(--fph-forest);
	background-size: 25% 100%, 100% 56px, auto;
}

.fph-essay-connect__grid {
	width: min(var(--fph-essay-max), 100%);
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
	gap: clamp(40px, 9vw, 148px);
	align-items: end;
	margin-inline: auto;
}

.fph-essay-connect h2 {
	max-width: 12ch;
	font-size: clamp(2.2rem, 4.2vw, 5.2rem);
}

.fph-essay-connect p:not(.fph-eyebrow) {
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.02rem, 1.3vw, 1.22rem);
}

.fph-essay-buttons {
	gap: 12px;
	margin-top: 26px;
}

.fph-essay-button .wp-block-button__link {
	display: inline-flex;
	min-width: 164px;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border: 1px solid currentColor;
	border-radius: 0;
	padding: 0 20px;
	background: #fff;
	color: var(--fph-forest);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.fph-essay-button .wp-block-button__link:hover,
.fph-essay-button .wp-block-button__link:focus-visible {
	transform: translateY(-2px);
}

.fph-essay-button--ghost .wp-block-button__link {
	background: transparent;
	color: #fff;
}

.fph-editorial-article-footer {
	width: min(var(--fph-essay-max), calc(100% - (var(--fph-essay-pad) * 2)));
	margin-inline: auto;
	padding: clamp(54px, 8vw, 104px) 0 clamp(80px, 10vw, 140px);
}

.fph-editorial-tags {
	color: var(--fph-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.fph-editorial-post-nav {
	border-block: 1px solid var(--fph-line);
	margin-block: clamp(36px, 6vw, 72px);
	padding-block: 18px;
	gap: 18px;
}

.fph-editorial-post-nav__link {
	color: var(--fph-ink);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-decoration-color: transparent;
	text-transform: uppercase;
}

.fph-editorial-post-nav__link:hover,
.fph-editorial-post-nav__link:focus-visible {
	color: var(--fph-clay);
	text-decoration-color: currentColor;
}

.fph-motion-editorial-clip {
	clip-path: inset(0 0 0 0);
	will-change: clip-path, transform;
}

.fph-reduce-motion .fph-motion-editorial-clip {
	clip-path: none !important;
}

@media (max-width: 960px) {
	.fph-editorial-template {
		--fph-essay-pad: 18px;
	}

	.fph-editorial-hero,
	.fph-essay {
		background-size: 50% 100%, 100% 48px;
	}

	.fph-editorial-hero,
	.fph-essay-proof,
	.fph-essay-plate__copy,
	.fph-essay-method,
	.fph-essay-constellation {
		display: block;
		padding-inline: var(--fph-essay-pad);
	}

	.fph-editorial-hero {
		min-height: auto;
		padding-top: clamp(118px, 28vw, 172px);
	}

	.fph-editorial-hero > *,
	.fph-editorial-hero--single > *,
	.fph-essay-opener__kicker,
	.fph-essay-opener__title,
	.fph-essay-plate__copy h2,
	.fph-essay-plate__copy p,
	.fph-essay-method__copy,
	.fph-essay-constellation__statement {
		width: auto;
		max-width: 720px;
		margin-inline: 0;
	}

	.fph-essay-plate__copy p {
		columns: auto;
		max-width: 68ch;
	}

	.fph-editorial-hero__title,
	.fph-editorial-hero__title--single,
	.fph-essay-opener__title {
		max-width: 11ch;
		font-size: clamp(2.75rem, 12vw, 5rem);
	}

	.fph-editorial-featured-image img,
	.fph-essay-opener__media img,
	.fph-essay-plate__media img {
		min-height: min(72vh, 620px);
	}

	.fph-essay-opener__statement {
		left: 18px;
		right: 18px;
		width: auto;
	}

	.fph-essay-proof__lead,
	.fph-essay-proof__note,
	.fph-essay-proof__statement,
	.fph-essay-proof__image,
	.fph-essay-method__media,
	.fph-essay-constellation__image {
		width: 100%;
		margin-top: clamp(28px, 7vw, 54px);
	}

	.fph-essay-proof__image--primary,
	.fph-essay-proof__image--secondary,
	.fph-essay-constellation__image--wide,
	.fph-essay-constellation__image--small,
	.fph-essay-constellation__image--tall {
		height: min(72vh, 620px);
	}

	.fph-essay-method {
		min-height: auto;
	}

	.fph-essay-method__copy {
		position: static;
	}

	.fph-essay-method__media {
		height: min(78vh, 680px);
		min-height: 420px;
	}

	.fph-essay-connect__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.fph-editorial-hero__deck {
		font-size: 1.05rem;
	}

	.fph-editorial-content > .wp-block-post-content > h2 {
		font-size: clamp(2.15rem, 12vw, 4rem);
	}

	.fph-editorial-featured-image img,
	.fph-essay-opener__media img,
	.fph-essay-plate__media img {
		min-height: 360px;
	}

	.fph-essay-opener__statement {
		position: static;
		padding: 18px;
		background: var(--fph-forest);
		text-shadow: none;
	}

	.fph-editorial-post-nav {
		display: grid;
	}
}

@media (max-width: 1100px) {
	.fph-site-header__nav-left,
	.fph-site-header__nav-right {
		display: none;
	}
}

@media (max-width: 960px) {
	.fph-inside-hero__grid,
	.fph-story-section,
	.fph-story-section--image-right,
	.fph-editorial-statement,
	.fph-fact-grid__layout,
	.fph-suite-explorer__layout,
	.fph-suite-explorer__panel {
		grid-template-columns: 1fr;
	}

	.fph-inside-hero__heading {
		min-height: 0;
		gap: 34px;
	}

	.fph-inside-hero__lead {
		padding-top: 0;
	}

	.fph-story-section {
		min-height: auto;
	}

	.fph-story-section__copy {
		min-height: 0;
	}

	.fph-story-section--image-right .fph-story-section__media {
		order: 0;
	}

	.fph-story-section__frame {
		height: min(88vh, 720px);
		min-height: 420px;
	}

	.fph-story-section__copy-panel {
		position: static;
		max-width: 760px;
	}

	.fph-hero__content,
	.fph-suite__grid,
	.fph-gallery__layout,
	.fph-amenities,
	.fph-inquiry {
		grid-template-columns: 1fr;
	}

	.fph-suite__grid {
		min-height: 0;
	}

	.fph-suite__intro,
	.fph-gallery__intro {
		position: static;
		padding-right: 0;
	}

	.fph-suite__panels {
		min-height: 720px;
	}

	.fph-fact-grid__items,
	.fph-suite-explorer__features {
		grid-template-columns: 1fr;
	}

	.fph-suite-explorer__copy {
		position: static;
	}

	.fph-amenities__spacer {
		display: none;
	}

	.fph-amenities__shade {
		background:
			linear-gradient(180deg, rgba(17, 23, 20, 0.18) 0%, rgba(17, 23, 20, 0.48) 48%, #111714 100%),
			radial-gradient(circle at 50% 20%, rgba(170, 72, 49, 0.15), transparent 18rem);
	}

	.fph-gallery__layout {
		padding-inline: 16px;
	}

	.fph-gallery__viewport {
		margin-right: 0;
	}

	.fph-editorial-statement__media {
		margin-left: 0;
	}

	.fph-editorial-statement__media > div {
		aspect-ratio: 1.35 / 1;
	}
}

@media (max-width: 900px) {
	.fph-menu-overlay {
		grid-template-columns: 1fr;
		overflow-y: auto;
	}

	/* Hide the image panel; right panel takes the full screen */
	.fph-menu-overlay__panel-left {
		display: none;
	}

	.fph-menu-overlay__panel-right {
		padding: clamp(24px, 5vw, 48px) clamp(20px, 5vw, 48px);
	}

	.fph-menu-overlay__links {
		padding-block: 72px 24px;
	}

	.fph-menu-overlay__links a {
		font-size: clamp(1.7rem, 8.5vw, 3.2rem);
		padding: 12px 0;
	}

	.fph-menu-overlay__footer {
		flex-direction: column;
	}

	.fph-menu-overlay__footer-sep {
		width: auto;
		height: 1px;
	}

	.fph-menu-overlay__footer-item {
		padding: 14px 0;
	}

	.fph-site-footer {
		position: relative;
		min-height: auto;
	}

	.fph-site-shell {
		margin-bottom: 0;
	}

	.fph-site-footer__grid,
	.fph-location__proof {
		grid-template-columns: 1fr;
	}

	.fph-location__proof div {
		min-height: 190px;
	}
}

@media (max-width: 820px) {
	.fph-site-header {
		grid-template-columns: 1fr auto;
	}

	.fph-site-header__nav-left {
		display: none;
	}

	.fph-site-header__logo {
		justify-self: start;
	}

	.fph-hero__rail {
		display: none;
	}
}

@media (max-width: 782px) {
	body.admin-bar .fph-site-header {
		top: 46px;
	}

	.admin-bar .fph-suite-explorer__plan-shell.is-focus {
		top: calc(clamp(12px, 3vw, 34px) + 46px);
	}
}

@media (max-width: 760px) {
	.fph-suite {
		padding-block: 52px 60px;
	}

	.fph-suite__grid {
		align-items: start;
		gap: 0;
	}

	.fph-suite__intro {
		display: grid;
		align-content: start;
		align-self: start;
	}

	.fph-suite__intro .fph-eyebrow {
		margin-bottom: 12px;
	}

	.fph-suite__intro .fph-section-title {
		max-width: 11ch;
		font-size: clamp(2.15rem, 10vw, 3.6rem);
	}

	.fph-suite__intro .fph-lead {
		margin-top: 14px;
		font-size: 1rem;
		line-height: 1.65;
	}

	.fph-suite__switcher {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: min(100%, 340px);
		max-width: none;
		margin: 18px 0 18px;
		padding: 4px;
		border-color: rgba(17, 23, 20, 0.2);
		background: rgba(17, 23, 20, 0.06);
	}

	.fph-suite__switcher button {
		min-height: 40px;
		padding: 0 10px;
		border-right: 0;
		background: transparent;
		color: var(--fph-ink);
		font-size: 0.72rem;
		letter-spacing: 0.03em;
	}

	.fph-suite__switcher button[aria-selected="true"],
	.fph-suite__switcher button.is-active {
		background: var(--fph-ink);
		color: #fff;
	}

	.fph-suite__stage {
		grid-template-rows: minmax(480px, 62svh);
		min-height: 0;
	}

	.fph-suite__panels {
		min-height: 100%;
	}

	.fph-suite__panel {
		grid-template-columns: 1fr;
		align-content: end;
		gap: 0;
		padding: 22px;
	}

	.fph-suite__panel-shade {
		background:
			linear-gradient(180deg, rgba(8, 14, 12, 0.18), rgba(8, 14, 12, 0.82) 68%, rgba(8, 14, 12, 0.94)),
			linear-gradient(90deg, rgba(8, 14, 12, 0.66), rgba(8, 14, 12, 0.18));
	}

	.fph-suite__panel-copy .fph-eyebrow--light {
		display: none;
	}

	.fph-suite__panel-copy h3 {
		max-width: 10ch;
		font-size: clamp(2.45rem, 12vw, 3.7rem);
	}

	.fph-suite__panel-copy p:not(.fph-eyebrow) {
		display: -webkit-box;
		margin-top: 16px;
		overflow: hidden;
		color: rgba(255, 255, 255, 0.84);
		font-size: 0.98rem;
		line-height: 1.55;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}

	.fph-suite__mobile-facts {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1px;
		margin-top: 18px;
		background: rgba(255, 255, 255, 0.22);
	}

	.fph-suite__mobile-facts span {
		display: grid;
		gap: 6px;
		min-width: 0;
		background: rgba(12, 18, 16, 0.78);
		padding: 12px;
		backdrop-filter: blur(12px);
	}

	.fph-suite__mobile-facts small {
		color: rgba(255, 255, 255, 0.62);
		font-size: 0.62rem;
		font-weight: 800;
		letter-spacing: 0.14em;
		text-transform: uppercase;
	}

	.fph-suite__mobile-facts strong {
		color: #fff;
		font-family: var(--fph-display);
		font-size: clamp(1.2rem, 6vw, 1.7rem);
		font-weight: 400;
		line-height: 1;
	}

	.fph-suite__stats {
		display: none;
	}

	.fph-suite__actions {
		margin-top: 18px;
	}

	.fph-suite__actions > span {
		display: none;
	}

	.fph-suite__actions .fph-button {
		min-height: 44px;
		padding: 12px 14px;
	}

	.fph-location__map {
		display: grid;
		min-height: 620px;
		align-content: end;
		gap: 14px;
		padding: 18px;
	}

	.fph-location__map-card,
	.fph-location__map > .fph-button {
		position: relative;
		inset: auto;
	}

	.fph-fact-grid,
	.fph-suite-explorer {
		padding-block: 58px;
	}

	.fph-fact-grid__item {
		min-height: 220px;
	}

	.fph-suite-explorer__controls {
		margin-top: 20px;
	}

	.fph-suite-explorer__group-tabs button {
		flex-basis: 0;
		min-height: 44px;
		font-size: 0.74rem;
		letter-spacing: 0.05em;
	}

	.fph-suite-explorer__variant-tabs button {
		min-width: 0;
		padding: 12px;
	}

	.fph-suite-explorer__facts {
		grid-template-columns: 1fr;
		margin-top: 22px;
	}

	.fph-suite-explorer__plan-canvas {
		padding: 12px;
	}

}

@media (max-width: 760px) {
	.fph-suite-explorer {
		padding-block: 44px;
		scroll-margin-top: 92px;
	}

	.fph-suite-explorer__layout {
		gap: 18px;
		padding-inline: 0;
	}

	.fph-suite-explorer__intro .fph-section-title {
		max-width: 11ch;
		font-size: clamp(2.45rem, 13vw, 4.15rem);
	}

	.fph-suite-explorer__intro .fph-lead {
		max-width: 34rem;
		font-size: 1rem;
		line-height: 1.55;
	}

	.fph-suite-explorer__controls {
		gap: 8px;
		margin-top: 18px;
	}

	.fph-suite-explorer__group-tabs button,
	.fph-suite-explorer__variant-tabs button {
		min-height: 42px;
		padding: 9px 10px;
		font-size: 0.7rem;
		letter-spacing: 0.05em;
	}

	.fph-suite-explorer__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 16px;
	}

	.fph-suite-explorer__facts div {
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 12px;
	}

	.fph-suite-explorer__facts strong {
		font-size: 1rem;
	}

	.fph-suite-explorer__plan-shell {
		box-shadow: none;
	}

	.fph-suite-explorer__plan-header {
		gap: 12px;
		padding: 14px;
	}

	.fph-suite-explorer__plan-header h3 {
		font-size: clamp(1.8rem, 8vw, 2.8rem);
	}

	.fph-suite-explorer__plan-tools button {
		min-width: 38px;
		height: 38px;
	}

	.fph-suite-explorer__plan-header h3,
	.fph-suite-explorer__plan-tools {
		display: none;
	}

	.fph-suite-explorer__plan-canvas {
		height: auto;
		min-height: 0;
		padding: 8px;
		overflow: hidden;
	}

	.fph-suite-explorer__plan-viewport {
		display: grid;
		width: 100%;
		height: auto;
		max-width: 100%;
		overflow: hidden;
	}

	.fph-suite-explorer__hotspot-label {
		font-size: 18px;
	}

	.fph-suite-explorer__details,
	.fph-suite-explorer__details--interactive {
		grid-template-columns: 1fr;
	}

	.fph-suite-explorer__room-panel {
		gap: 14px;
		padding: 16px;
	}

	.fph-suite-explorer__room-chips {
		flex-wrap: nowrap;
		margin-inline: -16px;
		overflow-x: auto;
		padding-inline: 16px;
		scrollbar-width: thin;
	}

	.fph-suite-explorer__room-chips button {
		flex: 0 0 auto;
	}

	.fph-suite-explorer__room-card h4 {
		font-size: clamp(1.5rem, 7vw, 2.1rem);
	}

	

	.fph-suite-explorer__features li {
		padding: 13px 16px;
	}
}

@media (max-width: 640px) {
	.fph-site-header {
		padding: 14px 16px;
	}

	.fph-menu-toggle__label {
		display: none;
	}

	.fph-hero {
		min-height: 760px;
		padding-inline: 16px;
	}

	.fph-hero__copy,
	.fph-inquiry__copy {
		padding-inline: 16px;
	}

	.fph-inside-hero {
		min-height: 0;
		padding: 112px 16px 72px;
	}

	.fph-inside-hero__heading {
		min-height: 0;
	}

	.fph-story-section {
		padding-inline: 16px;
	}

	.fph-story-section__frame {
		height: 420px;
		min-height: 0;
	}

	.fph-display-title {
		max-width: 9ch;
		font-size: clamp(2.55rem, 11.5vw, 3.75rem);
	}

	.fph-hero__actions {
		display: grid;
		max-width: 230px;
	}

	.fph-suite,
	.fph-gallery,
	.fph-inquiry,
	.fph-editorial-statement,
	.fph-fact-grid,
	.fph-suite-explorer {
		padding-inline: 16px;
	}

	.fph-suite__grid,
	.fph-gallery__layout {
		padding-inline: 0;
	}

	.fph-suite__switcher {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fph-suite__switcher button {
		border-right: 0;
		border-bottom: 0;
	}

	.fph-suite__switcher button:last-child {
		border-right: 0;
	}

	.fph-suite__panels {
		min-height: 100%;
	}

	.fph-inquiry__form-row {
		grid-template-columns: 1fr;
	}

	.fph-gallery__card {
		flex-basis: 100%;
	}

	.fph-gallery__card figure {
		height: 420px;
	}

	.fph-gallery__card figcaption {
		min-height: 178px;
	}

	.fph-amenities__content {
		padding: 24px;
	}
}

/* ─── Photo Grid responsive ───────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.fph-photo-grid__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: clamp(260px, 32vw, 380px);
	}

	.fph-photo-grid__card.is-featured {
		grid-column: span 2;
	}
}

@media (max-width: 760px) {
	.fph-photo-grid__toolbar {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.fph-photo-grid__filter {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.fph-photo-grid__toolbar {
		padding-inline: 16px;
	}

	.fph-photo-grid__filter {
		gap: 6px;
	}

	.fph-photo-grid__filter-btn {
		height: 40px;
		padding: 0 14px;
		font-size: 0.8rem;
	}

	.fph-photo-grid__grid {
		grid-template-columns: 1fr;
		grid-auto-rows: clamp(260px, 72vw, 380px);
		padding-inline: 16px;
		gap: 8px;
	}

	.fph-photo-grid__card.is-featured {
		grid-column: span 1;
	}

	.fph-photo-grid__card figcaption {
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
