/* Barefoot Hawaii — local, dependency-free front-end styles. */

:root {
	--bh-ink: #172f31;
	--bh-deep: #123f42;
	--bh-deep-2: #0b3032;
	--bh-lagoon: #0e7775;
	--bh-lagoon-dark: #095e5d;
	--bh-reef: #81d4c5;
	--bh-reef-light: #dff5ef;
	--bh-coral: #b44430;
	--bh-coral-dark: #8f2d20;
	--bh-sun: #f4c75f;
	--bh-sand: #f7f1e8;
	--bh-sand-deep: #eadfce;
	--bh-mist: #edf7f5;
	--bh-white: #fff;
	--bh-muted: #607274;
	--bh-border: #d7e1df;
	--bh-error: #a92d2d;
	--bh-success: #25715a;
	--bh-focus: #075e5c;
	--bh-shadow-sm: 0 8px 24px rgba(18, 63, 66, 0.08);
	--bh-shadow: 0 18px 50px rgba(18, 63, 66, 0.13);
	--bh-shadow-lg: 0 28px 80px rgba(18, 63, 66, 0.18);
	--bh-radius-sm: 0.65rem;
	--bh-radius: 1.15rem;
	--bh-radius-lg: 1.75rem;
	--bh-container: 1180px;
	--bh-content: 760px;
	--bh-gutter: clamp(1rem, 4vw, 2rem);
	--bh-section: clamp(4rem, 8vw, 7.5rem);
	--bh-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--bh-serif: Georgia, "Times New Roman", serif;
}

