.atzcp-portal-document {
	background:
		radial-gradient(circle at 90% 4%, rgba(217, 240, 239, 0.7), transparent 24%),
		#fff;
	color: #20373a;
	font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 0;
	min-height: 100vh;
}

.atzcp-app {
	--atzcp-teal: #167d7a;
	--atzcp-teal-dark: #0f5c5a;
	--atzcp-coral: #e97861;
	--atzcp-coral-dark: #d25a42;
	--atzcp-gold: #f4c76b;
	--atzcp-mist: #d9f0ef;
	--atzcp-ivory: #fff9f3;
	--atzcp-ink: #20373a;
	--atzcp-muted: #667b7e;
	--atzcp-line: #c3e4e2;
	--atzcp-shadow: 0 24px 70px rgba(32, 55, 58, 0.12);
	box-sizing: border-box;
	color: var(--atzcp-ink);
	font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
	margin: clamp(24px, 5vw, 72px) auto;
	max-width: 1120px;
	padding: 0 clamp(16px, 4vw, 36px);
}

.atzcp-app *,
.atzcp-app *::before,
.atzcp-app *::after {
	box-sizing: inherit;
}

.atzcp-card {
	background: linear-gradient(145deg, #fff 0%, var(--atzcp-ivory) 100%);
	border: 1px solid rgba(22, 125, 122, 0.12);
	border-radius: 28px;
	box-shadow: var(--atzcp-shadow);
	overflow: hidden;
	position: relative;
}

.atzcp-hero,
.atzcp-auth-card,
.atzcp-status-card,
.atzcp-list-card {
	padding: clamp(32px, 7vw, 76px);
}

.atzcp-hero {
	background:
		radial-gradient(circle at 92% 8%, rgba(244, 199, 107, 0.34), transparent 22%),
		linear-gradient(140deg, #fff 0%, var(--atzcp-ivory) 55%, var(--atzcp-mist) 150%);
}

.atzcp-hero__mark {
	height: 72px;
	position: absolute;
	right: clamp(24px, 6vw, 68px);
	top: clamp(24px, 6vw, 58px);
	width: 72px;
}

.atzcp-hero__mark span {
	background: var(--atzcp-teal);
	border-radius: 99px;
	display: block;
	left: 29px;
	position: absolute;
	top: 0;
	height: 72px;
	width: 14px;
}

.atzcp-hero__mark span:last-child {
	transform: rotate(90deg);
}

.atzcp-eyebrow {
	color: var(--atzcp-teal-dark);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.atzcp-app h1 {
	color: var(--atzcp-ink);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(2.5rem, 7vw, 5.25rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 0.98;
	margin: 0;
	max-width: 720px;
}

.atzcp-auth-card h1,
.atzcp-status-card h1,
.atzcp-list-card h1 {
	font-size: clamp(2.2rem, 5vw, 4rem);
}

.atzcp-lede {
	color: var(--atzcp-muted);
	font-size: clamp(1rem, 2vw, 1.22rem);
	margin: 24px 0 0;
	max-width: 660px;
}

.atzcp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.atzcp-button,
.atzcp-login-form #wp-submit {
	align-items: center;
	appearance: none;
	border: 2px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 0.94rem;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.01em;
	min-height: 52px;
	padding: 12px 25px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.atzcp-button--primary,
.atzcp-login-form #wp-submit {
	background: var(--atzcp-teal);
	color: #fff;
}

.atzcp-button--primary:hover,
.atzcp-login-form #wp-submit:hover {
	background: var(--atzcp-teal-dark);
	color: #fff;
	transform: translateY(-1px);
}

.atzcp-button--secondary {
	background: transparent;
	border-color: var(--atzcp-line);
	color: var(--atzcp-teal-dark);
}

.atzcp-button--secondary:hover {
	background: var(--atzcp-mist);
	border-color: var(--atzcp-teal);
	color: var(--atzcp-teal-dark);
}

.atzcp-button--warm {
	background: #fcf0da;
	border-color: rgba(244, 199, 107, 0.8);
	color: var(--atzcp-ink);
}

.atzcp-button--warm:hover {
	background: var(--atzcp-gold);
	border-color: var(--atzcp-gold);
	color: var(--atzcp-ink);
}

.atzcp-button:focus-visible,
.atzcp-login-roles a:focus-visible,
.atzcp-login-form input:focus-visible,
.atzcp-recovery-form input:focus-visible,
.atzcp-text-link:focus-visible {
	box-shadow: 0 0 0 4px rgba(244, 199, 107, 0.62);
	outline: 2px solid var(--atzcp-teal-dark);
	outline-offset: 2px;
}

.atzcp-helper {
	color: var(--atzcp-muted);
	font-size: 0.92rem;
	margin: 22px 0 0;
}

.atzcp-trust {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 18px;
}

.atzcp-trust > div {
	background: #fff;
	border: 1px solid var(--atzcp-line);
	border-radius: 20px;
	display: grid;
	grid-template-columns: 38px 1fr;
	padding: 20px;
}

.atzcp-trust__icon {
	align-items: center;
	background: var(--atzcp-mist);
	border-radius: 50%;
	color: var(--atzcp-teal-dark);
	display: inline-flex;
	font-weight: 900;
	grid-row: 1 / 3;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.atzcp-trust strong {
	font-size: 0.94rem;
}

.atzcp-trust small {
	color: var(--atzcp-muted);
	display: block;
	font-size: 0.78rem;
	line-height: 1.45;
	margin-top: 3px;
}

.atzcp-auth-card {
	margin: 0 auto;
	max-width: 650px;
}

.atzcp-login-roles {
	background: rgba(217, 240, 239, 0.62);
	border: 1px solid var(--atzcp-line);
	border-radius: 999px;
	display: grid;
	gap: 5px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 0 34px;
	padding: 5px;
}

.atzcp-login-roles a {
	border-radius: 999px;
	color: var(--atzcp-muted);
	font-size: 0.84rem;
	font-weight: 800;
	padding: 11px 16px;
	text-align: center;
	text-decoration: none;
}

.atzcp-login-roles a:hover {
	color: var(--atzcp-teal-dark);
}

.atzcp-login-roles a.is-active {
	background: #fff;
	box-shadow: 0 6px 20px rgba(32, 55, 58, 0.1);
	color: var(--atzcp-teal-dark);
}

.atzcp-login-form {
	margin-top: 30px;
}

.atzcp-login-form p {
	margin: 0 0 18px;
}

.atzcp-login-form label {
	color: var(--atzcp-ink);
	display: block;
	font-size: 0.86rem;
	font-weight: 800;
	margin-bottom: 7px;
}

.atzcp-login-form input[type="text"],
.atzcp-login-form input[type="password"],
.atzcp-recovery-form input[type="text"] {
	background: #fff;
	border: 1px solid var(--atzcp-line);
	border-radius: 12px;
	color: var(--atzcp-ink);
	font: inherit;
	min-height: 52px;
	padding: 11px 14px;
	width: 100%;
}

.atzcp-recovery-form {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.atzcp-recovery-form label {
	font-size: 0.86rem;
	font-weight: 800;
}

.atzcp-recovery-form .atzcp-button {
	justify-self: start;
	margin-top: 8px;
}

.atzcp-neutral-notice {
	background: var(--atzcp-mist);
	border: 1px solid var(--atzcp-line);
	border-radius: 14px;
	display: grid;
	gap: 4px;
	margin-top: 28px;
	padding: 18px;
}

.atzcp-neutral-notice span {
	color: var(--atzcp-muted);
}

.atzcp-login-form .login-remember {
	display: none;
}

.atzcp-text-link {
	color: var(--atzcp-teal-dark);
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 800;
	margin-top: 4px;
}

.atzcp-login-links {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	justify-content: space-between;
}

.atzcp-privacy-note {
	background: var(--atzcp-mist);
	border-radius: 14px;
	display: grid;
	font-size: 0.82rem;
	gap: 2px;
	margin-top: 28px;
	padding: 16px 18px;
}

.atzcp-status-card {
	margin: 0 auto;
	max-width: 780px;
	text-align: center;
}

.atzcp-status-card .atzcp-lede {
	margin-left: auto;
	margin-right: auto;
}

.atzcp-status-card .atzcp-button {
	margin-top: 30px;
}

.atzcp-status-card__symbol {
	align-items: center;
	background: var(--atzcp-mist);
	border-radius: 50%;
	display: inline-flex;
	height: 64px;
	justify-content: center;
	margin-bottom: 24px;
	width: 64px;
}

.atzcp-status-card__symbol span {
	border: 3px solid var(--atzcp-teal);
	border-radius: 50% 50% 46% 54%;
	height: 24px;
	transform: rotate(32deg);
	width: 18px;
}

.atzcp-status--warning .atzcp-status-card__symbol {
	background: #fbe6e0;
}

.atzcp-status--warning .atzcp-status-card__symbol span {
	border-color: var(--atzcp-coral-dark);
}

.atzcp-area-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
}

.atzcp-area-grid li {
	align-items: center;
	background: #fff;
	border: 1px solid var(--atzcp-line);
	border-radius: 14px;
	display: flex;
	font-weight: 800;
	gap: 12px;
	padding: 14px;
}

.atzcp-area-grid span {
	align-items: center;
	background: var(--atzcp-teal);
	border-radius: 10px;
	color: #fff;
	display: inline-flex;
	font-size: 0.72rem;
	height: 34px;
	justify-content: center;
	letter-spacing: 0.08em;
	width: 42px;
}

@media (max-width: 760px) {
	.atzcp-hero__mark {
		height: 48px;
		width: 48px;
	}

	.atzcp-hero__mark span {
		height: 48px;
		left: 20px;
		width: 9px;
	}

	.atzcp-hero h1 {
		max-width: 82%;
	}

	.atzcp-trust,
	.atzcp-area-grid {
		grid-template-columns: 1fr;
	}

	.atzcp-home-actions .atzcp-button {
		flex: 1 1 180px;
	}
}

@media (max-width: 480px) {
	.atzcp-home-actions,
	.atzcp-login-links {
		flex-direction: column;
	}

	.atzcp-home-actions .atzcp-button {
		flex-basis: auto;
		width: 100%;
	}

	.atzcp-login-roles a {
		font-size: 0.78rem;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.atzcp-app * {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Transactional booking and staff MFA surfaces. */
.atzcp-booking,
.atzcp-auth {
	--atzcp-teal: #167d7a;
	--atzcp-teal-dark: #0f5c5a;
	--atzcp-coral: #e97861;
	--atzcp-coral-dark: #d25a42;
	--atzcp-gold: #f4c76b;
	--atzcp-mist: #d9f0ef;
	--atzcp-ivory: #fff9f3;
	--atzcp-ink: #20373a;
	--atzcp-muted: #667b7e;
	--atzcp-line: #c3e4e2;
	box-sizing: border-box;
	color: var(--atzcp-ink);
	font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.atzcp-booking *,
.atzcp-booking *::before,
.atzcp-booking *::after,
.atzcp-auth *,
.atzcp-auth *::before,
.atzcp-auth *::after { box-sizing: inherit; }

.atzcp-booking {
	display: grid;
	grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
	gap: clamp(22px, 4vw, 58px);
	width: min(1240px, calc(100% - 32px));
	margin: clamp(24px, 5vw, 68px) auto;
	align-items: start;
}

.atzcp-booking__intro { position: sticky; top: 30px; padding: clamp(8px, 2vw, 22px); }
.atzcp-public-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--atzcp-ink); text-decoration: none; }
.atzcp-public-brand .atzcp-brand-mark { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--atzcp-teal); color: #fff; font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; }
.atzcp-public-brand .atzcp-brand-mark span { color: var(--atzcp-gold); }
.atzcp-public-brand strong,.atzcp-public-brand small { display: block; }
.atzcp-public-brand strong { font-size: .96rem; }
.atzcp-public-brand small { margin-top: 2px; color: var(--atzcp-muted); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }
.atzcp-booking__intro>.atzcp-eyebrow { margin-top: clamp(38px, 7vw, 76px); }
.atzcp-booking__intro h1 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.9rem, 5vw, 4.5rem); font-weight: 600; letter-spacing: -.035em; line-height: .98; }
.atzcp-booking__intro>p:not(.atzcp-eyebrow) { max-width: 430px; color: var(--atzcp-muted); font-size: .98rem; line-height: 1.7; }

.atzcp-booking-progress { display: grid; gap: 11px; margin: 38px 0 0; padding: 0; list-style: none; }
.atzcp-booking-progress li { display: flex; align-items: center; gap: 11px; color: #8a999b; font-size: .78rem; font-weight: 700; }
.atzcp-booking-progress li span { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid #cbdad9; border-radius: 50%; background: #fff; font-size: .7rem; }
.atzcp-booking-progress li.is-active { color: var(--atzcp-teal-dark); }
.atzcp-booking-progress li.is-active span { border-color: var(--atzcp-teal); background: var(--atzcp-teal); color: #fff; }

.atzcp-booking__card,.atzcp-auth__card { padding: clamp(24px, 5vw, 48px); border: 1px solid rgba(22,125,122,.15); border-radius: 25px; background: #fff; box-shadow: 0 25px 80px rgba(32,55,58,.12); }
.atzcp-booking-step[hidden] { display: none !important; }
.atzcp-step-heading { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 27px; }
.atzcp-step-heading>span { display: grid; place-items: center; flex: 0 0 40px; height: 40px; border-radius: 12px; background: var(--atzcp-mist); color: var(--atzcp-teal-dark); font-size: .75rem; font-weight: 800; }
.atzcp-step-heading h2 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.8rem, 4vw, 2.45rem); font-weight: 600; line-height: 1.08; }
.atzcp-step-heading p { margin: 7px 0 0; color: var(--atzcp-muted); font-size: .85rem; line-height: 1.55; }
.atzcp-option-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px; }
.atzcp-choice-card,.atzcp-segmented button,.atzcp-slot-card { border: 1px solid #d6e3e2; border-radius: 13px; background: #fff; color: var(--atzcp-ink); cursor: pointer; transition: border-color .17s,box-shadow .17s,transform .17s,background .17s; }
.atzcp-choice-card { display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 14px 16px; text-align: left; }
.atzcp-choice-card strong { font-size: .9rem; }
.atzcp-choice-card span { display: grid; place-items: center; width: 39px; height: 29px; border-radius: 8px; background: #f1f6f5; color: var(--atzcp-teal-dark); font-size: .7rem; font-weight: 800; }
.atzcp-choice-card:hover,.atzcp-segmented button:hover,.atzcp-slot-card:hover { border-color: var(--atzcp-teal); transform: translateY(-1px); }
.atzcp-choice-card.is-selected,.atzcp-segmented button.is-selected,.atzcp-slot-card.is-selected { border-color: var(--atzcp-teal); background: #f1fbf9; box-shadow: 0 0 0 3px rgba(22,125,122,.11); }
.atzcp-booking-field { display: grid; gap: 7px; margin-top: 18px; }
.atzcp-booking-field>label,.atzcp-booking-field>span,.atzcp-field-label,.atzcp-booking-step label>span,.atzcp-auth label>span { color: #4c6265; font-size: .72rem; font-weight: 800; letter-spacing: .04em; }
.atzcp-booking select,.atzcp-booking input,.atzcp-auth input { width: 100%; min-height: 50px; padding: 11px 13px; border: 1px solid #cbdad9; border-radius: 11px; background: #fff; color: var(--atzcp-ink); font: inherit; outline: none; }
.atzcp-booking input:focus,.atzcp-booking select:focus,.atzcp-auth input:focus { border-color: var(--atzcp-teal); box-shadow: 0 0 0 4px rgba(22,125,122,.11); }
.atzcp-segmented { display: flex; gap: 8px; }
.atzcp-segmented button { min-height: 43px; padding: 0 17px; font-weight: 700; }
.atzcp-slot-status { margin-bottom: 13px; color: var(--atzcp-muted); font-size: .82rem; }
.atzcp-slot-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; max-height: 410px; padding: 3px; overflow-y: auto; }
.atzcp-slot-card { display: grid; gap: 3px; padding: 14px; text-align: left; }
.atzcp-slot-card strong { font-size: .84rem; }
.atzcp-slot-card span { color: var(--atzcp-teal-dark); font-size: .78rem; font-weight: 700; }
.atzcp-slot-card small { color: var(--atzcp-muted); font-size: .68rem; }
.atzcp-field-grid { display: grid; gap: 14px; }
.atzcp-field-grid--two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.atzcp-field-grid label { display: grid; gap: 6px; }
.atzcp-field-grid small { color: var(--atzcp-muted); font-size: .67rem; }
.atzcp-signed-in-note { display: grid; gap: 2px; padding: 17px; border-radius: 13px; background: var(--atzcp-mist); }
.atzcp-signed-in-note strong { font-size: .9rem; }
.atzcp-signed-in-note span { color: var(--atzcp-muted); font-size: .78rem; }
.atzcp-consent-list { display: grid; gap: 9px; margin-top: 21px; padding: 16px; border-radius: 13px; background: var(--atzcp-ivory); }
.atzcp-consent-list label { display: flex; align-items: flex-start; gap: 9px; }
.atzcp-consent-list input { flex: 0 0 17px; width: 17px; min-height: 17px; margin-top: 2px; accent-color: var(--atzcp-teal); }
.atzcp-consent-list label span { font-size: .76rem; font-weight: 600; line-height: 1.45; }
.atzcp-booking-summary { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--atzcp-line); border-radius: 14px; background: var(--atzcp-line); }
.atzcp-booking-summary>div { display: grid; gap: 3px; padding: 14px 16px; background: #fff; }
.atzcp-booking-summary span { color: var(--atzcp-muted); font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.atzcp-booking-summary strong { font-size: .84rem; }
.atzcp-dialog__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 25px; padding-top: 18px; border-top: 1px solid #e5eceb; }
.atzcp-public-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 21px; border: 1px solid transparent; border-radius: 11px; background: var(--atzcp-coral); color: #fff; font: inherit; font-size: .8rem; font-weight: 800; text-decoration: none; cursor: pointer; box-shadow: 0 9px 20px rgba(147,66,48,.16); }
.atzcp-public-button:hover { background: var(--atzcp-coral-dark); }
.atzcp-public-button--secondary { border-color: var(--atzcp-line); background: #fff; color: var(--atzcp-teal-dark); box-shadow: none; }
.atzcp-public-button:disabled,.atzcp-public-button.is-loading,.atzcp-slot-card.is-loading { opacity: .58; cursor: wait; transform: none; }
.atzcp-public-button:focus-visible,.atzcp-choice-card:focus-visible,.atzcp-segmented button:focus-visible,.atzcp-slot-card:focus-visible { outline: 3px solid var(--atzcp-gold); outline-offset: 2px; }
.atzcp-booking-alert,.atzcp-operation-notice { display: grid; gap: 3px; margin-bottom: 18px; padding: 14px 16px; border: 1px solid #efc9c1; border-radius: 12px; background: #fff0ed; color: #923824; font-size: .78rem; }
.atzcp-operation-notice--success { border-color: #bfe2d7; background: #e9f7f2; color: #17684d; }

.atzcp-auth { display: grid; grid-template-columns: minmax(270px,.8fr) minmax(400px,1.2fr); gap: clamp(25px,6vw,82px); width: min(1050px,calc(100% - 32px)); margin: clamp(28px,7vw,90px) auto; align-items: center; }
.atzcp-auth__brand>.atzcp-eyebrow { margin-top: 42px; }
.atzcp-auth__brand h1 { margin: 0; font-family: "Cormorant Garamond",Georgia,serif; font-size: clamp(2.8rem,6vw,4.6rem); font-weight: 600; line-height: .98; }
.atzcp-auth__brand>p:not(.atzcp-eyebrow) { color: var(--atzcp-muted); line-height: 1.7; }
.atzcp-auth__card form { display: grid; gap: 12px; }
.atzcp-auth__card label { display: grid; gap: 7px; }
.atzcp-mfa-setup { display: grid; gap: 20px; }
.atzcp-mfa-qr { width: min(230px,100%); aspect-ratio: 1; margin: 0 auto; padding: 12px; border: 1px solid var(--atzcp-line); border-radius: 16px; background: #fff; }
.atzcp-mfa-qr svg { display: block; width: 100%; height: 100%; }
.atzcp-mfa-setup ol { margin: 0; padding-left: 23px; color: var(--atzcp-muted); font-size: .8rem; line-height: 1.7; }
.atzcp-manual-key { display: grid; gap: 5px; padding: 13px; border-radius: 11px; background: var(--atzcp-ivory); text-align: center; }
.atzcp-manual-key span { color: var(--atzcp-muted); font-size: .66rem; font-weight: 800; text-transform: uppercase; }
.atzcp-manual-key code { overflow-wrap: anywhere; color: var(--atzcp-teal-dark); font-size: .84rem; font-weight: 800; letter-spacing: .08em; }
.atzcp-recovery-codes { display: grid; gap: 17px; }
.atzcp-recovery-codes p { margin: 0; color: var(--atzcp-muted); line-height: 1.6; }
.atzcp-recovery-codes ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin: 0; padding: 0; list-style: none; }
.atzcp-recovery-codes li { padding: 10px; border: 1px solid var(--atzcp-line); border-radius: 9px; background: #f8fbfa; text-align: center; }
.atzcp-recovery-codes code { font-weight: 800; }

@media (max-width: 850px) {
	.atzcp-booking,.atzcp-auth { grid-template-columns: 1fr; }
	.atzcp-booking__intro { position: static; }
	.atzcp-booking__intro>.atzcp-eyebrow,.atzcp-auth__brand>.atzcp-eyebrow { margin-top: 28px; }
	.atzcp-booking-progress { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 5px; }
	.atzcp-booking-progress li { flex-direction: column; align-items: flex-start; gap: 5px; font-size: .66rem; }
}
@media (max-width: 580px) {
	.atzcp-option-grid,.atzcp-slot-grid,.atzcp-field-grid--two,.atzcp-booking-summary,.atzcp-recovery-codes ul { grid-template-columns: 1fr; }
	.atzcp-booking__card,.atzcp-auth__card { padding: 21px; border-radius: 19px; }
	.atzcp-dialog__actions { flex-direction: column-reverse; }
	.atzcp-public-button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
	.atzcp-booking *,.atzcp-auth * { scroll-behavior: auto !important; transition: none !important; }
}
.atzcp-public-safety { padding: 14px 22px; background: #20373a; color: #fff; text-align: center; font-size: 12px; line-height: 1.5; }
