/**
 * Full Day / Tour (v3) landing — V4 design layer.
 * Loaded only when page has ACF flag use_v4_fullday = true (body.t4-fullday).
 * Layers on tour-v4.css: tokens, hero, quick-facts, kicker/titles, gallery,
 * footer, mobar and the .t4-widget__stage booking-form re-skin all come from
 * there. This file adds the page-specific sections + the 2-column booking
 * card geometry + the AirDatepicker re-skin under its own scope.
 */

/* ====================== SECTION SHELL ====================== */
body.t4-fullday .t4fd-section {
	padding: var(--t4-sec) 0;
}
body.t4-fullday .t4fd-section__inner {
	max-width: var(--t4-container);
	margin: 0 auto;
	padding: 0 var(--t4-gutter);
}
body.t4-fullday .t4fd-section__title {
	margin: 10px 0 32px;
}

/* Display title base (mirrors .t4-block__title--display sizing on standalone sections) */
body.t4-fullday .t4fd-section .t4-block__title--display {
	font-family: var(--t4-sans);
	font-size: clamp(var(--t4-fs-h4), 2.4vw, var(--t4-fs-h3));
	line-height: 1.02;
	text-transform: uppercase;
	color: var(--t4-ink);
	font-weight: 800;
}

/* ====================== 01 — INTRO (video + text) ====================== */
body.t4-fullday .t4fd-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
	margin-top: 22px;
}
body.t4-fullday .t4fd-video {
	position: relative;
	display: block;
	border-radius: var(--t4-r-xl);
	overflow: hidden;
	aspect-ratio: 16 / 10;
	box-shadow: var(--t4-sh-md);
	isolation: isolate;
}
body.t4-fullday .t4fd-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 600ms var(--t4-ease);
}
body.t4-fullday .t4fd-video:hover img { transform: scale(1.04); }
body.t4-fullday .t4fd-video::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12,12,12,0) 45%, rgba(12,12,12,0.45) 100%);
	z-index: 1;
}
body.t4-fullday .t4fd-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: var(--t4-red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--t4-sh-red), 0 0 0 10px rgba(255,255,255,0.18);
	transition: transform 220ms var(--t4-ease), background 220ms var(--t4-ease);
	z-index: 2;
}
body.t4-fullday .t4fd-video__play svg { width: 30px; height: 30px; margin-left: 3px; }
body.t4-fullday .t4fd-video:hover .t4fd-video__play {
	transform: translate(-50%, -50%) scale(1.08);
	background: var(--t4-red-dark);
}
body.t4-fullday .t4fd-video:active .t4fd-video__play { transform: translate(-50%, -50%) scale(0.97); }
body.t4-fullday .t4fd-video__hint {
	position: absolute;
	left: 16px;
	bottom: 14px;
	z-index: 2;
	font-family: var(--t4-mono);
	font-size: var(--t4-fs-micro);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(12,12,12,0.55);
	backdrop-filter: blur(4px);
	padding: 7px 12px;
	border-radius: 999px;
}
body.t4-fullday .t4fd-intro__body h2,
body.t4-fullday .t4fd-intro__body h3 {
	font-family: var(--t4-sans);
	font-size: clamp(var(--t4-fs-lg), 2vw, var(--t4-fs-h3));
	line-height: 1.05;
	text-transform: uppercase;
	color: var(--t4-ink);
	font-weight: 800;
	margin: 0 0 18px;
}
body.t4-fullday .t4fd-intro__body p {
	color: var(--t4-body);
	font-size: var(--t4-fs-body);
	line-height: 1.65;
	margin: 0 0 1em;
}
body.t4-fullday .t4fd-intro__body p:last-child { margin-bottom: 0; }

