/**
 * Brooklands Bookings — Frontend Form Styles
 * Mobile-first; matches Brooklands viewing appointment mockups.
 */

/* Global token fallbacks — ensures vars work on elements outside .bwc-app (e.g. modals) */
:root {
	--bwc-green: #295135;
	--bwc-navy: #465375;
	--bwc-disabled: #b5b5b5;
	--bwc-bg-page: #f9f9f9;
	--bwc-bg-card: #ffffff;
	--bwc-border: #cccccc;
	--bwc-text: #241f20;
	--bwc-text-muted: #555555;
	--bwc-radius-field: 8px;
	--bwc-radius-btn: 4px;
	--bwc-transition: 0.2s ease;
	--bwc-font: "Poppins", sans-serif;
	--bwc-fs-heading: 22px;
	--bwc-fs-heading-mobile: 20px;
	--bwc-lh-heading: 26px;
	--bwc-fs-display: 32px;
	--bwc-fs-display-mobile: 24px;
	--bwc-lh-display: 38px;
	--bwc-lh-display-mobile: 28px;
	--bwc-fw-display: 500;
	--bwc-fs-body: 22px;
	--bwc-fs-body-mobile: 16px;
	--bwc-lh-body: 26px;
}

.bwc-app *,
.bwc-app *::before,
.bwc-app *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.bwc-app {
	--bwc-green: #295135;
	--bwc-navy: #465375;
	--bwc-disabled: #b5b5b5;
	--bwc-bg-page: #f9f9f9;
	--bwc-bg-page-mobile: #D5C9C0;
	--bwc-bg-card: #ffffff;
	--bwc-border: #cccccc;
	--bwc-text: #241f20;
	--bwc-text-muted: #9e9e9e;
	--bwc-radius-field: 8px;
	--bwc-radius-btn: 4px;
	--bwc-pad-x: 24px;
	--bwc-transition: 0.2s ease;
	--bwc-font: "Poppins", sans-serif;
	--bwc-lh-heading: 26px;
	--bwc-fs-display: 32px;
	--bwc-lh-display: 38px;
	--bwc-fw-display: 500;
	--bwc-fs-body: 22px;
	--bwc-fs-btn: 16px;
	--bwc-lh-body: 26px;
	--bwc--fw-body: 300;

	font-family: var(--bwc-font);
	color: var(--bwc-text);
	background: var(--bwc-bg-page);
	max-width: none;
	margin: 0;
	position: relative;
	min-height: 100svh;
	--bwc-hero-content-offset-mobile: 42svh;
	--bwc-hero-content-offset: 52svh;

}

.bwc-app h1,
.bwc-app h2,
.bwc-app h3,
.bwc-app p,
.bwc-app a.bwc-btn,
.bwc-app button.bwc-btn {
	font-family: var(--bwc-font);
}

.bwc-hidden {
	display: none !important;
}

/* ── Screens ──────────────────────────────────────────────────────── */
.bwc-screen {
	display: none;
	min-height: 100svh;	
}

.bwc-app[data-state="landing"] .bwc-screen--landing,
.bwc-app[data-state="thankyou"] .bwc-screen--thankyou {
	display: block;
}