.bh-tutorial { padding-block: 2rem 4rem; }
.bh-tutorial-steps { display: grid; gap: 1rem; padding-left: 1.5rem; }
.bh-tutorial-steps li { padding-left: .5rem; }
.bh-tutorial-shot { margin: 2rem 0; padding: 1rem; border-radius: 1rem; background: #f5f2e9; box-shadow: 0 12px 30px rgba(0, 60, 58, .12); }
.bh-tutorial-shot img { display: block; width: 100%; height: auto; border-radius: .5rem; }
.bh-tutorial-shot figcaption { margin-top: .75rem; color: #526762; font-size: .9rem; }
.bh-tutorial-cta { padding: 1.5rem; border-radius: 1rem; background: #003c3a; color: #fff; text-align: center; }
.bh-tutorial-cta h2 { color: inherit; }

.island-directory__hero { padding: clamp(3rem, 7vw, 6rem) 0; background: #f5f2e9; }
.island-directory__hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.island-directory__hero h1 { margin: .2rem 0 1rem; color: #003c3a; font-size: clamp(3.25rem, 8vw, 6.5rem); line-height: .92; }
.island-directory__hero p:last-child { max-width: 42rem; font-size: 1.1rem; }
.island-directory__hero img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 1rem; box-shadow: 0 18px 40px rgba(0, 60, 58, .18); }
.island-directory__categories { padding-block: clamp(3rem, 7vw, 6rem); }
.island-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.island-category-card { display: flex; flex-direction: column; min-height: 13rem; padding: 1.35rem; overflow: hidden; border: 1px solid #dbe5e1; border-radius: .85rem; background: #fff; box-shadow: 0 8px 22px rgba(0, 60, 58, .08); }
.island-category-card__media { display: block; margin: -1.35rem -1.35rem 1rem; overflow: hidden; background: #dfeeea; }
.island-category-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .25s ease; }
.island-category-card__media:hover img { transform: scale(1.025); }
.island-category-card h3 { margin: .25rem 0 .6rem; color: #003c3a; font-size: 1.4rem; }
.island-category-card h3 a { color: inherit; text-decoration: none; }
.island-category-card__count { margin: 0; color: #65807a; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.island-category-card > p:not(.island-category-card__count) { color: #526762; }
.island-category-card__link { margin-top: auto; color: #006d67; font-weight: 800; }

@media (max-width: 900px) {
	.island-directory__hero-grid { grid-template-columns: 1fr; }
	.island-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 580px) {
	.island-category-grid { grid-template-columns: 1fr; }
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
}

body {
	margin: 0;
	background: var(--bh-white);
	color: var(--bh-ink);
	font-family: var(--bh-font);
	font-size: 1rem;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

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

img {
	height: auto;
}

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

a:hover {
	color: var(--bh-lagoon-dark);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
[type="button"],
[type="submit"],
[type="reset"] {
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid var(--bh-focus);
	outline-offset: 3px;
	box-shadow: 0 0 0 6px var(--bh-white) !important;
}

::selection {
	background: var(--bh-reef);
	color: var(--bh-deep-2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--bh-deep);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

h1 {
	font-size: clamp(2.6rem, 7vw, 5.3rem);
	letter-spacing: -0.045em;
}

h2 {
	font-size: clamp(2rem, 5vw, 3.65rem);
	letter-spacing: -0.04em;
}

h3 {
	font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

p {
	margin: 0 0 1.25rem;
}

ul,
ol {
	margin: 0 0 1.5rem;
}

blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border-left: 5px solid var(--bh-coral);
	background: var(--bh-sand);
	font-family: var(--bh-serif);
	font-size: 1.25rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 0.75rem;
	left: 0.75rem;
	z-index: 99999;
	width: auto;
	height: auto;
	padding: 0.8rem 1rem;
	clip: auto;
	background: var(--bh-white);
	color: var(--bh-deep);
	font-weight: 800;
	box-shadow: var(--bh-shadow);
}

.bh-container {
	width: min(calc(100% - (2 * var(--bh-gutter))), var(--bh-container));
	margin-inline: auto;
}

.bh-container--content {
	max-width: var(--bh-content);
}

.section {
	padding-block: var(--bh-section);
}

.section--sand {
	background: var(--bh-sand);
}

.section--mist {
	background: var(--bh-mist);
}

.eyebrow {
	margin-bottom: 0.9rem;
	color: var(--bh-lagoon);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	line-height: 1.35;
	text-transform: uppercase;
}

.section-heading {
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading h2 {
	margin-bottom: 0;
}

.section-heading > p,
.section-heading--split > p {
	max-width: 32rem;
	margin-bottom: 0;
	color: var(--bh-muted);
	font-size: 1.08rem;
}

.section-heading--split {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
}

.section-heading--bottom {
	margin-bottom: 2rem;
}

.section-heading--center {
	max-width: 48rem;
	margin-inline: auto;
	text-align: center;
}

.section-heading--center > p {
	margin-inline: auto;
}

.bh-button,
.entry-content .wp-element-button,
.entry-content .wp-block-button__link {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.78rem 1.35rem;
	border: 2px solid var(--bh-lagoon);
	border-radius: 999px;
	background: var(--bh-lagoon);
	box-shadow: 0 8px 18px rgba(14, 119, 117, 0.2);
	color: var(--bh-white);
	font-size: 0.93rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.bh-button:hover,
.entry-content .wp-element-button:hover,
.entry-content .wp-block-button__link:hover {
	border-color: var(--bh-lagoon-dark);
	background: var(--bh-lagoon-dark);
	box-shadow: 0 11px 22px rgba(14, 119, 117, 0.25);
	color: var(--bh-white);
	transform: translateY(-2px);
}

.bh-button--small {
	min-height: 44px;
	padding: 0.65rem 1.1rem;
}

.bh-button--wide {
	width: 100%;
}

.bh-button--coral {
	border-color: var(--bh-coral);
	background: var(--bh-coral);
	box-shadow: 0 8px 18px rgba(239, 118, 92, 0.25);
}

.bh-button--coral:hover {
	border-color: var(--bh-coral-dark);
	background: var(--bh-coral-dark);
}

.bh-button--ghost-light {
	border-color: rgba(255, 255, 255, 0.52);
	background: transparent;
	box-shadow: none;
}

.bh-button--ghost-light:hover {
	border-color: var(--bh-white);
	background: var(--bh-white);
	color: var(--bh-deep);
}

.bh-text-arrow,
.content-card__link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 0.4rem;
	color: var(--bh-lagoon);
	font-weight: 800;
	text-decoration: none;
}

.bh-text-arrow svg,
.content-card__link svg,
.category-card > svg,
.circle-arrow svg {
	width: 1.15rem;
	height: 1.15rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform 160ms ease;
}

.bh-text-arrow:hover svg,
.content-card__link:hover svg,
.category-card:hover > svg {
	transform: translateX(3px);
}

.bh-text-arrow--back svg {
	transform: rotate(180deg);
}

.bh-text-arrow--back:hover svg {
	transform: rotate(180deg) translateX(3px);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* Header and navigation */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(18, 63, 66, 0.08);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 4px 20px rgba(18, 63, 66, 0.04);
	backdrop-filter: blur(14px);
}

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

.site-header__inner {
	display: flex;
	min-height: 78px;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.site-brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	text-decoration: none;
}

.site-brand img {
	width: min(215px, 44vw);
	max-height: 58px;
	object-fit: contain;
	object-position: left center;
}

.brand-mark__text {
	display: inline-block;
	color: var(--bh-deep);
	font-size: clamp(1.2rem, 3vw, 1.65rem);
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 1;
}

.primary-navigation {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(0.7rem, 2vw, 1.35rem);
}

.primary-menu > li {
	position: relative;
}

.primary-menu a {
	display: flex;
	min-height: 44px;
	align-items: center;
	color: var(--bh-ink);
	font-size: 0.91rem;
	font-weight: 750;
	text-decoration: none;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
	color: var(--bh-lagoon);
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% - 0.15rem);
	left: -1rem;
	min-width: 220px;
	padding: 0.55rem;
	visibility: hidden;
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-radius-sm);
	background: var(--bh-white);
	box-shadow: var(--bh-shadow);
	list-style: none;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	padding: 0.4rem 0.7rem;
	border-radius: 0.45rem;
}

.primary-menu .sub-menu a:hover {
	background: var(--bh-mist);
}

.primary-navigation__account {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.text-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--bh-ink);
	font-size: 0.9rem;
	font-weight: 750;
	text-decoration: none;
}

.nav-toggle {
	display: none;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.5rem 0.7rem;
	border: 1px solid var(--bh-border);
	border-radius: 999px;
	background: var(--bh-white);
	color: var(--bh-deep);
	font-size: 0.82rem;
	font-weight: 800;
}

.nav-toggle__icon {
	display: grid;
	width: 18px;
	gap: 4px;
}

.nav-toggle__icon span {
	display: block;
	height: 2px;
	border-radius: 99px;
	background: currentColor;
	transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* Search */
.search-form {
	display: flex;
	width: 100%;
	gap: 0.55rem;
}

.search-form label {
	flex: 1 1 auto;
}

.search-field,
.entry-content input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
.entry-content select,
.entry-content textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.72rem 0.9rem;
	border: 1px solid #b8c9c7;
	border-radius: 0.65rem;
	background: var(--bh-white);
	color: var(--bh-ink);
	box-shadow: 0 1px 0 rgba(18, 63, 66, 0.03) inset;
	transition: border-color 150ms ease, box-shadow 150ms ease;
}

.entry-content textarea {
	min-height: 130px;
	resize: vertical;
}

.search-field:focus,
.entry-content input:focus,
.entry-content select:focus,
.entry-content textarea:focus {
	border-color: var(--bh-lagoon);
	box-shadow: 0 0 0 3px rgba(14, 119, 117, 0.15);
	outline: 3px solid var(--bh-focus);
	outline-offset: 2px;
}

.search-submit,
.entry-content input[type="submit"],
.entry-content button[type="submit"] {
	min-height: 48px;
	padding: 0.7rem 1.25rem;
	border: 2px solid var(--bh-lagoon);
	border-radius: 0.65rem;
	background: var(--bh-lagoon);
	color: var(--bh-white);
	font-weight: 800;
}

.search-submit:hover,
.entry-content input[type="submit"]:hover,
.entry-content button[type="submit"]:hover {
	border-color: var(--bh-lagoon-dark);
	background: var(--bh-lagoon-dark);
}

/* Home hero */
.home-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(3.5rem, 8vw, 7rem);
	background:
		radial-gradient(circle at 83% 17%, rgba(244, 199, 95, 0.35) 0 7%, transparent 7.2%),
		linear-gradient(135deg, #f7f1e8 0%, #f9f6ef 49%, #dff5ef 100%);
}

.home-hero::before {
	position: absolute;
	right: -5%;
	bottom: -5.2rem;
	width: 60%;
	height: 11rem;
	border-radius: 50% 0 0 0;
	background: rgba(129, 212, 197, 0.3);
	content: "";
	transform: rotate(-4deg);
}

.home-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 6rem);
}

.home-hero__content h1 {
	max-width: 12ch;
}

.home-hero__lede {
	max-width: 38rem;
	color: #465f61;
	font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-search {
	max-width: 38rem;
	margin: 2rem 0 1rem;
	padding: 0.4rem;
	border: 1px solid rgba(18, 63, 66, 0.12);
	border-radius: 0.85rem;
	background: var(--bh-white);
	box-shadow: var(--bh-shadow);
}

.hero-search .search-field {
	border-color: transparent;
	box-shadow: none;
}

.hero-search .search-submit {
	border-radius: 0.62rem;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.8rem 1.4rem;
	margin-top: 1.25rem;
}

.hero-assurances {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1.2rem;
	padding: 0;
	margin: 1.8rem 0 0;
	list-style: none;
	color: #486264;
	font-size: 0.86rem;
	font-weight: 700;
}

.hero-assurances li {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.hero-assurances svg {
	width: 1rem;
	height: 1rem;
	fill: none;
	stroke: var(--bh-lagoon);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
}

.home-hero__visual {
	position: relative;
	min-height: clamp(430px, 50vw, 580px);
}

.hero-tile {
	position: absolute;
	display: block;
	overflow: hidden;
	border: 7px solid var(--bh-white);
	border-radius: 1.4rem;
	background: linear-gradient(145deg, var(--island-a, #4ea7a4), var(--island-b, #123f42));
	box-shadow: var(--bh-shadow-lg);
	color: var(--bh-white);
	text-decoration: none;
	transform: rotate(var(--tile-rotate, 0deg));
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-tile:hover {
	color: var(--bh-white);
	box-shadow: 0 32px 88px rgba(18, 63, 66, 0.26);
	transform: rotate(var(--tile-rotate, 0deg)) translateY(-6px);
}

.hero-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-tile::after {
	position: absolute;
	inset: 40% 0 0;
	background: linear-gradient(transparent, rgba(5, 35, 37, 0.72));
	content: "";
}

.hero-tile span {
	position: absolute;
	right: 1rem;
	bottom: 0.8rem;
	left: 1rem;
	z-index: 1;
	font-size: 1.1rem;
	font-weight: 850;
}

.hero-tile--1 {
	top: 3%;
	left: 2%;
	width: 62%;
	height: 56%;
	--tile-rotate: -4deg;
}

.hero-tile--2 {
	top: 20%;
	right: 0;
	width: 48%;
	height: 51%;
	--tile-rotate: 5deg;
}

.hero-tile--3 {
	bottom: 1%;
	left: 18%;
	width: 54%;
	height: 40%;
	--tile-rotate: 2deg;
}

.hero-sun {
	position: absolute;
	top: -1%;
	right: 12%;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: var(--bh-sun);
	box-shadow: 0 0 0 12px rgba(244, 199, 95, 0.2);
}

.hero-note {
	position: absolute;
	right: 1%;
	bottom: 3%;
	z-index: 2;
	max-width: 13rem;
	padding: 0.75rem 0.9rem;
	border-radius: 0.75rem;
	background: var(--bh-white);
	box-shadow: var(--bh-shadow);
	color: var(--bh-deep);
	font-family: var(--bh-serif);
	font-size: 0.92rem;
	font-style: italic;
	line-height: 1.35;
	transform: rotate(-2deg);
}

.hero-note span {
	margin-right: 0.35rem;
	color: var(--bh-coral);
	font-family: var(--bh-font);
}

.island-tone--oahu { --island-a: #4ca8bc; --island-b: #164e67; }
.island-tone--maui { --island-a: #e29a72; --island-b: #91452f; }
.island-tone--big-island { --island-a: #67785e; --island-b: #27392f; }
.island-tone--kauai { --island-a: #70ad80; --island-b: #255b43; }

/* Island and category discovery */
.island-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.island-card {
	overflow: hidden;
	border: 1px solid rgba(18, 63, 66, 0.1);
	border-radius: var(--bh-radius);
	background: var(--bh-white);
	box-shadow: var(--bh-shadow-sm);
	color: var(--bh-ink);
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.island-card:hover {
	color: var(--bh-ink);
	box-shadow: var(--bh-shadow);
	transform: translateY(-5px);
}

.island-card__media {
	position: relative;
	min-height: 220px;
	background:
		linear-gradient(155deg, transparent 0 55%, rgba(9, 48, 50, 0.25) 100%),
		linear-gradient(140deg, var(--island-a), var(--island-b));
}

.island-card__media::before,
.island-card__media::after {
	position: absolute;
	right: -15%;
	bottom: -17%;
	left: -12%;
	height: 42%;
	border-radius: 50% 50% 0 0;
	background: rgba(255, 255, 255, 0.18);
	content: "";
}

.island-card__media::after {
	right: -25%;
	bottom: -23%;
	left: 22%;
	background: rgba(255, 255, 255, 0.12);
}

.island-card__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.island-card__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1.15rem;
}

.island-card__content h3 {
	margin-bottom: 0.2rem;
	font-size: 1.35rem;
}

.island-card__content p {
	margin: 0;
	color: var(--bh-muted);
	font-size: 0.86rem;
	line-height: 1.4;
}

.circle-arrow {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: var(--bh-mist);
	color: var(--bh-lagoon);
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.category-card {
	display: grid;
	min-height: 98px;
	grid-template-columns: 48px 1fr auto;
	align-items: center;
	gap: 0.9rem;
	padding: 1rem 1.1rem;
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-radius-sm);
	background: var(--bh-white);
	box-shadow: 0 5px 16px rgba(18, 63, 66, 0.05);
	color: var(--bh-deep);
	font-weight: 800;
	text-decoration: none;
	transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.category-card:hover {
	border-color: var(--bh-reef);
	background: var(--bh-mist);
	color: var(--bh-deep);
	transform: translateY(-3px);
}

.category-card__icon {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	background: var(--bh-sand);
	color: var(--bh-lagoon);
}

.category-card__icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

/* Cards */
.card-grid {
	display: grid;
	gap: 1.25rem;
}

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

.content-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(18, 63, 66, 0.1);
	border-radius: var(--bh-radius);
	background: var(--bh-white);
	box-shadow: var(--bh-shadow-sm);
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.content-card:hover {
	box-shadow: var(--bh-shadow);
	transform: translateY(-4px);
}

.content-card__media {
	display: block;
	min-height: 220px;
	overflow: hidden;
	background: linear-gradient(140deg, var(--bh-reef), var(--bh-lagoon));
}

.content-card__media img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 350ms ease;
}

.content-card:hover .content-card__media img {
	transform: scale(1.035);
}

.content-card__placeholder {
	display: grid;
	min-height: 220px;
	place-items: center;
	background:
		radial-gradient(circle at 70% 25%, rgba(244, 199, 95, 0.75) 0 12%, transparent 12.5%),
		linear-gradient(145deg, var(--bh-reef), var(--bh-lagoon));
}

.content-card__placeholder span {
	color: rgba(255, 255, 255, 0.92);
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: -0.06em;
}

.content-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 1.25rem;
}

.content-card__eyebrow {
	margin-bottom: 0.45rem;
	color: var(--bh-coral-dark);
	font-size: 0.73rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.content-card h2,
.content-card h3 {
	margin-bottom: 0.55rem;
	font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

.content-card h2 a,
.content-card h3 a {
	color: var(--bh-deep);
	text-decoration: none;
}

.content-card h2 a:hover,
.content-card h3 a:hover {
	color: var(--bh-lagoon);
}

.content-card__body > p:not(.content-card__eyebrow) {
	color: var(--bh-muted);
	font-size: 0.94rem;
}

.content-card__link {
	align-self: flex-start;
	margin-top: auto;
}

.guide-grid .content-card__media,
.guide-grid .content-card__media img,
.guide-grid .content-card__placeholder {
	min-height: 190px;
	height: 190px;
}

.empty-state {
	padding: clamp(2rem, 6vw, 4rem);
	border: 1px dashed #a9bfbc;
	border-radius: var(--bh-radius);
	background: rgba(255, 255, 255, 0.7);
	text-align: center;
}

.empty-state h2,
.empty-state h3 {
	margin-bottom: 0.5rem;
}

.empty-state .search-form {
	max-width: 38rem;
	margin: 1.5rem auto 0;
}

/* Booking, creator, guides and FAQ */
.booking-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(3rem, 8vw, 7rem);
}

.booking-intro > p:not(.eyebrow) {
	color: var(--bh-muted);
	font-size: 1.08rem;
}

.affiliate-note {
	margin-top: 2rem;
	padding: 1.1rem 1.2rem;
	border: 1px solid #d8c8ad;
	border-radius: var(--bh-radius-sm);
	background: var(--bh-sand);
}

.affiliate-note strong {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--bh-deep);
}

.affiliate-note p {
	margin: 0;
	font-size: 0.88rem;
}

.booking-steps {
	display: grid;
	padding: 0;
	margin: 0;
	list-style: none;
}

.booking-steps li {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 1.15rem;
	padding: 1.6rem 0;
	border-bottom: 1px solid var(--bh-border);
}

.booking-steps li:first-child {
	padding-top: 0;
}

.booking-steps li:last-child {
	border-bottom: 0;
}

.booking-steps li > span {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border-radius: 50%;
	background: var(--bh-reef-light);
	color: var(--bh-lagoon-dark);
	font-size: 1.1rem;
	font-weight: 900;
}

.booking-steps h3 {
	margin-bottom: 0.25rem;
}

.booking-steps p {
	margin: 0;
	color: var(--bh-muted);
}

.creator-section {
	padding-top: 0;
}

.creator-card {
	display: grid;
	grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
	overflow: hidden;
	border-radius: var(--bh-radius-lg);
	background: var(--bh-deep);
	box-shadow: var(--bh-shadow-lg);
	color: #dcebea;
}

.creator-card__art {
	position: relative;
	display: grid;
	min-height: 430px;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 30% 25%, rgba(244, 199, 95, 0.9) 0 9%, transparent 9.5%),
		linear-gradient(160deg, var(--bh-lagoon) 0%, var(--bh-reef) 100%);
}

.creator-card__art > span {
	position: relative;
	z-index: 2;
	font-size: clamp(4.5rem, 10vw, 8rem);
	font-weight: 900;
	letter-spacing: -0.09em;
	text-shadow: 0 12px 30px rgba(18, 63, 66, 0.2);
}

.creator-card__art i {
	position: absolute;
	bottom: -12%;
	width: 130%;
	height: 50%;
	border-radius: 50% 50% 0 0;
	background: rgba(18, 63, 66, 0.24);
}

.creator-card__art i:nth-of-type(2) {
	right: -40%;
	bottom: -20%;
	background: rgba(18, 63, 66, 0.16);
}

.creator-card__art i:nth-of-type(3) {
	left: -55%;
	bottom: -28%;
	background: rgba(255, 255, 255, 0.14);
}

.creator-card__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 6vw, 5rem);
}

.creator-card__content .eyebrow {
	color: var(--bh-reef);
}

.creator-card__content h2 {
	max-width: 13ch;
	color: var(--bh-white);
}

.creator-card__content > p:not(.eyebrow) {
	max-width: 43rem;
	font-size: 1.04rem;
}

.creator-card__content .button-row {
	margin-top: 0.75rem;
}

.faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	gap: clamp(2rem, 8vw, 6rem);
}

.faq-grid > div:first-child > p:not(.eyebrow) {
	color: var(--bh-muted);
}

.faq-list {
	display: grid;
	gap: 0.75rem;
}

.faq-list details {
	border: 1px solid var(--bh-sand-deep);
	border-radius: var(--bh-radius-sm);
	background: var(--bh-white);
}

.faq-list summary {
	position: relative;
	min-height: 60px;
	padding: 1.05rem 3.25rem 1.05rem 1.2rem;
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	position: absolute;
	top: 50%;
	right: 1.2rem;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 50%;
	background: var(--bh-mist);
	color: var(--bh-lagoon);
	content: "+";
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.55rem;
	text-align: center;
	transform: translateY(-50%);
}

.faq-list details[open] summary::after {
	content: "−";
}

.faq-list details p {
	padding: 0 1.2rem 1.15rem;
	margin: 0;
	color: var(--bh-muted);
}

/* Generic pages and archives */
.singular-header {
	padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 3.5rem);
	background: linear-gradient(145deg, var(--bh-sand), #fbf9f5);
	text-align: center;
}

.singular-header h1 {
	font-size: clamp(2.5rem, 7vw, 4.8rem);
}

.singular-header .eyebrow {
	max-width: 44rem;
	margin-inline: auto;
}

.singular-header--post {
	text-align: left;
}

.singular-featured {
	margin-top: -1rem;
}

.singular-featured img {
	width: 100%;
	max-height: 680px;
	border-radius: var(--bh-radius);
	box-shadow: var(--bh-shadow);
	object-fit: cover;
}

.entry-content {
	padding-block: clamp(2.5rem, 6vw, 5rem);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.6em;
}

.entry-content a:not(.wp-element-button):not(.wp-block-button__link) {
	font-weight: 650;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 0.8rem;
	border: 1px solid var(--bh-border);
	text-align: left;
	vertical-align: top;
}

.entry-content th {
	background: var(--bh-mist);
}

.entry-content .alignwide {
	width: min(100vw - (2 * var(--bh-gutter)), var(--bh-container));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	color: var(--bh-muted);
	font-size: 0.9rem;
}

.entry-footer {
	padding-bottom: 2rem;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tag-list a,
.term-chips a {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: var(--bh-mist);
	color: var(--bh-lagoon-dark);
	font-size: 0.82rem;
	font-weight: 750;
	text-decoration: none;
}

.post-navigation {
	padding-block: 2rem 3rem;
	border-top: 1px solid var(--bh-border);
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.post-navigation .nav-next {
	text-align: right;
}

.post-navigation a {
	font-weight: 750;
	text-decoration: none;
}

.archive-header {
	max-width: 52rem;
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.archive-header h1 {
	font-size: clamp(2.5rem, 7vw, 4.8rem);
}

.archive-description {
	color: var(--bh-muted);
	font-size: 1.08rem;
}

.search-header .search-form {
	max-width: 42rem;
	margin-top: 1.5rem;
}

.navigation.pagination {
	margin-top: 3rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.page-numbers {
	display: inline-grid;
	min-width: 44px;
	min-height: 44px;
	place-items: center;
	padding: 0.45rem;
	border: 1px solid var(--bh-border);
	border-radius: 0.55rem;
	color: var(--bh-deep);
	font-weight: 750;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--bh-lagoon);
	background: var(--bh-lagoon);
	color: var(--bh-white);
}

.not-found-main {
	padding-block: var(--bh-section);
	background: var(--bh-sand);
}

.not-found-card {
	display: grid;
	grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
	align-items: center;
	gap: clamp(2rem, 8vw, 6rem);
	padding: clamp(1.5rem, 5vw, 4rem);
	border-radius: var(--bh-radius-lg);
	background: var(--bh-white);
	box-shadow: var(--bh-shadow);
}

.not-found-card__art {
	display: grid;
	min-height: 310px;
	place-items: center;
	border-radius: var(--bh-radius);
	background:
		radial-gradient(circle at 72% 22%, var(--bh-sun) 0 11%, transparent 11.5%),
		linear-gradient(145deg, var(--bh-reef), var(--bh-lagoon));
}

.not-found-card__art span {
	color: var(--bh-white);
	font-size: clamp(4rem, 12vw, 7rem);
	font-weight: 900;
	letter-spacing: -0.08em;
}

.not-found-card .search-form {
	margin: 1.5rem 0;
}

.comments-area {
	padding-block: 2rem 5rem;
	border-top: 1px solid var(--bh-border);
}

.comment-list {
	padding: 0;
	list-style: none;
}

.comment-list .comment {
	padding: 1rem 0;
	border-bottom: 1px solid var(--bh-border);
}

.comment-list .children {
	list-style: none;
}

/* Activity singulars: responsive WP image derivatives, plugin-owned CTA. */
.activity-hero {
	padding-block: clamp(3rem, 7vw, 6rem);
	background: linear-gradient(135deg, var(--bh-sand), var(--bh-mist));
}

.activity-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
}

.activity-hero__content h1 {
	font-size: clamp(2.5rem, 6vw, 4.7rem);
}

.activity-hero__lede {
	color: var(--bh-muted);
	font-size: 1.14rem;
}

.term-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 1.4rem;
}

.activity-hero__media {
	min-width: 0;
	margin: 0;
}

.activity-hero__media img {
	width: 100%;
	max-height: 590px;
	border-radius: var(--bh-radius-lg);
	box-shadow: var(--bh-shadow-lg);
	object-fit: cover;
}

.activity-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
	align-items: start;
	gap: clamp(2rem, 7vw, 6rem);
	padding-block: clamp(3rem, 7vw, 6rem);
}

.activity-editorial.entry-content {
	padding: 0;
}

.activity-editorial > h2:first-child {
	margin-top: 0;
}

.activity-booking {
	position: sticky;
	top: 7rem;
	padding: 1.5rem;
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-radius);
	background: var(--bh-white);
	box-shadow: var(--bh-shadow);
}

.admin-bar .activity-booking {
	top: 9rem;
}

.activity-booking h2 {
	font-size: 1.7rem;
}

.activity-booking > p:not(.eyebrow) {
	color: var(--bh-muted);
	font-size: 0.92rem;
}

.activity-booking__disclosure {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--bh-border);
	font-size: 0.78rem;
	line-height: 1.5;
}

.activity-booking__disclosure strong {
	color: var(--bh-deep);
}

.activity-booking__disclosure p {
	margin: 0.2rem 0 0;
	color: var(--bh-muted);
}

.activity-footer {
	padding-bottom: var(--bh-section);
}

/* Island hubs */
.island-hub__hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(3.5rem, 8vw, 7rem);
	background: linear-gradient(145deg, var(--island-a, var(--bh-reef)), var(--island-b, var(--bh-lagoon)));
}

.island-hub__hero::after {
	position: absolute;
	right: -12%;
	bottom: -7rem;
	width: 60%;
	height: 13rem;
	border-radius: 50% 0 0;
	background: rgba(255, 255, 255, 0.13);
	content: "";
}

.island-hub__hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
}

.island-hub__hero .eyebrow {
	color: rgba(255, 255, 255, 0.82);
}

.island-hub__hero h1 {
	color: var(--bh-white);
}

.island-hub__lede {
	max-width: 38rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.12rem;
}

.island-hub__media img {
	width: 100%;
	max-height: 510px;
	border: 6px solid rgba(255, 255, 255, 0.88);
	border-radius: var(--bh-radius-lg);
	box-shadow: var(--bh-shadow-lg);
	object-fit: cover;
}

.island-hub__intro {
	padding-bottom: 0;
}

.island-hub__experiences {
	background: var(--bh-mist);
}

.island-hub__more {
	margin: 2rem 0 0;
	text-align: center;
}

/* Authentication and dashboard shells */
.account-main--auth {
	background: var(--bh-sand);
}

.account-shell {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
	align-items: stretch;
	gap: clamp(1.5rem, 4vw, 3rem);
	padding-block: clamp(2rem, 6vw, 5rem);
}

.account-story,
.account-panel {
	border-radius: var(--bh-radius-lg);
}

.account-story {
	display: flex;
	min-height: 680px;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	padding: clamp(1.5rem, 4vw, 3.5rem);
	background:
		radial-gradient(circle at 80% 15%, rgba(244, 199, 95, 0.8) 0 7%, transparent 7.5%),
		linear-gradient(155deg, var(--bh-deep) 0%, var(--bh-lagoon) 100%);
	color: #e2efee;
	box-shadow: var(--bh-shadow-lg);
}

.account-story__logo {
	display: inline-flex;
	align-self: flex-start;
	padding: 0.6rem 0.8rem;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.95);
}

.account-story__logo img {
	width: 190px;
	max-height: 55px;
	object-fit: contain;
}

.account-story .eyebrow {
	color: var(--bh-reef);
}

.account-story h2 {
	max-width: 14ch;
	color: var(--bh-white);
}

.account-story > div > p:not(.eyebrow) {
	max-width: 38rem;
}

.account-benefits {
	display: grid;
	gap: 0.7rem;
	padding: 0;
	margin: 1.6rem 0 0;
	list-style: none;
}

.account-benefits li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-weight: 700;
}

.account-benefits svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: none;
	stroke: var(--bh-reef);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
}

.account-story__note {
	padding-top: 1.25rem;
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 0.77rem;
	line-height: 1.55;
}

.account-panel {
	align-self: center;
	padding: clamp(1.5rem, 5vw, 3.5rem);
	background: var(--bh-white);
	box-shadow: var(--bh-shadow);
}

.account-heading h1,
.account-heading h2 {
	font-size: clamp(2.1rem, 5vw, 3.25rem);
}

.account-heading > p:not(.eyebrow) {
	color: var(--bh-muted);
}

.account-plugin-output {
	padding-block: 1.25rem;
}

.account-plugin-output:empty::before,
.dashboard-plugin-output:empty::before {
	display: block;
	padding: 1rem;
	border: 1px dashed var(--bh-border);
	border-radius: var(--bh-radius-sm);
	color: var(--bh-muted);
	content: "Account form content will appear here when the account plugin is active.";
	font-size: 0.88rem;
}

.account-fallback {
	padding: 1.1rem;
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-radius-sm);
	background: var(--bh-mist);
}

.account-fallback h2 {
	margin-bottom: 0.45rem;
	font-size: 1.25rem;
}

.account-fallback p {
	color: var(--bh-muted);
}

.account-panel__footer {
	padding-top: 1rem;
	border-top: 1px solid var(--bh-border);
	text-align: center;
}

.account-panel__footer p {
	margin-bottom: 0.5rem;
}

.fine-print {
	color: var(--bh-muted);
	font-size: 0.76rem;
}

/* RCP, Gravity Forms and core-plugin form presentation (no form logic). */
.account-plugin-output form,
.dashboard-plugin-output form,
.rcp_form,
#rcp_registration_form,
.gform_wrapper form {
	display: grid;
	gap: 1rem;
}

.account-plugin-output fieldset,
.dashboard-plugin-output fieldset,
.rcp_form fieldset,
#rcp_registration_form fieldset {
	min-width: 0;
	padding: 1rem;
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-radius-sm);
}

.account-plugin-output legend,
.dashboard-plugin-output legend,
.rcp_form legend,
#rcp_registration_form legend {
	padding: 0 0.4rem;
	color: var(--bh-deep);
	font-weight: 800;
}