/* ====================== 02 — HIGHLIGHTS ====================== */
body.t4-fullday .t4fd-hl-section { background: var(--t4-bg-1); }
body.t4-fullday .t4fd-hl {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
body.t4-fullday .t4fd-hl__card {
	background: #fff;
	border: 1px solid var(--t4-line);
	border-radius: var(--t4-r-lg);
	padding: 26px 24px;
	box-shadow: var(--t4-sh-sm);
	transition: transform 220ms var(--t4-ease), box-shadow 220ms var(--t4-ease);
}
body.t4-fullday .t4fd-hl__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--t4-sh-md);
}
body.t4-fullday .t4fd-hl__icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--t4-red-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
body.t4-fullday .t4fd-hl__icon svg {
	width: 28px;
	height: 28px;
	display: block;
	fill: var(--t4-red);
}
body.t4-fullday .t4fd-hl__icon svg * { fill: var(--t4-red); }
body.t4-fullday .t4fd-hl__title {
	font-family: var(--t4-sans);
	font-size: var(--t4-fs-body);
	font-weight: 600;
	color: var(--t4-ink);
	margin: 0 0 8px;
	line-height: 1.3;
}
body.t4-fullday .t4fd-hl__desc {
	font-size: var(--t4-fs-small);
	line-height: 1.6;
	color: var(--t4-body);
	margin: 0;
}

/* ====================== FULL-BLEED BANDS (note / target) ====================== */
body.t4-fullday .t4fd-band {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: var(--t4-sec) var(--t4-gutter);
	isolation: isolate;
}
body.t4-fullday .t4fd-band__scrim {
	position: absolute;
	inset: 0;
	background: rgba(12,12,12,0.5);
	z-index: 1;
}
body.t4-fullday .t4fd-band__inner {
	position: relative;
	z-index: 2;
	max-width: var(--t4-content);
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
body.t4-fullday .t4fd-band__kicker {
	color: rgba(255,255,255,0.85);
}
body.t4-fullday .t4fd-band__kicker::before { background: var(--t4-red); }
body.t4-fullday .t4fd-band__title {
	font-family: var(--t4-sans);
	font-weight: 800; /* PJS: Bebas был одновесный */
	font-size: clamp(var(--t4-fs-h2), 4.6vw, var(--t4-fs-h1));
	line-height: 1.02;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
body.t4-fullday .t4fd-band__desc {
	color: rgba(255,255,255,0.9);
	font-size: var(--t4-fs-body);
	margin: 0;
}
body.t4-fullday .t4fd-band__btn { margin-top: 8px; }

/* ====================== 03 — THE ROUTE ====================== */
body.t4-fullday .t4fd-route {
	display: flex;
	flex-direction: column;
	gap: 56px;
	margin-top: 30px;
}
body.t4-fullday .t4fd-stop {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}
body.t4-fullday .t4fd-stop--flip .t4fd-stop__media { order: 2; }
body.t4-fullday .t4fd-stop--flip .t4fd-stop__body { order: 1; }
body.t4-fullday .t4fd-stop__media {
	border-radius: var(--t4-r-xl);
	overflow: hidden;
	aspect-ratio: 16 / 11;
	box-shadow: var(--t4-sh-sm);
}
body.t4-fullday .t4fd-stop__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
body.t4-fullday .t4fd-stop__num {
	font-family: var(--t4-mono);
	font-size: var(--t4-fs-micro);
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--t4-red);
	background: var(--t4-red-tint);
	border: 1px solid rgba(255,40,0,0.18);
	border-radius: 999px;
	padding: 6px 14px;
	display: inline-block;
	margin-bottom: 14px;
}
body.t4-fullday .t4fd-stop__title {
	font-family: var(--t4-sans);
	font-size: clamp(var(--t4-fs-lg), 1.9vw, var(--t4-fs-h4));
	line-height: 1.05;
	text-transform: uppercase;
	color: var(--t4-ink);
	font-weight: 800;
	margin: 0 0 12px;
}
body.t4-fullday .t4fd-stop__text,
body.t4-fullday .t4fd-stop__text p {
	font-size: var(--t4-fs-body);
	line-height: 1.65;
	color: var(--t4-body);
	margin: 0;
}
body.t4-fullday .t4fd-stop__text p { margin-bottom: 1em; }
body.t4-fullday .t4fd-stop__text p:last-child { margin-bottom: 0; }

/* ====================== 04 — BOOKING (re-skinned booking-v3 form) ====================== */
body.t4-fullday .t4fd-booking { background: var(--t4-bg-1); }
body.t4-fullday .t4fd-booking__head { text-align: center; }
body.t4-fullday .t4fd-booking__head .t4-kicker { justify-content: center; }
body.t4-fullday .t4fd-booking .t4fd-section__title { margin-bottom: 36px; }
body.t4-fullday .t4fd-bookcard {
	max-width: 940px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--t4-line);
	border-top: 3px solid var(--t4-red);
	border-radius: var(--t4-r-xl);
	box-shadow: var(--t4-sh-md);
	padding: 34px 38px 30px;
}

