.te-enquire-sidebar-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 10102;
}

.te-enquire-sidebar-overlay.is-open {
	display: block;
}

.te-enquire-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: min(100%, 640px);
	height: 100%;
	background: #fff;
	z-index: 10103;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	overflow-x: hidden;
	box-sizing: border-box;
	padding: 48px 55px 40px;
	font-family: "Roboto", sans-serif;
	color: #222;
}

.te-enquire-sidebar.is-open {
	transform: translateX(0);
}

/* The box grew to 44x44 (see the previous 44x44 request) but the "&times;"
   glyph itself is sized by font-size, which was left at 28px — a glyph
   that size reads small/off-center inside a box that much bigger. Bumped
   to fill the box properly, padding removed since flex centering already
   handles alignment. */
.te-enquire-sidebar__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: #333;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	box-sizing: border-box;
}

.te-enquire-sidebar__close:hover {
	color: #555;
}

.te-enquire-sidebar__header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 28px;
	padding-right: 32px;
}

.te-enquire-sidebar__logo {
	flex-shrink: 0;
	width: 150px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.te-enquire-sidebar__logo-img {
	/* Client-supplied roundel is already a complete circular badge (its own
	   ring border baked into the artwork) — fill the box directly rather
	   than the old crop-to-circle treatment used for the rectangular logo. */
	display: block;
	width: 150px;
	height: 150px;
	object-fit: contain;
}

.te-enquire-sidebar__intro {
	flex: 1;
	min-width: 0;
}

.te-enquire-sidebar__title {
	margin: 0;
	padding-right: 30px;
	font-family: "Minion Pro", serif;
	font-size: 44px;
	font-weight: 500;
	line-height: 1.25;
	color: #1a1a1a;
}

/* Moved out from inside .te-enquire-sidebar__intro so it isn't squeezed
   into the intro column's width alongside the logo — it now spans the
   full sidebar width beneath the header (logo + title). */
.te-enquire-sidebar__lead {
	margin: 16px 0 30px;
	font-size: 15px;
	line-height: 1.5;
	color: #444;
}

.te-enquire-sidebar__field {
	margin-bottom: 18px;
}

.te-enquire-sidebar__field label,
.te-enquire-sidebar__field legend {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	color: #222;
}

.te-enquire-sidebar__required {
	color: #c0392b;
}

/* Sitewide field style (matches the brochure request drawer, see
   brochure-request-drawer.css / psd_comparison_methodology memory) — 2px
   #292929 border, 4px radius, 56px-tall single-line fields. Was a much
   lighter 1px #c5ccd3 border with no set height. */
.te-enquire-sidebar__field input[type="text"],
.te-enquire-sidebar__field input[type="email"],
.te-enquire-sidebar__field input[type="tel"],
.te-enquire-sidebar__field select,
.te-enquire-sidebar__field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0 16px;
	border: 2px solid #292929;
	border-radius: 4px;
	background: #fff;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	color: #222;
}

.te-enquire-sidebar__field input[type="text"],
.te-enquire-sidebar__field input[type="email"],
.te-enquire-sidebar__field input[type="tel"] {
	height: 56px;
}

.te-enquire-sidebar__field input[readonly] {
	background: #f7f8f9;
	color: #666;
}

.te-enquire-sidebar__field select {
	height: 56px;
	padding-top: 17px;
	padding-bottom: 17px;
	line-height: normal;
	appearance: auto;
}

.te-enquire-sidebar__field textarea {
	padding: 14px 16px;
	min-height: 120px;
	resize: vertical;
}

.te-enquire-sidebar__field--checkbox {
	margin-bottom: 22px;
}

.te-enquire-sidebar__checkbox-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	cursor: pointer;
	font-size: 15px;
	line-height: 1.45;
	color: #222;
}

/* Native checkbox rendering ignores the `border` property entirely
   (Chromium's themed form control doesn't respect it without appearance
   reset) — confirmed live, computed border stayed 0px despite being set.
   appearance:none unlocks it, which also drops the native check glyph,
   redrawn by hand via ::after. */