.bwc-app[data-state="info"] .bwc-screen--info,
.bwc-app[data-state="form"] .bwc-screen--form {
	display: flex;
	flex-direction: column;
	background: linear-gradient(to bottom, #ffffff 0%, var(--bwc-bg-page) 100%);
}

.bwc-screen--landing {
	min-height: 100svh;
	padding: 0;
	overflow: hidden;
}

.bwc-screen--thankyou {
	min-height: 100svh;
	padding: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

/* Thank-you: full-viewport hero, content in fade zone (scrollable) */
.bwc-screen--thankyou .bwc-hero--stacked {
	min-height: 100svh;
}

.bwc-screen--thankyou .bwc-hero--stacked .bwc-thankyou__content {
	position: relative;
	z-index: 2;
	/* margin-top: calc(var(--bwc-hero-content-offset) + env(safe-area-inset-top, 0px)); */
	margin-top: 300px;
	padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
}

/* ── Hero (landing + thank you) ───────────────────────────────────── */
.bwc-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Full-viewport hero: image cover + copy anchored at bottom (mobile mockup layout) */
.bwc-hero--stacked {
	display: flex;
	flex-direction: column;
	min-height: 100svh;
	background: var(--bwc-bg-page-mobile);	
}

.bwc-hero--stacked .bwc-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.bwc-hero--stacked .bwc-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: scale-down;
	object-position: center -160px;
}

/* For small mobile devices */
@media (max-width: 375px) {
	.bwc-hero--stacked .bwc-hero__img {
		object-position: center -160px;
	}
}

.bwc-hero__media,
.bwc-hero__img {
	display: block;
	width: 100%;
	height: auto;
}

.bwc-hero__gradient {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 58%;
	background: linear-gradient(to bottom, rgba(249, 249, 249, 0) 0%, rgba(249, 249, 249, 0.75) 42%, #f9f9f9 100%);
	pointer-events: none;
	z-index: 1;
}

.bwc-hero--stacked .bwc-hero__gradient {
	height: 68%;
	background: linear-gradient(to bottom, rgba(249, 249, 249, 0) 0%, rgba(249, 249, 249, 0.7) 15%, #f9f9f9 72%);
}

.bwc-hero__overlay-top {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 20%;	
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 60%);
	pointer-events: none;
	z-index: 1;
}

.bwc-hero--stacked .bwc-landing__content {
	position: relative;
	z-index: 2;
	/* margin-top: calc(var(--bwc-hero-content-offset-mobile) + env(safe-area-inset-top, 0px)); */
	margin-top: 300px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

.bwc-hero__logo {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: min(320px, calc(100% - 40px));
	z-index: 2;		
}

.bwc-hero__logo img {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5));
}

/* ── Light header (info + form) ───────────────────────────────────── */
.bwc-light-header {
	background: #fff;
	padding: 28px var(--bwc-pad-x) 20px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.bwc-light-header__logo {
	display: inline-block;
	width: min(280px, 100%);
	height: auto;
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.bwc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 20px;
	border: none;
	border-radius: 0;
	font-family: inherit;	
    font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
	transition: background var(--bwc-transition), opacity var(--bwc-transition);
	letter-spacing: 0.01em;
	text-align: center;
	min-height: 50px;
	max-width: 425px;
	font-size: var(--bwc-fs-btn);
}

.bwc-btn:hover {
	opacity: 0.8;
}

.bwc-btn--full {
	width: 100%;
}

.bwc-btn--half {
	flex: 1 1 0;
	min-width: 0;
	max-width: 385px;
}

.bwc-btn--navy {
	background: var(--bwc-navy);
	color: #fff;
}

.bwc-btn--navy:hover:not(:disabled) {
	background: #3a4a66;
}

.bwc-btn--selector {
	background: var(--bwc-navy);
	color: #fff;
	font-weight: 600;
	justify-content: center;
	position: relative;
	min-height: 50px;
	padding: 12px 16px 12px 44px;
	width: 100%;
}

.bwc-btn--confirm {
	background: var(--bwc-disabled);
	color: #fff;
	font-weight: 600;
	justify-content: center;
	position: relative;
	min-height: 50px;
	padding: 12px 16px 12px 44px;
	width: 100%;
}

.bwc-btn--selector .bwc-btn__icon-img {
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: auto;
	flex-shrink: 0;
}

.bwc-btn--selector-filled {
	background: var(--bwc-green);
}

.bwc-btn--confirm .bwc-btn__icon-img {
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: auto;
}

.bwc-btn--confirm-ready {
	background: var(--bwc-navy);
	cursor: pointer;
}

.bwc-btn--confirm-disabled,
.bwc-btn:disabled.bwc-btn--confirm {
	background: var(--bwc-disabled);
	cursor: not-allowed;
	pointer-events: none;
	opacity: 1;
}

.bwc-btn--disabled,
.bwc-btn:disabled.bwc-btn--selector {
	opacity: 0.55;
	cursor: not-allowed;
	pointer-events: none;
}

.bwc-form__actions span.bwc-btn__label,
.bwc-form__actions span.bwc-btn__text {
	position: relative;
	left: -10px;
}

.bwc-btn--loading {
	opacity: 0.85;
	pointer-events: none;
}

@media (pointer: coarse) {
	.bwc-btn:active:not(:disabled):not(.bwc-btn--disabled) {
		opacity: 0.5;
	}
}

.bwc-spinner {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: bwc-spin 0.7s linear infinite;
	flex-shrink: 0;
}

@keyframes bwc-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ── Landing ───────────────────────────────────────────────────────── */
.bwc-landing__content {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	width: 100%;
	padding: 0 var(--bwc-pad-x);
	text-align: center;
	max-width: 480px;
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.bwc-landing__title {
	font-size: var(--bwc-fs-display-mobile);
	font-weight: var(--bwc-fw-display);
	line-height: var(--bwc-lh-display-mobile);
	color: var(--bwc-green);
	text-shadow: none;
	margin-bottom: 14px;

	span {
		display: block;
		font-weight: 600;
	}
}

.bwc-screen.bwc-screen--landing .bwc-landing__title {
	font-weight: 400;
}

.bwc-landing__sub {
	font-size: var(--bwc-fs-heading-mobile);
	font-weight: 600;
	line-height: var(--bwc-lh-heading);
	color: var(--bwc-navy);
	margin-bottom: 12px;
}

.bwc-landing__body {
	font-size: var(--bwc-fs-body-mobile);
	font-weight: var(--bwc--fw-body);
	line-height: var(--bwc-lh-body);
	color: var(--bwc-text);
	margin-bottom: 18px;
	max-width: 340px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
}

.bwc-landing__body strong {
	font-weight: 600;
}

.bwc-landing__content .bwc-btn--navy {	
	font-weight: 600;
	line-height: var(--bwc-lh-body);
}

/* ── Info ──────────────────────────────────────────────────────────── */
.bwc-info__inner {
	flex: 1;
	width: 100%;
}

.bwc-info__logo-wrap {
	padding: 28px var(--bwc-pad-x) 24px;
	text-align: center;
}

.bwc-info__logo {
	display: inline-block;
	width: min(320px, 100%);
	height: auto;
}

.bwc-info__card {
	background: var(--bwc-bg-card);
	padding: 28px var(--bwc-pad-x);
	text-align: center;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 0%, var(--bwc-bg-page) 18%);
	width: 100%;
}

.bwc-info__heading {
	font-size: var(--bwc-fs-display-mobile);
	font-weight: var(--bwc-fw-display);
	line-height: var(--bwc-lh-display);
	color: var(--bwc-green);
	text-shadow: none;
	margin-bottom: 12px;
	text-align: center;
}

.bwc-info__body {
	font-size: var(--bwc-fs-body-mobile);
	font-weight: var(--bwc--fw-body);
	line-height: var(--bwc-lh-body);
	color: var(--bwc-text);
	max-width: none;
	margin: 0 auto;
}

.bwc-info__body strong {
	font-weight: 600;
}

.bwc-info__actions {
	display: flex;
	flex-direction: column-reverse;
	gap: 16px;
	padding: 16px 0 20px;
	width: 90%;
	margin: 0 auto;
	/* center content */
	justify-content: center;
	overflow-y: auto;
}

.bwc-info__msg-desktop {
	display: none;
}

.bwc-info__msg-mobile {
	display: inline;
}

/* ── Form ────────────────────────────────────────────────────────────── */
.bwc-form__inner {
	flex: 1;
	padding: 22px var(--bwc-pad-x) 40px;
	max-width: 1180px;
	margin: 0 auto;
	width: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 0%, var(--bwc-bg-page) 5%);
}

.bwc-form__title {
	font-size: var(--bwc-fs-display-mobile);
	font-weight: var(--bwc-fw-display);
	line-height: var(--bwc-lh-display);
	color: var(--bwc-green);
	text-align: center;	
}

.bwc-form__sub {
	font-size: var(--bwc-fs-body-mobile);
	font-weight: var(--bwc--fw-body);
	line-height: var(--bwc-lh-body);
	color: var(--bwc-text);
	text-align: center;
	margin-bottom: 38px;
	max-width: 710px;
	margin-left: auto;
	margin-right: auto;
}

.bwc-form__actions {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 20px;
}

/* ── Fields ────────────────────────────────────────────────────────── */
.bwc-field {
	margin-bottom: 30px;
	max-width: 690px;
	margin-left: auto;
	margin-right: auto;
	/* fieldset: owns the border so legend notches it natively */
	border: 2px solid var(--bwc-border);
	border-radius: var(--bwc-radius-field);
	padding: 0 14px 10px;
	min-width: 0;
	transition: border-color var(--bwc-transition);
}

.bwc-field:focus-within {
	border-color: var(--bwc-text);
}

.bwc-field--error {
	border-color: #c62828 !important;
}

.bwc-input {
	width: 100%;
	height: 34px;
	padding: 6px 0;
	border: none;
	border-radius: 0;
	font-family: inherit;
	font-size: 15px;
	background: transparent;
	color: var(--bwc-text);
	appearance: none;
	display: block;
}

.bwc-input:focus {
	outline: none;
}

.bwc-input::placeholder {
	color: transparent;
	opacity: 0;
}

.bwc-label {
  font-size: 16px;
  width: auto;
  font-weight: 400;
  color: var(--bwc-text-muted);
  padding: 0px 14px 0px 4px;
  line-height: 1;
  margin-left: 8px;
  margin-top: -12px;
  background: rgb(252, 252, 252) !important;
}

/* .bwc-input--error removed — error state now on .bwc-field--error (fieldset) */

.bwc-field-error {
	display: block;
	font-size: 16px;
	color: #c62828;
	margin-top: 4px;
	padding-left: 2px;
}

/* ── Slot warning / form error ─────────────────────────────────────── */
.bwc-slot-warning {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff8e1;
	border: 1px solid #f9a825;
	border-radius: var(--bwc-radius-field);
	padding: 10px 14px;
	font-size: 14px;
	margin-bottom: 12px;
}

.bwc-slot-warning__icon {
	font-weight: 700;
	flex-shrink: 0;
}

.bwc-form__error {
	color: #c62828;
	font-size: 14px;
	margin-top: 16px;
	text-align: center;
}

/* ── Thank you ───────────────────────────────────────────────────────── */
.bwc-thankyou__content {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	width: 100%;
	padding: 0 var(--bwc-pad-x);
	text-align: center;
	max-width: 560px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.bwc-thankyou__title {
	font-size: var(--bwc-fs-display-mobile);
	font-weight: var(--bwc-fw-display);
	line-height: 29px;
	color: var(--bwc-green);
	text-shadow: none;
	margin-bottom: 0;
}

.bwc-thankyou__body {
	font-size: var(--bwc-fs-body-mobile);
	font-weight: var(--bwc--fw-body);
	line-height: var(--bwc-lh-body);
	color: var(--bwc-text);
	margin-bottom: 0;
}

.bwc-thankyou__slot {
	font-size: var(--bwc-fs-heading);
	font-weight: 600;
	line-height: var(--bwc-lh-heading);
	color: var(--bwc-navy);
	margin-bottom: 0;
}

.bwc-thankyou__pipe {
	color: #c0c0c0;
	font-weight: 400;
}

.bwc-thankyou__cta {
	font-size: var(--bwc-fs-heading-mobile);
	font-weight: 500;
	line-height: var(--bwc-lh-heading);
	color: var(--bwc-navy);
	margin-bottom: 0;
}

.bwc-thankyou__sub {
	font-size: var(--bwc-fs-body-mobile);
	font-weight: var(--bwc--fw-body);
	line-height: var(--bwc-lh-body);
	color: var(--bwc-text);
	margin-bottom: 0;
}

.bwc-thankyou__sub--bold {
	font-weight: 500;
}

.bwc-thankyou__sub.bwc-thankyou__sub--bold {
	padding: 0 60px;
}

.bwc-thankyou__content .bwc-btn--navy {
	line-height: var(--bwc-lh-body);
	min-height: 52px;
	width: auto;
	min-width: 350px;
	padding-left: 40px;
	padding-right: 40px;
}

/* ── Modals ──────────────────────────────────────────────────────────── */
.bwc-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.bwc-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.bwc-modal__box {
	position: relative;
	background: #fff;
	width: 100%;
	max-width: 480px;
	border-radius: 12px 12px 0 0;
	padding: 24px 20px 40px;
	max-height: 75vh;
	overflow-y: auto;
	z-index: 1;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.bwc-modal__close {
	position: absolute;
	top: 14px;
	right: 16px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	z-index: 10;
	pointer-events: auto;
	color: var(--bwc-text-muted);
	padding: 4px 8px;
}

.bwc-modal__title {
	font-size: var(--bwc-fs-display-mobile);
	font-weight: var(--bwc-fw-display);
	line-height: var(--bwc-lh-display);
	color: var(--bwc-green);
	margin-bottom: 18px;	
	text-align: center;
}

.bwc-date-list,
.bwc-time-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bwc-date-list__item,
.bwc-time-list__item {
	padding: 14px 16px;
	border: 1px solid var(--bwc-border);
	border-radius: var(--bwc-radius-field);
	cursor: pointer;
	font-size: 15px;
	color: var(--bwc-text);
	background: #fff;
	transition: background var(--bwc-transition), border-color var(--bwc-transition);
}

.bwc-date-list__item:hover,
.bwc-time-list__item:hover {
	border-color: var(--bwc-navy);
	background: #f5f6f8;
}

.bwc-date-list__item.bwc-selected,
.bwc-time-list__item.bwc-selected {
	background: var(--bwc-green);
	color: #fff;
	border-color: var(--bwc-green);
}

.bwc-time-list__item--unavailable {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

.bwc-time-list__item--rolling {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-left: 3px solid var(--bwc-green);
}

.bwc-time-list__badge {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--bwc-green);
	background: color-mix(in srgb, var(--bwc-green) 10%, transparent);
	padding: 3px 8px;
	border-radius: 20px;
	white-space: nowrap;
	flex-shrink: 0;
}

.bwc-time-list__item--rolling.bwc-selected .bwc-time-list__badge {
	color: #fff;
	background: rgba(255, 255, 255, 0.25);
}

/* ── Choice modal ──────────────────────────────────────────────────── */
.bwc-choice__options {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bwc-choice__btn {
	width: 100%;
	min-height: 52px;
	font-size: 16px;
	font-weight: 600;
	max-width: 100%;
}

.bwc-choice__btn--outline {
	background: transparent;
	border: 2px solid var(--bwc-navy);
	color: var(--bwc-navy);
}

.bwc-choice__btn--outline:hover {
	background: var(--bwc-navy);
	color: #fff;	
}

.bwc-choice__next-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--bwc-text-muted);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
}

.bwc-choice__preview {
	font-size: 20px;
	font-weight: 600;
	color: var(--bwc-text);
	text-align: center;
	margin: -8px 0 0;
	min-height: 24px;
}

.bwc-modal__empty {
	font-size: 14px;
	color: var(--bwc-text-muted);
	text-align: center;
	padding: 16px 0;
}

body.bwc-no-scroll,
body.bwc-modal-open {
	overflow: hidden;
}

/* ── Desktop ───────────────────────────────────────────────────────── */
@media (min-width: 768px) {
	.bwc-landing__title {
		line-height: var(--bwc-lh-display);

		span {
			font-weight: 500;
			display: inline-block;
		}
	}

	.bwc-landing__title,
	.bwc-info__heading,
	.bwc-form__title,
	.bwc-thankyou__title,
	.bwc-modal__title {
		font-size: var(--bwc-fs-display);
	}

	.bwc-landing__sub {
		font-size: var(--bwc-fs-heading);
		font-weight: 700;
	}

	.bwc-landing__body,
	.bwc-info__body,
	.bwc-form__sub,
	.bwc-thankyou__body,
	.bwc-thankyou__sub {
		font-size: var(--bwc-fs-body);
	}

	.bwc-form__sub {
		margin-bottom: 58px;
	}

	.bwc-thankyou__slot,
	.bwc-thankyou__cta {
		font-size: var(--bwc-fs-heading);
	}

	.bwc-thankyou__sub--bold {
		font-weight: 600;
	}

	.while-you-wait {
		font-style: italic;
		margin-top: -25px;
		color: var(--bwc-navy);
	}

	.bwc-hero__gradient {
		background: unset;
	}
	
	.bwc-form__inner,
	.bwc-hero--stacked .bwc-hero__gradient {
		background: none;
	}

	.bwc-thankyou__content .bwc-btn--navy {
		max-width: 440px;
	}

	.bwc-landing__body strong {
		display: inline;
	}

	.bwc-thankyou__sub.bwc-thankyou__sub--bold {
		padding: 0 30px;
	}

	.bwc-input {
		height: 44px;
	}

	.bwc-field {
		margin-bottom: 40px;
	}

	.bwc-hero__logo {
		top: 45px;
		width: min(620px, calc(100% - 64px));
	}

	.bwc-hero--stacked {
		background: var(--bwc-bg-page);
	}

	.bwc-hero--stacked .bwc-hero__img {
		object-fit: cover;
		object-position: center 36%;
	}

	.bwc-hero--stacked .bwc-landing__content,
	.bwc-screen--thankyou .bwc-hero--stacked .bwc-thankyou__content {
		max-width: 1170px;
		gap: 44px;
		margin-top: calc(var(--bwc-hero-content-offset) + env(safe-area-inset-top, 0px));
	}

	.bwc-screen--thankyou .bwc-hero--stacked .bwc-thankyou__content {
		padding-bottom: calc(44px + env(safe-area-inset-bottom, 0px));
		margin-left: auto;
		margin-right: auto;
	}

	.bwc-landing__body {
		max-width: 780px;
	}

	.bwc-info__inner {
		padding: 0 40px 64px;
		max-width: 1120px;
		margin-left: auto;
		margin-right: auto;		
	}

	.bwc-info__logo-wrap {
		padding: 46px 40px 62px;		
	}

	.bwc-info__logo {
		width: min(620px, 100%);
	}

	.bwc-info__card {
		border-radius: 16px;
		padding: 22px 48px;
		box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
		border-radius: 18px;
		background: unset;
		margin-bottom: 12px;
	}

	.bwc-info__actions {
		flex-direction: row;
		padding-top: 80px;
		justify-content: center;
		width: 100%;
		gap: 32px;
	}

	.bwc-info__msg-desktop {
		display: inline;
	}

	.bwc-info__msg-mobile {
		display: none;
	}

	.bwc-form__actions {
		margin-top: 50px;
		flex-direction: row;
		align-items: stretch;
		width: 100%;
	}

	.bwc-form__actions .bwc-btn--selector,
	.bwc-form__actions .bwc-btn--confirm {
		flex: 1 1 0;
		min-width: 0;
	}

	.bwc-modal {
		align-items: center;
		padding: 24px;
	}

	.bwc-modal__box {
		border-radius: 12px;
		max-height: 80vh;
	}

	.bwc-form__privacy {
		margin-top: 40px;
	}
}

/* Prevent iOS Safari from auto-zooming inputs with font-size < 16px */
@media (pointer: coarse) {
	.bwc-input {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bwc-spinner {
		animation: none;
		opacity: 0.6;
	}

	.bwc-btn,
	.bwc-input,
	.bwc-label,
	.bwc-date-list__item,
	.bwc-time-list__item {
		transition: none;
	}
}

.grecaptcha-badge {
	display: none;
}

#enquireModal .wpforms-submit {
	width: 100%;
}

.bwc-form__privacy {
	margin-top: 20px;
}

.bwc-form__privacy-text {
	text-align: center;
	
	a {
		text-decoration: none;		
	}
}