/**
 * School Holiday Programs — campaign landing page.
 *
 * Structure and colour follow the Picklr location pages (dark hero, condensed
 * display type, blue pill CTAs) so the page sits inside the main brand rather
 * than the Academy sub-brand. The Academy monogram appears in the closing
 * section in its own colours, but does not set the palette.
 *
 * Class names are applied to Elementor containers and widgets. Elementor puts a
 * widget's CSS class on the widget WRAPPER, so anywhere a heading or paragraph
 * needs styling the inner element is handed `font`/`color: inherit`.
 *
 * Date Created: 08272026
 */

/* ─── FONTS ────────────────────────────────────────────── */
@font-face {
	font-family: 'Pickler Social';
	src: url('https://thepicklr.com/wp-content/uploads/2025/01/PicklrSocial-Regular-1.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Pickler Social';
	src: url('https://thepicklr.com/wp-content/uploads/2025/01/PicklrSocial-Bold-1.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Pickler Social Condensed';
	src: url('https://thepicklr.com/wp-content/uploads/2025/01/PicklrSocialCondensed-Black.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* ─── TOKENS ───────────────────────────────────────────── */
.shp {
	/* Picklr brand blue, matching the location pages and site header. */
	--shp-accent: #0075E7;
	--shp-accent-dark: #0063c7;
	--shp-accent-soft: rgba(0, 117, 231, 0.12);
	--shp-black: #000000;
	--shp-ink: #0a0f14;
	--shp-white: #ffffff;
	--shp-offwhite: #F4F6F8;
	--shp-muted: #667085;
	--shp-border: #e2e8f0;
	--shp-radius: 12px;
	--shp-radius-lg: 20px;

	/* The site ships the condensed cut as "Picklr Social Condensed" and the body
	   face as "Pickler Social" — the spellings genuinely differ. List both. */
	--shp-font: 'Pickler Social', 'Picklr Social', 'Montserrat', 'Inter', sans-serif;
	--shp-font-condensed: 'Picklr Social Condensed', 'Pickler Social Condensed', 'Pickler Social', 'Montserrat', sans-serif;

	font-family: var(--shp-font);
	color: var(--shp-black);
	font-size: 16px;
	line-height: 1.6;
}

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

.shp img { max-width: 100%; }

/* Elementor puts widget CSS classes on the wrapper, and its global kit styles
   target the inner element directly. Let the campaign styles flow through. */
.shp .shp-h1 .elementor-heading-title,
.shp .shp-h2 .elementor-heading-title,
.shp .shp-eyebrow .elementor-heading-title,
.shp .shp-lede .elementor-heading-title {
	font: inherit;
	color: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	margin: 0;
}

.shp .elementor-widget-text-editor .elementor-widget-container > *:last-child {
	margin-bottom: 0;
}

/* ─── SHARED TYPE ──────────────────────────────────────── */
.shp .shp-eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--shp-accent);
	margin: 0 0 18px;
}

.shp .shp-h1 {
	font-family: var(--shp-font-condensed);
	font-weight: 900;
	font-size: clamp(44px, 6.4vw, 92px);
	line-height: 0.94;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--shp-white);
	margin: 0 0 22px;
	overflow-wrap: break-word;
}

.shp .shp-h2 {
	font-family: var(--shp-font-condensed);
	font-weight: 900;
	font-size: clamp(34px, 5vw, 62px);
	line-height: 0.98;
	text-transform: uppercase;
	color: var(--shp-black);
	margin: 0 0 20px;
}

.shp .shp-h2 em,
.shp .shp-h1 em {
	font-style: normal;
	color: var(--shp-accent);
}

.shp .shp-lede {
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.6;
	margin: 0 0 18px;
}

.shp-section__intro {
	max-width: 60ch;
	margin: 0 auto 44px;
	text-align: center;
	font-size: clamp(16px, 1.8vw, 19px);
	color: #344054;
}

/* ─── BUTTONS ──────────────────────────────────────────── */
/*
 * The CTAs are native Elementor Button widgets so the booking URL can be edited
 * visually once it is confirmed. Elementor styles `.elementor-button`, so these
 * rules target that element inside our wrapper class.
 */
.shp .shp-cta .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 20px 44px;
	font-family: var(--shp-font);
	font-size: clamp(15px, 1.7vw, 18px);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.1;
	text-transform: uppercase;
	text-align: center;
	color: var(--shp-white);
	background-color: var(--shp-accent);
	border: 0;
	border-radius: 100px;
	fill: var(--shp-white);
	transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.shp .shp-cta .elementor-button:hover,
.shp .shp-cta .elementor-button:focus {
	background-color: var(--shp-accent-dark);
	color: var(--shp-white);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 117, 231, 0.34);
}

.shp .shp-cta .elementor-button:focus-visible {
	outline: 3px solid var(--shp-white);
	outline-offset: 3px;
}

