/* Accessibility */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.screen-reader-text:focus {
	background: var(--bone);
	clip: auto;
	clip-path: none;
	color: var(--black);
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 16px;
	line-height: normal;
	padding: 15px 20px;
	text-decoration: none;
	top: 16px;
	width: auto;
	z-index: 100000;
}

body.nav-open {
	overflow: hidden;
}

/* Header — sample markup + WordPress theme classes */
header,
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 22px 7%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

.logo img,
.logo .custom-logo,
.logo-link img,
.site-header .custom-logo-link img,
.footer-logo img,
.footer-logo .custom-logo {
	width: 300px;
	max-width: 42vw;
	display: block;
}

.logo .custom-logo-link {
	display: block;
	line-height: 0;
}

nav,
.primary-navigation,
.primary-menu {
	display: flex;
	gap: 24px;
	align-items: center;
}

nav a,
.primary-menu a {
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.primary-menu a:not(.nav-cta) {
	color: var(--bone);
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	filter: none;
}

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

.primary-menu li {
	list-style: none;
}

.primary-menu .current-menu-item > a:not(.nav-cta),
.primary-menu .current_page_item > a:not(.nav-cta) {
	color: var(--lime);
}

.nav-cta,
.primary-menu .nav-cta > a,
.primary-menu a.nav-cta {
	background: var(--orange);
	color: var(--black);
	padding: 13px 22px;
	border-radius: 999px;
}

.primary-menu .current-menu-item > a.nav-cta,
.primary-menu .current_page_item > a.nav-cta {
	color: var(--black);
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border: 2px solid rgba(244, 238, 213, 0.5);
	border-radius: 999px;
	background: transparent;
	color: var(--bone);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.82rem;
	cursor: pointer;
}

.menu-toggle__icon {
	position: relative;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform 0.2s ease;
}

.menu-toggle__icon::before {
	top: -6px;
}

.menu-toggle__icon::after {
	top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
	background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
	top: 0;
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
	top: 0;
	transform: rotate(-45deg);
}

/* Hero — base structure; backgrounds via body.hero--* in pages/heroes.css */
.hero {
	min-height: 720px;
	padding: 165px 7% 105px;
	display: flex;
	align-items: center;
}

.hero {
	background:
		radial-gradient(circle at 80% 35%, rgba(255, 74, 36, 0.42), transparent 24%),
		linear-gradient(90deg, rgba(5, 7, 4, 0.96), rgba(5, 7, 4, 0.74), rgba(24, 60, 8, 0.45));
}

.hero-content {
	max-width: 820px;
}

.hero p {
	max-width: 670px;
	color: var(--muted);
	font-size: 1.2rem;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

/* Sections */
.section {
	padding: 90px 7%;
}

.center {
	text-align: center;
	max-width: 850px;
	margin: 0 auto 42px;
}

.site-main {
	padding: 0;
}

/* Info strips — unified pattern for all page variants */
.proof-strip,
.stat-strip,
.contact-strip,
.trip-strip,
.location-strip,
.species-strip,
.rate-strip,
.review-strip,
.gallery-strip,
.family-strip,
.exotic-strip,
.custom-strip,
.tour-strip,
.bring-strip,
.status-strip {
	width: 86%;
	margin: -55px auto 0;
	position: relative;
	z-index: 2;
	background: var(--bone);
	color: var(--black);
	display: grid;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.proof-strip { grid-template-columns: repeat(5, 1fr); }
.species-strip { grid-template-columns: repeat(6, 1fr); }
.trip-strip { grid-template-columns: repeat(3, 1fr); }
.stat-strip,
.contact-strip,
.location-strip,
.rate-strip,
.review-strip,
.gallery-strip,
.family-strip,
.exotic-strip,
.custom-strip,
.tour-strip,
.bring-strip,
.status-strip { grid-template-columns: repeat(4, 1fr); }

.proof-strip div,
.stat-strip .stat,
.contact-strip div,
.trip-strip div,
.location-strip div,
.species-strip div,
.rate-strip div,
.review-strip div,
.gallery-strip div,
.family-strip div,
.exotic-strip div,
.custom-strip div,
.tour-strip div,
.bring-strip div,
.status-strip div {
	padding: 28px 22px;
	border-right: 1px solid rgba(5, 7, 4, 0.15);
}

.proof-strip div:last-child,
.stat-strip .stat:last-child,
.contact-strip div:last-child,
.trip-strip div:last-child,
.location-strip div:last-child,
.species-strip div:last-child,
.rate-strip div:last-child,
.review-strip div:last-child,
.gallery-strip div:last-child,
.family-strip div:last-child,
.exotic-strip div:last-child,
.custom-strip div:last-child,
.tour-strip div:last-child,
.bring-strip div:last-child,
.status-strip div:last-child {
	border-right: 0;
}

.proof-strip strong,
.contact-strip strong,
.trip-strip strong,
.location-strip strong,
.species-strip strong,
.rate-strip strong,
.review-strip strong,
.gallery-strip strong,
.family-strip strong,
.exotic-strip strong,
.custom-strip strong,
.tour-strip strong,
.bring-strip strong,
.status-strip strong {
	display: block;
	color: var(--green);
	text-transform: uppercase;
	margin-bottom: 6px;
}

.proof-strip span,
.contact-strip span,
.contact-strip a,
.trip-strip span,
.location-strip span,
.species-strip span,
.rate-strip span,
.review-strip span,
.gallery-strip span,
.family-strip span,
.exotic-strip span,
.custom-strip span,
.tour-strip span,
.bring-strip span,
.status-strip span {
	color: #4d583a;
	font-size: 0.9rem;
}

.stat strong {
	display: block;
	font-size: 1.8rem;
	color: var(--green);
	margin-bottom: 5px;
}

.stat span {
	display: block;
	color: #42502d;
	font-size: 0.9rem;
	line-height: 1.35;
}

/* Footer */
footer,
.site-footer {
	background: var(--black);
	padding: 48px 7% 26px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 38px;
}

.footer-logo img {
	max-width: 260px;
}

footer h4,
.site-footer h4,
.footer-links h4 {
	color: var(--lime);
	text-transform: uppercase;
}

footer a,
footer p,
.footer-col a,
.footer-menu a,
.footer-about p {
	display: block;
	color: var(--muted);
	margin: 7px 0;
	font-size: 0.9rem;
}

.footer-book-link {
	color: var(--lime);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.footer-book-link:hover,
.footer-book-link:focus {
	color: var(--orange);
}

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

.footer-bottom {
	border-top: 1px solid rgba(244, 238, 213, 0.12);
	margin-top: 34px;
	padding-top: 18px;
	color: rgba(244, 238, 213, 0.55);
	font-size: 0.8rem;
}

/* Silo links */
.silo-links {
	background: var(--green);
}

.silo-links .center h2 {
	color: var(--bone);
}

.silo-links .center p {
	color: var(--muted);
}

.silo-links__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	max-width: 920px;
	margin: 0 auto;
}

.silo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(184, 217, 79, 0.12);
	color: var(--lime);
	border: 1px solid rgba(184, 217, 79, 0.3);
	padding: 12px 20px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.silo-link:hover,
.silo-link:focus {
	background: rgba(184, 217, 79, 0.22);
}

.silo-link--cta {
	background: var(--orange);
	color: var(--black);
	border-color: var(--orange);
}

.silo-link--cta:hover,
.silo-link--cta:focus {
	background: var(--bone);
	color: var(--black);
}

.trust-element__more {
	margin-top: 32px;
}

.child-cross-links {
	background: #0a0f06;
}

.child-cross-links__group {
	max-width: 920px;
	margin: 0 auto 28px;
}

.child-cross-links__group h3 {
	color: var(--lime);
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	margin-bottom: 14px;
}

.child-cross-links__group:last-child {
	margin-bottom: 0;
}

/* Tags */
.tag-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0;
}

.tag {
	background: rgba(184, 217, 79, 0.12);
	color: var(--lime);
	border: 1px solid rgba(184, 217, 79, 0.3);
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

/* Responsive */
@media (min-width: 951px) {
	.primary-navigation {
		display: block !important;
		width: auto;
		margin: 0;
		padding: 0;
		background: none;
		border: 0;
	}
}

@media (max-width: 950px) {
	header,
	.site-header {
		position: relative;
		background: var(--black);
	}

	.menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.primary-navigation {
		display: none;
		width: 100%;
		order: 3;
		margin-top: 0;
		padding: 20px;
		background: rgba(244, 238, 213, 0.04);
		border: 1px solid rgba(244, 238, 213, 0.12);
		border-radius: 18px;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.primary-menu a {
		display: block;
		padding: 12px 4px;
	}

	.primary-menu a.nav-cta {
		text-align: center;
		margin-top: 8px;
	}

	.hero {
		min-height: auto;
		padding-top: 80px;
	}

	.logo img,
	.logo .custom-logo,
	.logo-link img,
	.site-header .custom-logo-link img {
		max-width: 86vw;
	}

	h1 {
		letter-spacing: -2px;
	}

	.proof-strip,
	.stat-strip,
	.contact-strip,
	.trip-strip,
	.location-strip,
	.species-strip,
	.rate-strip,
	.review-strip,
	.gallery-strip,
	.family-strip,
	.exotic-strip,
	.custom-strip,
	.tour-strip,
	.bring-strip,
	.status-strip,
	.intro,
	.story,
	.boat-layout,
	.boat-grid,
	.boat-specs,
	.why-grid,
	.trip-grid,
	.trip-feature,
	.species-grid,
	.experience-grid,
	.location-grid,
	.location-feature,
	.review-grid,
	.featured-grid,
	.included-grid,
	.not-grid,
	.policy-grid,
	.payment-grid,
	.form-row,
	.step-grid,
	.faq-grid,
	.footer-grid,
	.type-grid,
	.wildlife-grid,
	.photo-grid,
	.memory-grid,
	.kid-grid,
	.target-grid,
	.match-grid,
	.rate-grid,
	.build-grid,
	.how-grid,
	.guide-grid,
	.essential-grid,
	.provided-grid,
	.dont-grid,
	.weather-grid,
	.checklist,
	.platform-grid,
	.moment-grid,
	.insta-layout,
	.calendar-grid,
	.trust-grid,
	.timeline-grid,
	.action-grid,
	.prepare-grid,
	.trip-types .type-grid,
	.species-feature,
	.boat-layout,
	.safety-layout,
	.license-layout,
	.payment-layout,
	.location-layout,
	.match-grid {
		grid-template-columns: 1fr;
	}

	.proof-strip,
	.stat-strip,
	.contact-strip,
	.trip-strip,
	.location-strip,
	.species-strip,
	.rate-strip,
	.review-strip,
	.gallery-strip,
	.family-strip,
	.exotic-strip,
	.custom-strip,
	.tour-strip,
	.bring-strip,
	.status-strip {
		width: 100%;
		margin: 0;
		border-radius: 0;
	}

	.trip-card.featured,
	.rate-card.featured,
	.match-card.featured {
		transform: none;
	}
}