:root {
	--bg: #f5f3ec;
	--surface: #fffdf8;
	--surface-strong: #ffffff;
	--text: #1f2933;
	--muted: #5b6773;
	--line: #d9d3c7;
	--brand: #135d4c;
	--brand-strong: #0d4337;
	--accent: #d4a63f;
	--shadow: 0 24px 60px rgba(19, 35, 49, 0.08);
	--radius: 1.25rem;
	--radius-sm: 0.85rem;
	--shell: 72rem;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family:
		Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	line-height: 1.6;
	color: var(--text);
	background: linear-gradient(180deg, #f8f6ef 0%, #f4f0e7 100%);
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: var(--brand-strong);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -4rem;
	background: var(--brand-strong);
	color: #fff;
	padding: 0.75rem 1rem;
	border-radius: var(--radius-sm);
	z-index: 100;
}

.skip-link:focus {
	top: 1rem;
}

.shell {
	width: min(calc(100% - 2rem), var(--shell));
	margin: 0 auto;
}

.stack > * + * {
	margin-top: 1rem;
}

.section {
	padding: 4.5rem 0;
}

.section--tight-top {
	padding-top: 1.5rem;
}

.site-header {
	position: relative;
	z-index: 20;
	background: rgba(248, 246, 239, 0.96);
	border-bottom: 1px solid rgba(217, 211, 199, 0.75);
}

.brand-row,
.nav-list,
.hero-actions,
.stat-list,
.card-grid,
.cta-grid,
.summary-grid,
.footer-grid,
.two-column,
.list-meta {
	display: flex;
	gap: 1rem;
}

.brand-row {
	align-items: center;
	justify-content: space-between;
	padding: 0.7rem 0;
	flex-wrap: wrap;
	row-gap: 0.75rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: inherit;
	text-decoration: none;
	max-width: 25rem;
}

.brand img {
	width: 2.6rem;
	height: 2.6rem;
}

.brand span {
	display: flex;
	flex-direction: column;
}

.brand strong {
	font-size: 1.05rem;
}

.brand small {
	color: var(--muted);
	font-size: 0.92rem;
}

.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: center;
}

.nav-list a {
	display: inline-flex;
	padding: 0.45rem 0.72rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.96rem;
}

.nav-list a[aria-current='page'],
.nav-list a:hover {
	background: rgba(19, 93, 76, 0.1);
	color: var(--brand-strong);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0.9rem 1.2rem;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid transparent;
}

.site-header .button {
	padding: 0.72rem 1rem;
}

.button--primary {
	background: var(--brand);
	color: #fff;
}

.button--primary:hover {
	background: var(--brand-strong);
	color: #fff;
}

.button--secondary {
	background: var(--surface-strong);
	color: var(--brand-strong);
	border-color: rgba(19, 93, 76, 0.15);
}

.button--secondary:hover {
	border-color: rgba(19, 93, 76, 0.4);
}

.hero,
.page-hero {
	padding: 4rem 0 3rem;
}

.hero-card,
.page-hero__inner,
.panel,
.card,
.summary,
.document-card,
.faq-item,
.cta-card {
	background: var(--surface);
	border: 1px solid rgba(217, 211, 199, 0.7);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero-card {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	overflow: hidden;
}

.hero-copy {
	padding: 3rem;
}

.eyebrow {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	color: var(--brand);
	margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
	line-height: 1.1;
	margin: 0;
}

h1 {
	font-size: clamp(2.3rem, 4vw, 4.6rem);
	max-width: 12ch;
}

h2 {
	font-size: clamp(1.6rem, 3vw, 2.5rem);
}

h3 {
	font-size: 1.2rem;
}

.lead {
	font-size: 1.15rem;
	color: var(--muted);
	max-width: 60ch;
}

.hero-actions,
.stat-list,
.card-grid,
.cta-grid,
.summary-grid,
.footer-grid,
.two-column {
	flex-wrap: wrap;
}

.stat-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0 0;
}

.stat-list li {
	padding: 1rem 1.25rem;
	background: rgba(19, 93, 76, 0.08);
	border-radius: var(--radius-sm);
	min-width: 10rem;
}

.hero-image {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 1.25rem;
	min-height: 100%;
	background:
		linear-gradient(rgba(19, 93, 76, 0.1), rgba(19, 93, 76, 0.18)),
		url('/assets/images/fbh-78.jpg') center/cover;
}

.hero-video-inset {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	width: min(100%, 14rem);
	padding: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 1rem;
	background: rgba(255, 253, 248, 0.92);
	box-shadow: var(--shadow);
	cursor: pointer;
}

.hero-video-frame {
	display: block;
	overflow: hidden;
	border-radius: 0.8rem;
	background: #173830;
}