/* The form's own header ("Book a tour" h2 + description) is hidden by the stage
   re-skin (built for the widget where the section supplies its own head). Here it
   IS the section head — un-hide and style it V4 so the heading outline matches live. */
body.t4-fullday .t4fd-stage .section-booking__header {
	display: block !important;
	text-align: center;
	margin: 0 0 26px;
	border-left: none; /* legacy .section-header carries a thick red left bar */
	padding-left: 0;
}
body.t4-fullday .t4fd-stage .section-booking__header .section-header__title {
	font-family: var(--t4-sans);
	font-size: clamp(var(--t4-fs-h4), 2.4vw, var(--t4-fs-h3));
	line-height: 1.02;
	text-transform: uppercase;
	color: var(--t4-ink);
	font-weight: 800;
	margin: 0 0 8px;
}
body.t4-fullday .t4fd-stage .section-booking__header .section-header__description {
	font-size: var(--t4-fs-small);
	color: var(--t4-muted);
	max-width: 560px;
	margin: 0 auto;
}

/* Step 1 keeps the original two columns (calendar | details) on desktop —
   the stage re-skin stacks them for the 380px widget; restore a grid here. */
body.t4-fullday .t4fd-stage .booking-step[data-id="step-1"] .booking-step__columns {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 12px 40px;
}

/* Step 2 (checkout) — narrow centered column like the V4 modal */
body.t4-fullday .t4fd-stage .booking-step[data-id="step-2"] .booking-step__columns {
	max-width: 560px;
	margin: 0 auto !important;
}

/* Column step headers ("Select date" / "Select a number" / "Contact info") */
body.t4-fullday .t4fd-stage .booking-step__header { margin: 0 0 12px; }
body.t4-fullday .t4fd-stage .booking-step__column .booking-step__header:not(:first-child) { margin-top: 22px; }

/* --- Time slot (the single .variant injected after a date is picked) --- */
body.t4-fullday .t4fd-stage .variants { margin-top: 14px; }
body.t4-fullday .t4fd-stage .variants p {
	font-size: var(--t4-fs-small) !important;
	color: var(--t4-muted) !important;
	margin: 0;
}
/* Legacy DOM: input is invisible, .variant__text is the visual chip.
   Restyle the chip itself as a V4 slot card (same language as .t4-slot:
   white card, checked = solid red with glow). */
body.t4-fullday .t4fd-stage .variant { display: block; margin: 0 0 8px; }
body.t4-fullday .t4fd-stage .variant .variant__text {
	display: block;
	width: 100%;
	padding: 13px 14px;
	background: #fff;
	border: 1.5px solid var(--t4-line-2);
	border-radius: 10px;
	text-align: center;
	font-family: var(--t4-sans);
	font-size: var(--t4-fs-small);
	font-weight: 600;
	color: var(--t4-ink);
	transition: border-color 160ms var(--t4-ease), background 160ms var(--t4-ease), color 160ms var(--t4-ease), box-shadow 160ms var(--t4-ease);
}
body.t4-fullday .t4fd-stage .variant.available:hover .variant__text {
	border-color: var(--t4-red);
	color: var(--t4-red);
}
body.t4-fullday .t4fd-stage .variant .variant__input:checked + .variant__text {
	background: var(--t4-red);
	border-color: var(--t4-red);
	color: #fff;
	box-shadow: 0 4px 14px rgba(255,40,0,0.3);
}