.account-plugin-output p,
.dashboard-plugin-output .form-row,
.rcp_form p,
#rcp_registration_form p,
.gform_wrapper .gfield {
	margin: 0 0 1rem;
}

.account-plugin-output label,
.dashboard-plugin-output label,
.rcp_form label,
#rcp_registration_form label,
.gform_wrapper .gfield_label {
	display: inline-block;
	margin-bottom: 0.35rem;
	color: var(--bh-deep);
	font-size: 0.87rem;
	font-weight: 800;
}

.account-plugin-output input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
.account-plugin-output select,
.account-plugin-output textarea,
.dashboard-plugin-output input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
.dashboard-plugin-output select,
.dashboard-plugin-output textarea,
.rcp_form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
.rcp_form select,
.rcp_form textarea,
#rcp_registration_form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
#rcp_registration_form select,
#rcp_registration_form textarea,
.gform_wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]),
.gform_wrapper select,
.gform_wrapper textarea {
	display: block;
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 0.85rem;
	border: 1px solid #b8c9c7;
	border-radius: 0.6rem;
	background: var(--bh-white);
	color: var(--bh-ink);
}

.account-plugin-output input[type="checkbox"],
.account-plugin-output input[type="radio"],
.dashboard-plugin-output input[type="checkbox"],
.dashboard-plugin-output input[type="radio"],
.rcp_form input[type="checkbox"],
.rcp_form input[type="radio"],
#rcp_registration_form input[type="checkbox"],
#rcp_registration_form input[type="radio"] {
	width: 20px;
	height: 20px;
	margin: 0 0.45rem 0 0;
	accent-color: var(--bh-lagoon);
	vertical-align: text-bottom;
}