/* Secondary CTA on light surfaces. */
.shp .shp-cta--outline .elementor-button {
	color: var(--shp-black);
	background-color: transparent;
	box-shadow: inset 0 0 0 2px var(--shp-black);
}

.shp .shp-cta--outline .elementor-button:hover {
	color: var(--shp-white);
	background-color: var(--shp-black);
	box-shadow: inset 0 0 0 2px var(--shp-black);
}

/* ─── HERO ─────────────────────────────────────────────── */
.shp-hero {
	position: relative;
	color: var(--shp-white);
	background-color: var(--shp-ink);
	overflow: hidden;
	isolation: isolate;
}

/* Elementor paints the photo as the container background; this wash keeps the
   headline legible over it at every crop. */
.shp-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(90deg, rgba(5, 7, 10, 0.94) 0%, rgba(5, 7, 10, 0.82) 42%, rgba(5, 7, 10, 0.45) 100%),
		linear-gradient(0deg, rgba(0, 117, 231, 0.22) 0%, rgba(0, 117, 231, 0) 55%);
}

.shp-hero > .e-con-inner,
.shp-hero > * {
	position: relative;
	z-index: 1;
}

.shp-hero__copy {
	width: 100%;
	max-width: 780px;
}

.shp .shp-hero__lede {
	font-size: clamp(16px, 1.9vw, 20px);
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 16px;
	max-width: 56ch;
}

.shp .shp-hero__lede strong { color: var(--shp-white); }

.shp-hero__punch {
	font-family: var(--shp-font-condensed);
	font-weight: 900;
	font-size: clamp(18px, 2.4vw, 26px);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--shp-white);
	margin: 0 0 8px;
}

/* ─── KEY INFO STRIP ───────────────────────────────────── */
/* The brief is explicit that ages, time, dates and location must be visible
   without hunting, so they sit in the hero as their own tiles. */
.shp-keyinfo {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.shp-keyinfo__item {
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--shp-radius);
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(2px);
}

.shp-keyinfo__label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--shp-accent);
	margin: 0 0 6px;
}

.shp-keyinfo__value {
	display: block;
	font-size: clamp(15px, 1.5vw, 17px);
	font-weight: 700;
	line-height: 1.35;
	color: var(--shp-white);
}

.shp-keyinfo__value small {
	display: block;
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 2px;
}

/* ─── PRICE CARDS ──────────────────────────────────────── */
.shp-prices {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	max-width: 860px;
	margin: 0 auto;
}

.shp-price {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 34px 30px;
	border: 2px solid var(--shp-border);
	border-radius: var(--shp-radius-lg);
	background: var(--shp-white);
	text-align: center;
}

.shp-price--featured {
	border-color: var(--shp-accent);
	box-shadow: 0 18px 44px rgba(0, 117, 231, 0.16);
}

.shp-price__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	padding: 7px 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--shp-white);
	background: var(--shp-accent);
	border-radius: 100px;
}

.shp-price__name {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--shp-muted);
	margin: 0 0 10px;
}

.shp-price__amount {
	font-family: var(--shp-font-condensed);
	font-weight: 900;
	font-size: clamp(52px, 7vw, 76px);
	line-height: 1;
	color: var(--shp-black);
	margin: 0 0 8px;
}

.shp-price--featured .shp-price__amount { color: var(--shp-accent); }

.shp-price__meta {
	font-size: 15px;
	line-height: 1.5;
	color: var(--shp-muted);
	margin: 0;
}

/* ─── LIST GRIDS ───────────────────────────────────────── */
.shp-checklist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.shp-checklist--single { grid-template-columns: 1fr; }

.shp-checklist li {
	position: relative;
	padding-left: 36px;
	font-size: clamp(15px, 1.7vw, 17px);
	line-height: 1.55;
}

/* Tick drawn in CSS so there is no icon-font dependency. */
.shp-checklist li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.15em;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--shp-accent-soft);
}

.shp-checklist li::after {
	content: '';
	position: absolute;
	left: 8px;
	top: 0.42em;
	width: 5px;
	height: 10px;
	border: solid var(--shp-accent);
	border-width: 0 2.5px 2.5px 0;
	transform: rotate(45deg);
}

/* ─── TWO-UP CARDS (included / bring) ──────────────────── */
.shp-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.shp-card {
	padding: 34px 32px;
	border-radius: var(--shp-radius-lg);
	background: var(--shp-white);
	border: 1px solid var(--shp-border);
}

.shp-card--dark {
	background: var(--shp-ink);
	border-color: rgba(255, 255, 255, 0.12);
	color: var(--shp-white);
}

.shp-card__title {
	color: var(--shp-black);
	font-family: var(--shp-font-condensed);
	font-weight: 900;
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1;
	text-transform: uppercase;
	margin: 0 0 18px;
}