/* --- Buggy-count dropdown list polish (legacy .field__list mechanics untouched) --- */
body.t4-fullday .t4fd-stage .field__inner { position: relative; }
body.t4-fullday .t4fd-stage .field__list {
	border: 1px solid var(--t4-line);
	border-radius: 10px;
	box-shadow: var(--t4-sh-md);
}
body.t4-fullday .t4fd-stage .field__list-item {
	font-family: var(--t4-sans);
	font-size: var(--t4-fs-small);
	font-weight: 600;
	color: var(--t4-ink);
	padding: 10px 14px;
}
body.t4-fullday .t4fd-stage .field__list-item:hover { background: var(--t4-bg-1); }
body.t4-fullday .t4fd-stage .field__list-item.active,
body.t4-fullday .t4fd-stage .field__list-item.active:hover {
	color: var(--t4-red);
	background: var(--t4-red-tint);
}
/* Chevron on the select — stage hides .field__icon globally; keep it for the dropdown */
body.t4-fullday .t4fd-stage .field__label { position: relative; }
body.t4-fullday .t4fd-stage .field__select { min-height: 46px; cursor: pointer; }

/* --- Calendar container (same look as the approved V4 widget calendar) --- */
body.t4-fullday .t4fd-stage .calendar-container {
	min-height: 320px;
	background: var(--t4-bg-1);
	border: 1px solid var(--t4-line);
	border-radius: 14px;
	padding: 10px 8px;
	margin-top: 4px;
}
body.t4-fullday .t4fd-stage .calendar-preloader {
	background: rgba(250,246,239,0.75);
	border-radius: 14px;
	z-index: 3;
}

/* --- AirDatepicker re-skin — values copied from the approved tour-v4.css rules
       (.t4-widget--cal-only / .t4-bmodal scopes), re-scoped to this page's stage. --- */