.account-plugin-output input[type="submit"],
.account-plugin-output button[type="submit"],
.dashboard-plugin-output input[type="submit"],
.dashboard-plugin-output button[type="submit"],
.rcp_form input[type="submit"],
#rcp_registration_form input[type="submit"],
.gform_wrapper input[type="submit"],
.gform_wrapper button[type="submit"] {
	width: 100%;
	min-height: 50px;
	padding: 0.75rem 1.2rem;
	border: 2px solid var(--bh-lagoon);
	border-radius: 999px;
	background: var(--bh-lagoon);
	color: var(--bh-white);
	font-weight: 850;
}

.account-plugin-output .bh-form input:focus-visible,
.account-plugin-output .bh-form select:focus-visible,
.account-plugin-output .bh-form button:focus-visible,
.dashboard-plugin-output .bh-form input:focus-visible,
.dashboard-plugin-output .bh-form select:focus-visible,
.dashboard-plugin-output .bh-form button:focus-visible {
	outline: 3px solid var(--bh-focus) !important;
	outline-offset: 2px !important;
	box-shadow: 0 0 0 5px var(--bh-white) !important;
}

.rcp_message,
.rcp_error,
.gform_validation_errors,
.account-plugin-output .notice,
.dashboard-plugin-output .notice {
	padding: 0.85rem 1rem;
	border: 1px solid var(--bh-border);
	border-left: 4px solid var(--bh-lagoon);
	border-radius: 0.5rem;
	background: var(--bh-mist);
	font-size: 0.88rem;
}