.shp-card--dark .shp-card__title { color: var(--shp-white); }
.shp-card--dark .shp-checklist li { color: rgba(255, 255, 255, 0.88); }
.shp-card--dark .shp-checklist li::before { background: rgba(0, 117, 231, 0.24); }

.shp-card__note {
	margin: 20px 0 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--shp-muted);
}

.shp-card--dark .shp-card__note { color: rgba(255, 255, 255, 0.66); }

/* ─── STATEMENT BAND ───────────────────────────────────── */
.shp-statement {
	background: var(--shp-accent);
	color: var(--shp-white);
	text-align: center;
}

.shp-statement__quote {
	text-align: center;
	font-family: var(--shp-font-condensed);
	font-weight: 900;
	font-size: clamp(28px, 4.2vw, 52px);
	line-height: 1.04;
	text-transform: uppercase;
	margin: 0 auto;
	max-width: 22ch;
}

.shp-statement__sub {
	text-align: center;
	margin: 22px auto 0;
	max-width: 56ch;
	font-size: clamp(15px, 1.8vw, 18px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

/* ─── FAQ ──────────────────────────────────────────────── */
/*
 * Native <details>/<summary> — keyboard accessible and works with no JS, and
 * the copy stays editable in Elementor's Text tab.
 */
.shp-faq { max-width: 820px; margin: 0 auto; }

.shp-faq details {
	border-bottom: 1px solid var(--shp-border);
}

.shp-faq summary {
	position: relative;
	display: block;
	padding: 22px 46px 22px 0;
	font-size: clamp(16px, 1.9vw, 19px);
	font-weight: 700;
	line-height: 1.4;
	color: var(--shp-black);
	cursor: pointer;
	list-style: none;
}

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

.shp-faq summary:focus-visible {
	outline: 3px solid var(--shp-accent);
	outline-offset: 2px;
}

/* Plus / minus toggle drawn in CSS. */
.shp-faq summary::before,
.shp-faq summary::after {
	content: '';
	position: absolute;
	right: 8px;
	top: 50%;
	background: var(--shp-accent);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.shp-faq summary::before {
	width: 16px;
	height: 2.5px;
	margin-top: -1.25px;
}

.shp-faq summary::after {
	width: 2.5px;
	height: 16px;
	margin-top: -8px;
	right: 14.75px;
}

.shp-faq details[open] summary::after {
	transform: rotate(90deg);
	opacity: 0;
}

.shp-faq details > *:not(summary) {
	margin: 0 0 22px;
	padding-right: 46px;
	font-size: clamp(15px, 1.7vw, 17px);
	line-height: 1.65;
	color: #344054;
}

/* ─── FINAL CTA ────────────────────────────────────────── */
.shp-final {
	background: var(--shp-ink);
	color: var(--shp-white);
	text-align: center;
}

.shp .shp-final .shp-h2 { color: var(--shp-white); }

.shp-final__details {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 14px;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}

.shp-final__details li {
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 100px;
}

/* ─── ACADEMY MONOGRAM ─────────────────────────────────── */
.shp-academy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	text-align: center;
}

.shp-academy svg {
	width: 92px;
	height: auto;
	display: block;
	/* The monogram's first path is black; currentColor lets it sit on any ground. */
	color: var(--shp-white);
}

.shp-academy__line {
	font-family: var(--shp-font-condensed);
	font-weight: 900;
	font-size: clamp(14px, 1.7vw, 18px);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

/* ─── FLYER ────────────────────────────────────────────── */
.shp-flyer img {
	border-radius: var(--shp-radius-lg);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
	.shp-keyinfo { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
	/* Two short tiles share a row and the two long ones span, so the CTA still
	   lands near the top of the phone screen. */
	.shp-keyinfo {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.shp-keyinfo__item:nth-child(3),
	.shp-keyinfo__item:nth-child(4) {
		grid-column: 1 / -1;
	}

	.shp-keyinfo__item { padding: 14px 16px; }
	.shp-prices { grid-template-columns: 1fr; gap: 26px; }
	.shp-cards { grid-template-columns: 1fr; }
	.shp-checklist { grid-template-columns: 1fr; }
	.shp-card { padding: 26px 22px; }
	.shp-price { padding: 30px 22px; }

	/* Full-width tap targets — most of this traffic is parents on a phone. */
	.shp .shp-cta .elementor-button {
		display: flex;
		width: 100%;
		padding: 19px 24px;
	}

	.shp-hero::before {
		background:
			linear-gradient(180deg, rgba(5, 7, 10, 0.82) 0%, rgba(5, 7, 10, 0.9) 55%, rgba(5, 7, 10, 0.96) 100%),
			linear-gradient(0deg, rgba(0, 117, 231, 0.24) 0%, rgba(0, 117, 231, 0) 60%);
	}

	.shp-faq summary { padding-right: 40px; }
	.shp-faq details > *:not(summary) { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.shp *,
	.shp *::before,
	.shp *::after {
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
	}
}
