/* ==========================================================================
   Air Maniax Adventure — main stylesheet
   Colors are CSS custom properties (see functions.php) so the Customizer
   color pickers repaint the whole site instantly, including Elementor content.
   ========================================================================== */

:root {
	--am-navy: #000E23;
	--am-navy-2: #0B1E3C;
	--am-orange: #E85923;
	--am-orange-dark: #C6481A;
	--am-sky: #00ACEE;
	--am-sky-light: #E7F7FE;
	--am-teal: #074C73;
	--am-gray-light: #EEEEEE;
	--am-gray: #D8D8D8;
	--am-text: #1A2331;
	--am-white: #FFFFFF;
	--font-heading: 'Fredoka', 'Baloo 2', system-ui, sans-serif;
	--font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--container: 1240px;
	--radius: 16px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--am-text);
	background: var(--am-white);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
h1, h2, h3, h4, h5 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 .5em;
	color: var(--am-navy);
}
p { margin: 0 0 1em; }
.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--am-navy); color: #fff; padding: 12px 20px; }
.skip-link:focus { left: 10px; top: 10px; }

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}

.text-orange { color: var(--am-orange); }

/* ---------- Buttons ---------- */
.am-btn {
	display: inline-block;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
	text-align: center;
	padding: 14px 26px;
	border-radius: 999px;
	transition: transform .15s ease, background-color .15s ease;
	white-space: normal;
}
.am-btn:hover { transform: translateY(-2px); }
.am-btn-orange { background: var(--am-orange); color: #fff; }
.am-btn-orange:hover { background: var(--am-orange-dark); color: #fff; }
.am-btn-sm { padding: 9px 16px; font-size: 13px; }
.am-link { color: var(--am-orange); font-weight: 600; font-family: var(--font-heading); display: inline-block; }

/* Sticker-style paint-stroke tag used for section headings */
.paint-tag {
	display: inline-block;
	font-family: var(--font-heading);
	color: #fff;
	font-size: 22px;
	line-height: 1.25;
	padding: 14px 28px;
	border-radius: 14px 24px 14px 22px / 22px 14px 24px 14px;
	position: relative;
}
.paint-tag-sky { background: var(--am-sky); }
.paint-tag-teal { background: var(--am-teal); }
.paint-tag-orange { background: var(--am-orange); }
.ribbon-heading-center { text-align: center; margin-bottom: 2rem; }

/* ---------- Header ---------- */
.site-header {
	background: var(--am-navy);
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 14px;
	padding-bottom: 14px;
}
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { max-height: 62px; width: auto; }
.site-logo-fallback {
	font-family: var(--font-heading);
	color: #fff;
	font-size: 22px;
}
.site-logo-fallback.light { color: #fff; }

.primary-navigation { flex: 1; display: none; }
.primary-menu { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.primary-menu > li { position: relative; }
.primary-menu > li > a {
	color: #fff;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 500;
	padding: 10px 0;
	display: inline-block;
}
.primary-menu li.menu-item-has-children > a::after {
	content: '▾';
	margin-left: 5px;
	font-size: 11px;
}
.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--am-navy-2);
	min-width: 220px;
	padding: 10px 0;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(0,0,0,.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease;
	z-index: 50;
}
.primary-menu li:hover > .sub-menu,
.primary-menu li.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.primary-menu .sub-menu a {
	color: #fff;
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	font-family: var(--font-body);
}
.primary-menu .sub-menu a:hover { background: rgba(255,255,255,.08); }

.book-now-btn { flex-shrink: 0; padding: 12px 22px; display: none; }

.mobile-nav-toggle {
	color: #fff;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.mobile-nav-toggle svg { width: 26px; height: 26px; }
.mobile-nav-toggle .icon-close { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 991px) {
	.primary-navigation {
		display: block;
		position: fixed;
		inset: 0 0 0 auto;
		width: min(340px, 86vw);
		background: var(--am-navy);
		transform: translateX(100%);
		transition: transform .25s ease;
		padding: 90px 24px 40px;
		overflow-y: auto;
		z-index: 90;
	}
	.primary-navigation.is-open { transform: translateX(0); }
	.primary-menu { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
	.primary-menu > li { width: 100%; }
	.primary-menu > li > a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
	.primary-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
		display: none;
		padding-left: 14px;
		width: 100%;
	}
	.primary-menu li.is-open .sub-menu { display: block; }
	.primary-menu li.menu-item-has-children > a::after { float: right; }
}
@media (min-width: 992px) {
	.mobile-nav-toggle { display: none; }
	.book-now-btn { display: inline-block; }
}

/* ---------- Hero ---------- */
.hero { background: var(--am-navy); overflow: hidden; }
.hero-inner, .hero-inner-flex {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 48px 20px 56px;
	align-items: center;
}
.hero-copy { color: #fff; text-align: center; }
.hero-copy h1 { color: #fff; font-size: 34px; }
.hero-copy p { color: #dbe4f0; font-size: 16px; max-width: 46ch; margin-left: auto; margin-right: auto; }
.hero-media { width: 100%; position: relative; }
.hero-media img { border-radius: var(--radius); width: 100%; object-fit: cover; object-position: 75% center; aspect-ratio: 4/3; }
@media (min-width: 992px) { .hero-media img { aspect-ratio: 16/10; } }
.hero-media-placeholder {
	width: 100%;
	aspect-ratio: 4/3;
	border-radius: var(--radius);
	background: linear-gradient(135deg, var(--am-sky), var(--am-teal) 60%, var(--am-navy));
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-media-placeholder span { font-family: var(--font-heading); color: #fff; font-size: 22px; opacity: .85; letter-spacing: 2px; text-align: center; padding: 0 20px;}
.hero-dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.hero-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); }
.hero-dots span.is-active { background: var(--am-sky); }

@media (min-width: 992px) {
	.hero-inner, .hero-inner-flex { flex-direction: row; text-align: left; padding: 70px 20px; align-items: center; }
	.hero-copy { text-align: left; flex: 0 0 46%; }
	.hero-copy p { margin-left: 0; }
	.hero-copy h1 { font-size: 46px; }
	.hero-media { flex: 1; }
}

/* ---------- Trust badges ---------- */
.section-badges { padding: 40px 20px 10px; }
.trust-badges {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.trust-badge { display: flex; align-items: flex-start; gap: 12px; }
.trust-icon { width: 34px; height: 34px; flex-shrink: 0; }
.trust-icon svg { width: 100%; height: 100%; }
.trust-badge strong { display: block; color: var(--am-orange); font-family: var(--font-heading); font-size: 15px; }
.trust-badge span { font-size: 13px; color: var(--am-text); }
@media (min-width: 768px) {
	.trust-badges { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Rating / testimonials ---------- */
.section-rating { padding: 30px 20px; text-align: center; }
.rating-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; font-family: var(--font-heading); }
.am-stars { display: inline-flex; gap: 2px; }
.am-stars svg { width: 18px; height: 18px; }
.testimonial-row { display: grid; gap: 20px; grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
.testimonial-card { background: var(--am-sky-light); border-radius: var(--radius); padding: 24px; text-align: left; }
.testimonial-meta { display: flex; align-items: center; gap: 10px; margin-top: 10px; }

/* ---------- Deals ---------- */
.deals-section { background: var(--am-orange); padding: 48px 0; margin-top: 20px; }
.deals-grid { color: #fff; }
.deals-intro { text-align: center; margin-bottom: 26px; position: relative; }
.am-mascot { width: 140px; height: 140px; margin: 10px auto; }
.am-mascot img { width: 100%; height: 100%; object-fit: contain; }
.deals-intro h2 { color: #fff; font-size: 30px; }
.deals-intro p { color: #ffe3d4; max-width: 40ch; margin: 0 auto; }
.deals-cards { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.deal-card { background: rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; flex: 0 0 84%; scroll-snap-align: start; }
.deal-card-media { position: relative; border-radius: 12px; overflow: hidden; margin-bottom: 14px; }
.deal-card-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.deal-card .ribbon {
	position: absolute; left: 12px; bottom: 12px;
	background: var(--am-sky); color: #fff;
	font-family: var(--font-heading);
	padding: 8px 16px;
	border-radius: 8px 16px 8px 14px;
	font-size: 14px;
}
.deal-card p { color: #fff; font-size: 14px; }
.deal-card .am-link { color: #fff; text-decoration: underline; }
@media (min-width: 768px) {
	.deal-card { flex-basis: 31%; }
}

/* ---------- Birthday of the day / value bands ---------- */
.birthday-of-day, .value-band { background: var(--am-orange); padding: 50px 0; }
.value-band { background: var(--am-navy); }
.birthday-of-day-inner { display: flex; flex-direction: column; gap: 26px; }
.birthday-of-day-media {
	aspect-ratio: 4/3; border-radius: var(--radius);
	background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.05));
	overflow: hidden;
}
.birthday-of-day-media img { width: 100%; height: 100%; object-fit: cover; }
.birthday-of-day-copy { color: #fff; }
.birthday-of-day-copy p { color: #fff9f4; }
.birthday-of-day-copy h4 { color: #fff; font-size: 17px; margin-top: 20px; }
.birthday-of-day-copy .paint-tag { margin-bottom: 18px; background: var(--am-sky); }
@media (min-width: 992px) {
	.birthday-of-day-inner { flex-direction: row-reverse; align-items: center; }
	.birthday-of-day-media { flex: 0 0 42%; }
	.birthday-of-day-copy { flex: 1; }
}

.value-band-inner { display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; }
.mascot-img { width: 180px; height: 180px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.mascot-img img { width: 100%; height: 100%; object-fit: contain; }
.value-copy { color: #fff; }
.value-copy h2 { color: #fff; }
.value-copy p { color: #cfd9ea; }
@media (min-width: 992px) {
	.value-band-inner { flex-direction: row; text-align: left; }
}

/* ---------- Split features ---------- */
.split-feature { display: flex; flex-direction: column; gap: 28px; padding: 50px 20px; align-items: center; }
.split-feature-reverse { flex-direction: column-reverse; }
.split-feature-navy { background: var(--am-navy); border-radius: var(--radius); color: #fff; }
.split-feature-navy h2 { color: #fff; }
.split-feature-navy p { color: #cfd9ea; }
.split-feature-copy { flex: 1; }
.split-feature-copy h3 { font-size: 18px; color: var(--am-teal); }
.split-feature-media { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); background: linear-gradient(135deg, var(--am-sky), var(--am-teal)); overflow: hidden; }
.split-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.split-feature-media.skewed { clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%); border-radius: 0; }
@media (min-width: 992px) {
	.split-feature { flex-direction: row; align-items: center; padding: 70px 20px; }
	.split-feature-reverse { flex-direction: row-reverse; }
	.split-feature-media { flex: 0 0 44%; }
}

/* ---------- Attractions grid / carousel ---------- */
.attractions-section { padding: 50px 20px; }
.attractions-intro { text-align: center; margin-bottom: 30px; }
.attractions-intro p { max-width: 60ch; margin: 16px auto 20px; }
.carousel-arrows { display: flex; justify-content: center; gap: 14px; }
.carousel-prev, .carousel-next {
	width: 46px; height: 46px; border-radius: 50%;
	background: var(--am-orange); color: #fff;
	display: flex; align-items: center; justify-content: center;
}
.carousel-prev svg, .carousel-next svg { width: 20px; height: 20px; }
.attractions-grid {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
	scrollbar-width: thin;
}
.attraction-card {
	position: relative; border-radius: 14px; overflow: hidden; display: block;
	flex: 0 0 44%; scroll-snap-align: start;
}
.attraction-card img, .attraction-card-placeholder { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: linear-gradient(135deg, var(--am-sky), var(--am-navy-2)); }
.attraction-card .ribbon {
	position: absolute; left: 10px; bottom: 10px; right: 10px;
	background: var(--am-sky);
	color: #fff;
	font-family: var(--font-heading);
	text-align: center;
	padding: 8px 10px;
	border-radius: 8px 14px 8px 12px;
	font-size: 13px;
}
@media (min-width: 576px) { .attraction-card { flex-basis: 30%; } }
@media (min-width: 992px) { .attraction-card { flex-basis: 22%; } }

/* ---------- Choose Park widget ---------- */
.choose-park-section { padding: 50px 20px; background: var(--am-gray-light); }
.park-chooser { background: var(--am-navy); border-radius: var(--radius); padding: 30px 24px; color: #fff; }
.park-chooser h3 { color: #fff; font-size: 26px; }
.region-badge {
	display: inline-block; background: var(--am-orange); color: #fff;
	font-family: var(--font-heading); padding: 8px 20px;
	border-radius: 8px 16px 8px 14px; margin-bottom: 20px;
}
.park-item { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.park-item:first-of-type { border-top: none; }
.park-name {
	display: inline-block; background: var(--am-sky); color: #fff;
	font-family: var(--font-heading); font-size: 14px;
	padding: 8px 18px; border-radius: 6px; margin-bottom: 10px;
}
.park-address { color: #c9d3e2; font-size: 14px; margin-bottom: 6px; }
.park-phone { color: var(--am-sky); text-decoration: underline; font-size: 14px; }
.park-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

/* ---------- Pre-footer CTA ---------- */
.prefooter-cta { background: var(--am-gray-light); padding: 50px 20px; position: relative; overflow: hidden; }
.prefooter-inner { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; position: relative; z-index: 1; }
.prefooter-cta h2 { color: var(--am-teal); font-size: 28px; }
.prefooter-cta .mascot-img { background: radial-gradient(circle at 30% 30%, var(--am-sky), var(--am-orange)); position: absolute; right: -20px; bottom: -40px; opacity: .18; width: 220px; height: 220px; }
@media (min-width: 768px) {
	.prefooter-inner { flex-direction: row; align-items: center; justify-content: space-between; }
	.prefooter-cta .mascot-img { opacity: 1; position: static; width: 170px; height: 170px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--am-navy); color: #fff; padding-top: 50px; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; }
.footer-brand img { max-height: 70px; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-icon {
	width: 34px; height: 34px; border-radius: 50%;
	background: #fff; color: var(--am-navy);
	display: flex; align-items: center; justify-content: center;
}
.social-icon svg { width: 17px; height: 17px; }
.footer-heading { color: #fff; font-size: 15px; text-decoration: underline; text-underline-offset: 4px; margin-bottom: 14px; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { color: #dbe4f0; font-size: 14px; }
.footer-menu a:hover { color: var(--am-sky); }
.footer-col-wide .footer-menu-2col { columns: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 10px; padding: 18px 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: #b6c1d6; }
@media (min-width: 768px) {
	.footer-inner { grid-template-columns: 1.2fr 1fr 1fr 1.4fr; }
	.footer-col-wide .footer-menu-2col { columns: 2; column-gap: 20px; }
	.footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* ---------- FAQ ---------- */
.faq-section { padding: 50px 20px; }
.faq-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
.faq-intro-col p { color: #4b5666; }
.faq-item { border-bottom: 1px solid var(--am-gray); }
.faq-question {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	padding: 16px 0; text-align: left;
	font-family: var(--font-heading); color: var(--am-orange); font-size: 16px;
}
.faq-toggle { width: 16px; height: 16px; flex-shrink: 0; margin-left: 12px; transition: transform .2s ease; transform: rotate(-90deg); }
.faq-toggle svg { width: 100%; height: 100%; color: var(--am-orange); }
.faq-question[aria-expanded="true"] .faq-toggle { transform: rotate(0deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; font-size: 14px; color: #4b5666; }
.faq-answer p:last-child { margin-bottom: 16px; }
@media (min-width: 992px) {
	.faq-grid { grid-template-columns: 1fr 1.4fr; }
}

/* ---------- Pricing passes ---------- */
.tickets-plan { display: flex; flex-direction: column; gap: 36px; padding: 50px 20px; }
.plan-copy { flex: 1; }
.passes-grid { display: grid; grid-template-columns: 1fr; gap: 18px; flex: 1.4; }
.pass-card { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,.08); background: #fff; }
.pass-card-header { font-family: var(--font-heading); color: #fff; font-size: 18px; padding: 16px 20px; }
.pass-color-sky { background: var(--am-sky); }
.pass-color-navy { background: #3c4f8c; }
.pass-color-teal { background: var(--am-navy-2); }
.pass-color-orange { background: var(--am-orange); }
.pass-tagline { padding: 14px 20px 0; font-size: 14px; }
.pass-features { padding: 10px 20px 20px; }
.pass-features li { color: var(--am-orange); font-weight: 600; font-size: 14px; padding: 4px 0 4px 16px; position: relative; }
.pass-features li::before { content: '•'; position: absolute; left: 0; }
@media (min-width: 576px) { .passes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .tickets-plan { flex-direction: row; } }

/* ---------- Memberships ---------- */
.membership-options { padding: 50px 20px; }
.section-title-center { text-align: center; }
.membership-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin: 30px 0; }
.membership-card { border-radius: var(--radius); padding: 30px; background: var(--am-sky-light); }
.membership-card-navy { background: var(--am-navy); color: #fff; }
.membership-card-navy h3, .membership-card-navy .membership-tagline { color: #fff; }
.membership-tagline { font-family: var(--font-heading); color: var(--am-teal); margin-bottom: 10px; }
.membership-terms { font-size: 12px; color: #6b7686; text-align: center; max-width: 900px; margin: 0 auto; }
.membership-closing { background: var(--am-gray-light); padding: 40px 20px; text-align: center; }
.membership-closing p { max-width: 760px; margin: 0 auto 14px; }
@media (min-width: 768px) { .membership-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Sky band / alternating rows (birthday, camps) ---------- */
.sky-band { background: var(--am-sky); padding: 50px 0; color: #fff; }
.alt-row { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; align-items: center; }
.alt-row-reverse { flex-direction: column-reverse; }
.alt-row-media { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); background: rgba(255,255,255,.2); overflow: hidden; }
.alt-row-media img { width: 100%; height: 100%; object-fit: cover; }
.alt-row-copy p { color: #eaf8ff; }
@media (min-width: 992px) {
	.alt-row { flex-direction: row; }
	.alt-row-reverse { flex-direction: row-reverse; }
	.alt-row-media, .alt-row-copy { flex: 1; }
}

.party-cta, .franchise-final { display: flex; flex-direction: column; gap: 26px; padding: 50px 20px; align-items: center; }
.party-cta-media { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); background: linear-gradient(135deg, var(--am-orange), var(--am-sky)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.party-cta-media img { width: 100%; height: 100%; object-fit: contain; }
.franchise-final .party-cta-media { background: var(--am-navy); }
.franchise-final .party-cta-media img { object-fit: cover; }
.franchise-photo { width: 100%; max-width: 480px; margin: 24px auto 0; border-radius: var(--radius); overflow: hidden; }
.franchise-photo img { width: 100%; height: auto; display: block; }
@media (min-width: 992px) {
	.party-cta, .franchise-final { flex-direction: row; }
	.party-cta-media { flex: 0 0 42%; }
}

/* ---------- Checklist band (team building) ---------- */
.checklist { margin: 16px 0; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 14px; }
.checklist li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.checklist-band { background: var(--am-navy); color: #fff; padding: 50px 20px; margin: 20px 0; }
.checklist-band h3 { color: #fff; }
.checklist-band-inner { display: flex; flex-direction: column; gap: 30px; max-width: var(--container); margin: 0 auto; }
.checklist-price { background: rgba(255,255,255,.06); border-radius: var(--radius); padding: 24px; text-align: center; }
.price-figure { display: block; font-family: var(--font-heading); font-size: 26px; color: var(--am-sky); margin-bottom: 10px; }
.price-figure small { font-size: 14px; color: #cfd9ea; }
@media (min-width: 992px) { .checklist-band-inner { flex-direction: row; } .checklist-band-inner > div:first-child { flex: 1.4; } .checklist-price { flex: 1; } }

/* ---------- Camps tags ---------- */
.camp-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; padding: 20px 20px 50px; }
.camp-tag { background: var(--am-sky-light); color: var(--am-teal); font-family: var(--font-heading); padding: 10px 20px; border-radius: 999px; font-size: 14px; }

/* ---------- Franchise ---------- */
.franchise-block { padding: 40px 20px; }
.franchise-block > p { max-width: 800px; }
.checklist-plain li { display: list-item; list-style: disc; margin-left: 20px; padding: 4px 0; font-size: 14px; }
.checklist-orange li { color: var(--am-orange); font-weight: 600; }
.checklist-columns { columns: 1; }
@media (min-width: 768px) { .checklist-columns { columns: 2; column-gap: 30px; } }

.stat-bars { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 24px auto 0; }
.stat-bar {
	display: flex; align-items: center; justify-content: space-between;
	background: var(--am-sky-light); border-radius: 999px; padding: 6px;
	gap: 10px;
}
.stat-bar.is-filled { background: var(--am-orange); }
.stat-label {
	background: var(--am-sky); color: #fff; font-family: var(--font-heading);
	font-size: 13px; padding: 10px 20px; border-radius: 999px; flex-shrink: 0;
}
.stat-value { font-family: var(--font-heading); color: var(--am-orange); font-size: 18px; padding-right: 18px; }
.stat-bar.is-filled .stat-value { color: #fff; }

.timeline-section { background: var(--am-gray-light); padding: 50px 20px; }
.timeline-subheading { text-align: center; font-weight: 600; margin-bottom: 30px; }
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; position: relative; }
.timeline-item { display: flex; align-items: center; gap: 20px; padding-bottom: 34px; position: relative; }
.timeline-item::before {
	content: ''; position: absolute; left: 27px; top: 56px; bottom: -10px;
	border-left: 3px dotted var(--am-sky);
}
.timeline-item:last-child::before { display: none; }
.timeline-year {
	width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
	background: var(--am-sky); color: #fff; font-family: var(--font-heading);
	font-size: 12px; display: flex; align-items: center; justify-content: center;
	text-align: center; line-height: 1.1; position: relative; z-index: 1;
}
.timeline-year.is-orange { background: var(--am-orange); }
.timeline-copy { background: var(--am-sky-light); border-radius: 12px; padding: 14px 18px; font-size: 14px; flex: 1; }

/* ---------- Attraction single ---------- */
.attraction-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 30px 20px; }
.gallery-item img { border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; }
.attraction-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 20px; }
.pill {
	background: var(--am-sky-light); color: var(--am-teal); font-family: var(--font-heading);
	font-size: 13px; padding: 10px 18px; border-radius: 999px;
}
.pill.is-active, .pill:hover { background: var(--am-orange); color: #fff; }

/* ---------- Generic page / blog ---------- */
.page-generic { padding: 50px 20px; }
.page-header h1 { margin-bottom: 24px; }
.blog-index { padding: 50px 20px; display: grid; gap: 30px; }
.blog-card img { border-radius: var(--radius); margin-bottom: 14px; }
.single-post { padding: 50px 20px; }
.single-thumb img { border-radius: var(--radius); margin: 20px 0; }
.deals-disclaimer { text-align: center; font-size: 13px; color: #6b7686; padding: 0 20px 40px; }

/* Elementor-built pages should render edge-to-edge, no theme padding fighting it */
.airmaniax-elementor-content .site-main { padding: 0; }