.rcp_error,
.gform_validation_errors,
.account-plugin-output .error {
	border-left-color: var(--bh-error);
	background: #fff1f1;
	color: #712020;
}

.rcp_subscription_fieldset,
.rcp_gateway_fields,
.rcp_registration_total {
	background: #fbfcfb;
}

.rcp_level_description,
.rcp_registration_total,
.rcp_form .description,
.gform_wrapper .gfield_description {
	color: var(--bh-muted);
	font-size: 0.8rem;
}

.account-main--dashboard {
	background: #f3f7f6;
}

.account-main--dashboard .account-shell {
	grid-template-columns: 250px minmax(0, 1fr);
	align-items: start;
}

.dashboard-nav {
	position: sticky;
	top: 7rem;
	padding: 1rem;
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-radius);
	background: var(--bh-white);
	box-shadow: var(--bh-shadow-sm);
}

.dashboard-nav__brand {
	display: grid;
	gap: 0.5rem;
	padding: 0.5rem;
	margin-bottom: 0.8rem;
	border-bottom: 1px solid var(--bh-border);
	color: var(--bh-muted);
	font-size: 0.75rem;
	font-weight: 750;
	text-decoration: none;
}

.dashboard-nav__brand img {
	width: 145px;
	max-height: 44px;
	object-fit: contain;
	object-position: left center;
}