body.t4-fullday .t4fd-stage .air-datepicker {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	font-family: var(--t4-sans) !important;
	width: 100% !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-nav {
	background: transparent !important;
	color: var(--t4-ink) !important;
	fill: var(--t4-red) !important;
	border: none !important;
	margin: 0 !important;
	padding: 4px 0 14px !important;
	min-height: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 8px !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-nav--title {
	flex: 1 !important;
	text-align: center !important;
	font-family: var(--t4-sans) !important;
	font-size: var(--t4-fs-body) !important;
	font-weight: 600 !important;
	color: var(--t4-ink) !important;
	letter-spacing: -0.005em !important;
	background: none !important;
	border-radius: 8px;
	padding: 6px 10px !important;
	cursor: pointer;
}
body.t4-fullday .t4fd-stage .air-datepicker-nav--title:hover {
	background: rgba(255,40,0,0.08) !important;
	color: var(--t4-red) !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-nav--action {
	width: 32px !important;
	height: 32px !important;
	min-width: 32px !important;
	background: #fff !important;
	border: 1px solid var(--t4-line-2) !important;
	border-radius: 50% !important;
	padding: 0 !important;
	color: var(--t4-red) !important;
	fill: var(--t4-red) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background 180ms var(--t4-ease), border-color 180ms var(--t4-ease), transform 180ms var(--t4-ease) !important;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-nav--action:hover {
	background: var(--t4-red) !important;
	border-color: var(--t4-red) !important;
	color: #fff !important;
	fill: #fff !important;
	transform: scale(1.05);
}
body.t4-fullday .t4fd-stage .air-datepicker-nav--action:active { transform: scale(0.95); }
body.t4-fullday .t4fd-stage .air-datepicker-nav--action svg {
	width: 14px !important;
	height: 14px !important;
	stroke: currentColor !important;
	fill: currentColor !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-body--day-names {
	margin: 6px 0 4px !important;
	padding: 0 !important;
	border: none !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-body--day-name {
	font-family: var(--t4-mono) !important;
	font-size: var(--t4-fs-micro) !important;
	font-weight: 600 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	color: var(--t4-muted) !important;
	background: none !important;
	padding: 4px 0 !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-body--cells.-days- {
	padding: 0 !important;
	gap: 2px !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-cell {
	font-family: var(--t4-sans) !important;
	font-size: var(--t4-fs-body) !important;
	font-weight: 600 !important;
	color: var(--t4-ink) !important;
	background: transparent !important;
	border: 1.5px solid transparent !important;
	border-radius: 8px !important;
	height: 40px !important;
	letter-spacing: -0.01em !important;
	transition: background 160ms var(--t4-ease), color 160ms var(--t4-ease), border-color 160ms var(--t4-ease) !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-cell.-day-:not(.-disabled-):hover {
	background: #fff !important;
	border-color: var(--t4-line-2) !important;
	color: var(--t4-red) !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-cell.-current- {
	color: var(--t4-red) !important;
	font-weight: 600 !important;
	background: #fff !important;
	border-color: var(--t4-red) !important;
	box-shadow: inset 0 0 0 1px var(--t4-red) !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-cell.-current-:hover {
	background: var(--t4-red) !important;
	color: #fff !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-cell.-current-.-selected- {
	background: var(--t4-red) !important;
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(255,40,0,0.3) !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-cell.-day-.-selected-,
body.t4-fullday .t4fd-stage .air-datepicker-cell.-day-.-selected-.-focus- {
	background: var(--t4-red) !important;
	color: #fff !important;
	border-color: var(--t4-red) !important;
	box-shadow: 0 4px 14px rgba(255,40,0,0.3) !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-cell.-day-.-disabled- {
	color: rgba(12,12,12,0.25) !important;
	cursor: not-allowed !important;
	background: transparent !important;
}
body.t4-fullday .t4fd-stage .air-datepicker-cell.-day-.-other-month-.-disabled- {
	color: rgba(12,12,12,0.15) !important;
}

/* ====================== PARTNERS (logo row) ====================== */
body.t4-fullday .t4fd-partners { padding-bottom: 40px; }
body.t4-fullday .t4fd-partners__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-top: 10px;
}
body.t4-fullday .t4fd-partners__item {
	flex: 1 1 180px;
	max-width: 260px;
	background: #fff;
	border: 1px solid var(--t4-line);
	border-radius: var(--t4-r-lg);
	padding: 22px 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--t4-sh-sm);
	transition: transform 220ms var(--t4-ease), box-shadow 220ms var(--t4-ease);
}
body.t4-fullday .t4fd-partners__item:hover {
	transform: translateY(-3px);
	box-shadow: var(--t4-sh-md);
}
body.t4-fullday .t4fd-partners__item img {
	max-width: 100%;
	max-height: 44px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}
@media (max-width: 640px) {
	body.t4-fullday .t4fd-partners__row { gap: 12px; }
	body.t4-fullday .t4fd-partners__item { flex: 1 1 40%; max-width: none; padding: 16px 18px; }
	body.t4-fullday .t4fd-partners__item img { max-height: 34px; }
}

/* ====================== 06 — REVIEWS ====================== */
body.t4-fullday .t4fd-rev {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
body.t4-fullday .t4fd-rev__card {
	background: #fff;
	border: 1px solid var(--t4-line);
	border-radius: var(--t4-r-lg);
	padding: 26px 24px;
	box-shadow: var(--t4-sh-sm);
	display: flex;
	flex-direction: column;
}
body.t4-fullday .t4fd-rev__headline {
	font-family: var(--t4-sans);
	font-size: var(--t4-fs-body);
	font-weight: 600;
	color: var(--t4-ink);
	line-height: 1.35;
	margin-bottom: 10px;
}
body.t4-fullday .t4fd-rev__text {
	font-size: var(--t4-fs-small);
	line-height: 1.65;
	color: var(--t4-body);
	margin: 0 0 18px;
	flex: 1;
}
body.t4-fullday .t4fd-rev__by {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 14px;
	border-top: 1px solid var(--t4-line);
}
body.t4-fullday .t4fd-rev__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}
body.t4-fullday .t4fd-rev__avatar--initials {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--t4-red-tint);
	color: var(--t4-red);
	font-family: var(--t4-sans);
	font-size: var(--t4-fs-small);
	font-weight: 600;
}
body.t4-fullday .t4fd-rev__name {
	font-family: var(--t4-sans);
	font-size: var(--t4-fs-small);
	font-weight: 600;
	color: var(--t4-ink);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
	body.t4-fullday .t4fd-intro__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	body.t4-fullday .t4fd-hl { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
	body.t4-fullday .t4fd-rev { grid-template-columns: 1fr; gap: 16px; }
	body.t4-fullday .t4fd-stop { gap: 28px; }
	body.t4-fullday .t4fd-stage .booking-step[data-id="step-1"] .booking-step__columns {
		grid-template-columns: 1fr;
		gap: 26px;
	}
	body.t4-fullday .t4fd-bookcard { padding: 26px 24px 22px; }
}

@media (max-width: 768px) {
	body.t4-fullday .t4fd-section { padding: var(--t4-sec) 0; }
	body.t4-fullday .t4fd-band { padding: 72px var(--t4-gutter); }
	body.t4-fullday .t4fd-route { gap: 40px; }
	body.t4-fullday .t4fd-stop {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	body.t4-fullday .t4fd-stop--flip .t4fd-stop__media { order: 0; }
	body.t4-fullday .t4fd-stop--flip .t4fd-stop__body { order: 1; }
	body.t4-fullday .t4fd-stop__media { aspect-ratio: 16 / 10; }
	body.t4-fullday .t4fd-video__play { width: 62px; height: 62px; }
	body.t4-fullday .t4fd-video__play svg { width: 24px; height: 24px; }
	/* Calendar cells — compact (same values as the approved widget's mobile pass) */
	body.t4-fullday .t4fd-stage .air-datepicker-nav { padding: 2px 0 10px !important; gap: 4px !important; }
	body.t4-fullday .t4fd-stage .air-datepicker-nav--title { font-size: 14px !important; padding: 4px 6px !important; }
	body.t4-fullday .t4fd-stage .air-datepicker-cell { font-size: 14px !important; height: 36px !important; }
	body.t4-fullday .t4fd-stage .air-datepicker-body--day-name { font-size: 12px !important; padding: 2px 0 !important; }
	body.t4-fullday .t4fd-stage .air-datepicker-body--cells.-days- { gap: 1px !important; grid-gap: 1px !important; }
	body.t4-fullday .t4fd-stage .air-datepicker-body--day-names { grid-gap: 1px !important; }
	body.t4-fullday .t4fd-bookcard {
		padding: 20px 16px 18px;
		border-radius: var(--t4-r-lg);
	}
}

@media (max-width: 640px) {
	body.t4-fullday .t4fd-hl { grid-template-columns: 1fr; }
}

/* ====================== TOUR UNAVAILABLE NOTICE ======================
   Shown in place of the booking form while booking_buggies_available = 0
   (Full Day departures paused). Remove-safe: form returns via ACF. */
body.t4-fullday .t4fd-unavail {
	text-align: center;
	padding: var(--t4-sec-sm) var(--t4-gutter);
}
body.t4-fullday .t4fd-unavail__badge {
	display: inline-block;
	font-family: var(--t4-font-mono, ui-monospace, monospace);
	font-size: var(--t4-fs-micro);
	letter-spacing: 0.14em;
	color: var(--t4-red);
	border: 1px solid currentColor;
	border-radius: 999px;
	padding: 6px 14px;
	margin-bottom: 18px;
}
body.t4-fullday .t4fd-unavail__title {
	font-family: var(--t4-font-display, 'Bebas Neue', sans-serif);
	font-size: clamp(var(--t4-fs-h3), 4vw, var(--t4-fs-h1));
	line-height: 1.05;
	margin: 0 0 12px;
}
body.t4-fullday .t4fd-unavail__text {
	max-width: var(--t4-measure);
	margin: 0 auto 24px;
	color: var(--t4-muted, #737373);
	font-size: var(--t4-fs-body);
	line-height: 1.6;
}
body.t4-fullday .t4fd-unavail__ctas {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}
/* ghost button is designed for dark hero photos — re-ink it for the cream card */
body.t4-fullday .t4fd-unavail .t4-btn--ghost {
	color: var(--t4-ink, #111);
	border-color: currentColor;
}
body.t4-fullday .t4fd-unavail .t4-btn--ghost:hover {
	color: var(--t4-red);
}
@media (max-width: 640px) {
	body.t4-fullday .t4fd-unavail { padding: 40px 18px; }
	body.t4-fullday .t4fd-unavail__ctas .t4-btn { width: 100%; justify-content: center; }
}