.te-enquire-sidebar__checkbox-label input[type="checkbox"] {
	flex-shrink: 0;
	appearance: none;
	-webkit-appearance: none;
	width: 56px;
	height: 56px;
	margin-top: 0;
	border: 2px solid #292929;
	border-radius: 4px;
	background: #fff;
	position: relative;
}

.te-enquire-sidebar__checkbox-label input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 18px;
	top: 9px;
	width: 12px;
	height: 24px;
	border: solid #292929;
	border-width: 0 4px 4px 0;
	transform: rotate(45deg);
}

/* Fieldsets get a default browser border/padding/margin (a grooved 2px
   border plus ~0.35em/0.75em padding) — reset entirely rather than
   overriding just the border, since the leftover UA padding would still
   indent the legend/radio-group unexpectedly. */
.te-enquire-sidebar__field--radio {
	border: 0;
	margin: 0 0 18px;
	padding: 0;
}

/* Legend copy/style pixel-matched to tour page enquiry.psd's "Form
   overlay" group ("Sign Up To Receive News & Updates..." text layer,
   FontSize 32 design-px, FillColor #292929, not bold) at the established
   0.4959 design-to-live scale factor — was 15px #222. */
.te-enquire-sidebar__field--radio legend {
	margin-bottom: 10px;
	padding: 0;
	font-size: 16px;
	color: #292929;
}

.te-enquire-sidebar__field--radio .te-enquire-sidebar__required {
	color: #292929;
}

.te-enquire-sidebar__radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.te-enquire-sidebar__radio-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	cursor: pointer;
	font-size: 15px;
	color: #222;
}

/* Same native-appearance gotcha as the checkbox above — border only takes
   effect once appearance is reset, which also drops the native dot,
   redrawn by hand via ::after. */
.te-enquire-sidebar__radio-label input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 44px;
	height: 44px;
	margin: 0;
	border: 2px solid #292929;
	border-radius: 50%;
	background: #fff;
	position: relative;
}

.te-enquire-sidebar__radio-label input[type="radio"]:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #292929;
	transform: translate(-50%, -50%);
}

/* Sized to match the brochure request drawer's submit button (284x60,
   see brochure-request-drawer.css) — also matches this form's own PSD
   measurement (tour page enquiry.psd, "Form overlay" group, submit button
   ~286x62 live-equivalent at the established 0.4959 scale factor). Was a
   much smaller, content-shrunk 160x46 button. flex-shrink:0 since this
   button sits inside no flex footer here, but kept for parity/safety if
   the markup ever moves into one, matching the brochure button's own
   documented gotcha about GF's flex footer collapsing an unset width. */
.te-enquire-sidebar__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 284px;
	height: 60px;
	margin-top: 4px;
	padding: 0;
	border: 0;
	border-radius: 4px;
	background: #00759b;
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-size: 22px;
	font-weight: 700;
	cursor: pointer;
}

.te-enquire-sidebar__submit:hover {
	background: #006080;
}

.te-enquire-sidebar__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.te-enquire-sidebar__message {
	margin: 12px 0 0;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	line-height: 1.4;
}

.te-enquire-sidebar__message:empty {
	display: none;
}

.te-enquire-sidebar__message.is-success {
	color: #1a7a3a;
}

.te-enquire-sidebar__message.is-error {
	color: #b82105;
}

body.te-enquire-sidebar-open {
	overflow: hidden;
}

@media (max-width: 767px) {
	.te-enquire-sidebar {
		width: 100%;
		padding: 44px 24px 32px;
	}

	.te-enquire-sidebar__header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding-right: 0;
	}

	.te-enquire-sidebar__logo,
	.te-enquire-sidebar__logo-img {
		width: 88px;
		height: 88px;
	}

	.te-enquire-sidebar__title {
		padding-right: 0;
		font-size: 24px;
	}

	.te-enquire-sidebar__submit {
		width: 100%;
		max-width: 284px;
	}
}