.dashboard-nav nav {
	display: grid;
	gap: 0.25rem;
}

.dashboard-nav nav a {
	display: flex;
	min-height: 44px;
	align-items: center;
	gap: 0.7rem;
	padding: 0.5rem 0.7rem;
	border-radius: 0.55rem;
	color: var(--bh-ink);
	font-size: 0.88rem;
	font-weight: 750;
	text-decoration: none;
}

.dashboard-nav nav a:hover {
	background: var(--bh-mist);
	color: var(--bh-lagoon-dark);
}

.dashboard-nav nav span {
	display: grid;
	width: 26px;
	height: 26px;
	place-items: center;
	border-radius: 50%;
	background: var(--bh-sand);
}

.dashboard-nav > p {
	padding: 0.8rem 0.5rem 0;
	margin: 0.8rem 0 0;
	border-top: 1px solid var(--bh-border);
	color: var(--bh-muted);
	font-size: 0.72rem;
}

.dashboard-content {
	min-width: 0;
}

.account-heading--dashboard {
	margin-bottom: 1.25rem;
}

.dashboard-plugin-output {
	padding: clamp(1.25rem, 4vw, 2.5rem);
	border: 1px solid var(--bh-border);
	border-radius: var(--bh-radius);
	background: var(--bh-white);
	box-shadow: var(--bh-shadow-sm);
}