.hero-video-preview {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.hero-video-copy {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	text-align: left;
}

.hero-video-copy strong {
	font-size: 0.96rem;
	color: var(--text);
}

.hero-video-copy span {
	color: var(--muted);
	font-size: 0.88rem;
}

.video-dialog {
	width: min(92vw, 58rem);
	padding: 0;
	border: 0;
	border-radius: var(--radius);
	background: transparent;
}

.video-dialog::backdrop {
	background: rgba(15, 23, 42, 0.68);
}

.video-dialog__inner {
	position: relative;
	padding: 1rem;
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.video-dialog__close {
	position: absolute;
	right: 0.8rem;
	top: 0.8rem;
	z-index: 1;
	padding: 0.55rem 0.85rem;
	border: 1px solid rgba(19, 93, 76, 0.16);
	border-radius: 999px;
	background: rgba(255, 253, 248, 0.96);
	color: var(--brand-strong);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.video-dialog__video {
	display: block;
	width: 100%;
	max-height: min(78vh, 44rem);
	border-radius: calc(var(--radius) - 0.35rem);
	background: #000;
}

.booking-dialog {
	width: min(92vw, 34rem);
	padding: 0;
	border: 0;
	border-radius: var(--radius);
	background: transparent;
}

.booking-dialog::backdrop {
	background: rgba(15, 23, 42, 0.68);
}

.booking-dialog__panel {
	position: relative;
	padding: 1.5rem;
	border-radius: var(--radius);
	background: var(--surface);
	border: 1px solid rgba(217, 211, 199, 0.7);
	box-shadow: var(--shadow);
}

.booking-dialog__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.card-grid > * {
	flex: 1 1 18rem;
}

.card,
.summary,
.document-card,
.faq-item,
.cta-card,
.note-card {
	padding: 1.5rem;
}

.card img,
.feature-image {
	border-radius: calc(var(--radius) - 0.3rem);
	margin-bottom: 1rem;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.card p,
.summary p,
.document-card p,
.faq-item p,
.meta {
	color: var(--muted);
}

.card .button,
.document-card .button {
	margin-top: 0.5rem;
}

.trustee-grid > * {
	flex: 1 1 16rem;
}

.trustee-card {
	align-items: flex-start;
}

.trustee-photo {
	width: 6rem;
	height: 7.5rem;
	border-radius: 999px / 70%;
	aspect-ratio: auto;
	object-fit: cover;
	margin-bottom: 0.75rem;
	border: 1px solid rgba(19, 93, 76, 0.14);
}

.cta-grid > * {
	flex: 1 1 14rem;
}

.cta-card {
	background: linear-gradient(180deg, #fffdf8, #f7f2e8);
}

.summary-grid > * {
	flex: 1 1 15rem;
}

.summary {
	min-height: 100%;
}

.note-card {
	background: linear-gradient(180deg, #fffdf8, #f2efe7);
}

.page-hero__inner {
	padding: 2.25rem;
}

.page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
	gap: 1.25rem;
	align-items: stretch;
}

.page-hero__media {
	min-height: 100%;
	border-radius: var(--radius);
	border: 1px solid rgba(217, 211, 199, 0.7);
	box-shadow: var(--shadow);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 17rem;
}

.article-hero .meta {
	margin-top: 1rem;
	font-weight: 600;
}

.two-column > *:first-child {
	flex: 2 1 32rem;
}

.two-column > *:last-child {
	flex: 1 1 18rem;
}

.panel {
	padding: 1.5rem;
	align-self: start;
	position: sticky;
	top: 8rem;
}

.prose > * + * {
	margin-top: 1rem;
}

.prose {
	max-width: 72ch;
}

.prose ul,
.prose ol {
	padding-left: 1.25rem;
}

.prose blockquote {
	border-left: 4px solid var(--accent);
	padding-left: 1rem;
	margin-left: 0;
	color: var(--muted);
}

.prose table {
	width: 100%;
	display: block;
	overflow-x: auto;
	overflow-y: hidden;
	border-collapse: collapse;
	margin-top: 1.5rem;
	background: var(--surface);
	border: 1px solid rgba(217, 211, 199, 0.8);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
}

.prose th,
.prose td {
	padding: 0.85rem 1rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid rgba(217, 211, 199, 0.7);
}

.prose thead th {
	background: rgba(19, 93, 76, 0.08);
}

.prose tbody tr:last-child td {
	border-bottom: 0;
}

.document-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.button--ghost {
	background: transparent;
	color: var(--brand-strong);
	border-color: rgba(19, 93, 76, 0.2);
}

.button--ghost:hover {
	border-color: rgba(19, 93, 76, 0.4);
}

.layout-diagram,
.zone-map {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.reference-visuals {
	margin-top: 1.5rem;
}

.reference-visuals > * {
	flex: 1 1 20rem;
}

.gallery-shortcuts > * {
	flex: 1 1 16rem;
}

.masonry-gallery {
	columns: 3 16rem;
	column-gap: 1rem;
}

.gallery-figure {
	margin: 0 0 1rem;
	padding: 0;
	overflow: hidden;
	break-inside: avoid;
}

.gallery-figure img {
	width: 100%;
	margin: 0;
	aspect-ratio: auto;
}

.gallery-figure figcaption {
	padding: 1.15rem 1.25rem 1.35rem;
}

.gallery-figure__link {
	display: inline-flex;
	font-weight: 700;
}

.availability-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.embed-switcher {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.embed-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.05rem;
	border: 1px solid rgba(19, 93, 76, 0.16);
	border-radius: 999px;
	background: var(--surface);
	color: var(--brand-strong);
	text-decoration: none;
	font-weight: 700;
}

.embed-link:hover,
.embed-link.is-active,
.embed-link[aria-current="page"] {
	background: rgba(19, 93, 76, 0.1);
	border-color: rgba(19, 93, 76, 0.28);
}

.availability-status {
	margin-bottom: 1rem;
	padding: 1rem 1.15rem;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(19, 93, 76, 0.12);
}

.availability-status--success {
	background: rgba(19, 93, 76, 0.1);
	border-color: rgba(19, 93, 76, 0.2);
}

.availability-status--warning {
	background: rgba(212, 166, 63, 0.16);
	border-color: rgba(212, 166, 63, 0.26);
}

.availability-status--error {
	background: rgba(177, 63, 63, 0.12);
	border-color: rgba(177, 63, 63, 0.24);
}

.availability-status--muted {
	background: rgba(19, 93, 76, 0.06);
	border-color: rgba(19, 93, 76, 0.14);
}

.booking-embed-frame {
	padding: 1rem;
	overflow: hidden;
}

.booking-embed {
	display: block;
	width: 100%;
	height: 1500px;
	border: 0;
	border-radius: calc(var(--radius) - 0.35rem);
	background: #fff;
}

.availability-actions {
	margin-top: 1rem;
}

.layout-diagram {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.layout-block,
.zone-card {
	padding: 1.25rem;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(217, 211, 199, 0.7);
	box-shadow: var(--shadow);
}

.layout-block {
	background: linear-gradient(180deg, #fffdf8, #f4efe4);
	min-height: 8rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.layout-block strong,
.zone-card h3 {
	font-size: 1.05rem;
}

.layout-block span,
.zone-card p:last-child {
	color: var(--muted);
}

.layout-block--main {
	grid-column: span 2;
	min-height: 11rem;
	background: linear-gradient(180deg, rgba(19, 93, 76, 0.12), rgba(19, 93, 76, 0.2));
}

.zone-map {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zone-card--bookable {
	background: linear-gradient(180deg, rgba(19, 93, 76, 0.1), rgba(19, 93, 76, 0.18));
}

.zone-card--restricted {
	background: linear-gradient(180deg, rgba(212, 166, 63, 0.18), rgba(212, 166, 63, 0.28));
}

.zone-card--sports {
	background: linear-gradient(180deg, rgba(62, 118, 209, 0.12), rgba(62, 118, 209, 0.2));
}

.faq-list,
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.faq-list > * + * {
	margin-top: 1rem;
}

.faq-item summary {
	cursor: pointer;
	font-weight: 700;
}

.faq-item[open] {
	border-color: rgba(19, 93, 76, 0.24);
}

.document-list > * + *,
.listing > * + * {
	margin-top: 1rem;
}

.listing-card {
	padding: 1.5rem;
}

.list-meta {
	font-size: 0.95rem;
	color: var(--muted);
	flex-wrap: wrap;
}

.site-footer {
	margin-top: 4rem;
	padding: 3rem 0 4rem;
	background: #173830;
	color: rgba(255, 255, 255, 0.88);
}

.site-footer a {
	color: #fff;
}

.footer-grid > * {
	flex: 1 1 16rem;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media (max-width: 900px) {
	.hero-card {
		grid-template-columns: 1fr;
	}

	.page-hero__grid {
		grid-template-columns: 1fr;
	}

	.hero-image {
		min-height: 18rem;
	}

	.hero-video-inset {
		width: min(100%, 15rem);
	}

	.page-hero__media {
		min-height: 14rem;
	}

	.panel {
		position: static;
	}

	.layout-diagram,
	.zone-map {
		grid-template-columns: 1fr 1fr;
	}

	.masonry-gallery {
		columns: 2 14rem;
	}
}

@media (max-width: 640px) {
	.brand-row {
		align-items: start;
	}

	.nav-list {
		justify-content: start;
	}

	.site-header .button--primary {
		width: 100%;
	}

	h1 {
		max-width: none;
	}

	.hero-image {
		padding: 1rem;
	}

	.hero-video-inset {
		width: 100%;
		max-width: none;
	}

	.layout-diagram,
	.zone-map {
		grid-template-columns: 1fr;
	}

	.layout-block--main {
		grid-column: auto;
	}

	.masonry-gallery {
		columns: 1;
	}

	.embed-switcher {
		width: 100%;
	}

	.embed-link {
		flex: 1 1 12rem;
	}

	.booking-embed {
		height: 1300px;
	}
}