.dashboard-plugin-output > section,
.dashboard-plugin-output > div:not(.notice):not(.rcp_message) {
	margin-bottom: 1rem;
}

/* Footer */
.site-footer {
	padding: clamp(3rem, 7vw, 5rem) 0 1.5rem;
	background: var(--bh-deep-2);
	color: #c9dcda;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(250px, 1.5fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr);
	gap: clamp(2rem, 6vw, 5rem);
}

.site-footer__brand img {
	width: 200px;
	max-height: 64px;
	object-fit: contain;
	object-position: left center;
}

.site-footer__brand > a,
.account-story__logo {
	text-decoration: none;
}

.site-footer .brand-mark__text {
	color: var(--bh-white);
}

.site-footer__brand p {
	max-width: 28rem;
	margin-top: 1.1rem;
}

.site-footer h2 {
	margin-bottom: 1rem;
	color: var(--bh-white);
	font-size: 0.92rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.footer-menu {
	display: grid;
	gap: 0.25rem;
}

.footer-menu a {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	color: #c9dcda;
	font-size: 0.9rem;
	text-decoration: none;
}

.footer-menu a:hover {
	color: var(--bh-white);
}

.site-footer__disclosure {
	display: flex;
	gap: 0.75rem;
	padding: 1rem 1.1rem;
	margin-top: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.65rem;
	background: rgba(255, 255, 255, 0.04);
	font-size: 0.8rem;
}

.site-footer__disclosure strong {
	flex: 0 0 auto;
	color: var(--bh-white);
}

.site-footer__legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.25rem;
	margin-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.77rem;
}

.site-footer__legal p {
	margin: 0;
}

.site-footer__legal div {
	display: flex;
	gap: 1rem;
}

.site-footer__legal a {
	color: #c9dcda;
}

/* Responsive layout */
@media (max-width: 1060px) {
	.primary-menu {
		gap: 0.65rem;
	}

	.primary-navigation__account .text-link {
		display: none;
	}

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

	.account-shell {
		grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr);
	}
}

@media (max-width: 900px) {
	.js .nav-toggle {
		display: flex;
	}

	.primary-navigation {
		position: fixed;
		top: 79px;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		overflow-y: auto;
		padding: 1rem var(--bh-gutter) 2rem;
		background: var(--bh-white);
	}

	.admin-bar .primary-navigation {
		top: 111px;
	}

	.js .primary-navigation:not(.is-open) {
		display: none;
	}

	.primary-menu {
		display: grid;
		gap: 0;
	}

	.primary-menu > li {
		border-bottom: 1px solid var(--bh-border);
	}

	.primary-menu a {
		min-height: 52px;
		font-size: 1rem;
	}

	.primary-menu .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 0 0 0.5rem 1rem;
		visibility: visible;
		border: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
	}

	.primary-menu .sub-menu a {
		min-height: 44px;
	}

	.primary-navigation__account {
		justify-content: space-between;
		padding-top: 1rem;
	}

	.primary-navigation__account .text-link {
		display: inline-flex;
	}

	.home-hero__grid,
	.booking-grid,
	.faq-grid,
	.activity-hero__grid,
	.island-hub__hero-grid {
		grid-template-columns: 1fr;
	}

	.home-hero__content {
		max-width: 46rem;
	}

	.home-hero__visual {
		width: min(100%, 650px);
		margin-inline: auto;
	}

	.category-grid,
	.card-grid--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.creator-card {
		grid-template-columns: 0.65fr 1.35fr;
	}

	.creator-card__art {
		min-height: 500px;
	}

	.activity-layout {
		grid-template-columns: 1fr;
	}

	.activity-booking,
	.admin-bar .activity-booking {
		position: static;
	}

	.account-shell,
	.account-main--dashboard .account-shell {
		grid-template-columns: 1fr;
	}

	.account-story {
		min-height: 520px;
	}

	.dashboard-nav {
		position: static;
	}

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

	.site-footer__grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}
}

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

	.admin-bar .primary-navigation {
		top: 125px;
	}
}

@media (max-width: 680px) {
	:root {
		--bh-gutter: 1rem;
	}

	h1 {
		font-size: clamp(2.4rem, 12vw, 3.55rem);
	}

	h2 {
		font-size: clamp(1.85rem, 9vw, 2.7rem);
	}

	.section-heading--split,
	.site-footer__legal {
		align-items: flex-start;
		flex-direction: column;
	}

	.home-hero {
		padding-top: 3rem;
	}

	.hero-search .search-form,
	.search-form {
		flex-direction: column;
	}

	.hero-search .search-submit,
	.search-submit {
		width: 100%;
	}

	.home-hero__visual {
		min-height: 410px;
	}

	.hero-tile {
		border-width: 5px;
	}

	.hero-note {
		right: 0;
		font-size: 0.78rem;
	}

	.hero-assurances {
		display: grid;
	}

	.island-grid,
	.category-grid,
	.card-grid--three {
		grid-template-columns: 1fr;
	}

	.island-card {
		display: grid;
		grid-template-columns: 42% 58%;
	}

	.island-card__media,
	.island-card__media img {
		min-height: 170px;
		height: 100%;
	}

	.category-card {
		min-height: 84px;
	}

	.creator-card {
		grid-template-columns: 1fr;
	}

	.creator-card__art {
		min-height: 260px;
	}

	.button-row .bh-button {
		width: 100%;
	}

	.post-navigation .nav-links,
	.not-found-card {
		grid-template-columns: 1fr;
	}

	.post-navigation .nav-next {
		text-align: left;
	}

	.not-found-card__art {
		min-height: 200px;
	}

	.account-shell {
		width: 100%;
		padding: 0;
	}

	.account-story,
	.account-panel {
		border-radius: 0;
	}

	.account-story {
		min-height: 430px;
	}

	.dashboard-nav {
		border-radius: 0;
	}

	.dashboard-nav nav {
		display: flex;
		overflow-x: auto;
		padding-bottom: 0.4rem;
	}

	.dashboard-nav nav a {
		flex: 0 0 auto;
	}

	.dashboard-content {
		padding-inline: var(--bh-gutter);
	}

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

	.site-footer__brand {
		grid-column: 1 / -1;
	}

	.site-footer__disclosure {
		flex-direction: column;
	}
}

@media (max-width: 380px) {
	.nav-toggle__label {
		display: none;
	}

	.island-card {
		grid-template-columns: 1fr;
	}

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

	.site-footer__brand {
		grid-column: auto;
	}
}

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

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

@media print {
	.site-header,
	.site-footer,
	.activity-booking,
	.creator-section,
	.nav-toggle {
		display: none !important;
	}

	body {
		color: #000;
	}

	a {
		color: inherit;
		text-decoration: underline;
	}

	.section,
	.activity-hero,
	.entry-content {
		padding-block: 1rem;
	}
}
