.swb-hero {
	--swb-hero-orange: #ff7a18;
	--swb-hero-orange-deep: #f0440b;
	position: relative;
	isolation: isolate;
	box-sizing: border-box;
	display: flex;
	width: 100%;
	max-width: 1240px;
	min-height: 680px;
	margin: 28px auto;
	overflow: hidden;
	padding: 34px 20px 22px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: clamp(24px, calc(var(--swb-radius, 14px) * 2), 36px);
	background-color: var(--swb-bg, #07080e);
	background-image: var(--swb-hero-image, url("../images/bowling-restaurant-hero.png"));
	background-position: 58% center;
	background-size: cover;
	box-shadow: 0 28px 80px rgba(3, 5, 12, .32), inset 0 1px 0 rgba(255, 255, 255, .14);
	color: #fff;
	font-family: inherit;
}

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

.swb-hero::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(4, 5, 10, .96) 0%, rgba(5, 6, 12, .86) 44%, rgba(5, 6, 12, .42) 72%, rgba(4, 5, 9, .76) 100%),
		linear-gradient(90deg, rgba(3, 4, 9, .82) 0%, rgba(3, 4, 9, .38) 68%, rgba(3, 4, 9, .08) 100%);
	content: "";
	pointer-events: none;
}

.swb-hero::after {
	position: absolute;
	z-index: -1;
	bottom: -110px;
	left: 12%;
	width: 360px;
	height: 250px;
	border-radius: 50%;
	background: rgba(255, 92, 20, .22);
	content: "";
	filter: blur(58px);
	opacity: .68;
	pointer-events: none;
	animation: swb-hero-glow 7s ease-in-out infinite alternate;
}

.swb-hero__content {
	display: flex;
	width: 100%;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}

.swb-hero__badge {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	max-width: 100%;
	margin: 0 0 24px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 132, 35, .9);
	border-radius: 999px;
	background: rgba(12, 8, 14, .72);
	box-shadow: 0 0 18px rgba(255, 91, 19, .24), inset 0 0 14px rgba(255, 113, 24, .08);
	color: #ffad4d;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .11em;
	line-height: 1.3;
	text-transform: uppercase;
}

.swb-hero__badge span {
	color: #ff6a16;
}

.swb-hero__title {
	max-width: 720px;
	margin: 0;
	color: #fff;
	font-family: inherit;
	font-size: clamp(2.7rem, 13vw, 4.25rem);
	font-weight: 850;
	letter-spacing: -.055em;
	line-height: .94;
	text-wrap: balance;
}

.swb-hero__title-first,
.swb-hero__title-accent {
	display: block;
}

.swb-hero__title-first {
	color: #fff;
	text-shadow: 0 5px 30px rgba(0, 0, 0, .38);
}

.swb-hero__title-accent {
	padding: .07em 0 .12em;
	background: linear-gradient(105deg, #ffb43e 0%, var(--swb-hero-orange) 47%, #ff4d0b 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 8px 24px rgba(255, 72, 10, .2));
}

.swb-hero__description {
	max-width: 520px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, .88);
	font-size: clamp(1.05rem, 2.2vw, 1.28rem);
	font-weight: 450;
	line-height: 1.58;
	text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.swb-hero__cta {
	display: inline-flex;
	width: 100%;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
	padding: 14px 20px;
	border: 1px solid rgba(255, 194, 98, .72);
	border-radius: 16px;
	background: linear-gradient(135deg, #ff9d25 0%, var(--swb-hero-orange) 48%, var(--swb-hero-orange-deep) 100%);
	box-shadow: 0 14px 34px rgba(244, 70, 8, .34), inset 0 1px 0 rgba(255, 255, 255, .35);
	color: var(--swb-button-text, #fff);
	font: inherit;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	text-shadow: 0 1px 2px rgba(98, 24, 0, .35);
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.swb-hero__cta:hover {
	box-shadow: 0 18px 42px rgba(244, 70, 8, .46), inset 0 1px 0 rgba(255, 255, 255, .4);
	color: var(--swb-button-text, #fff);
	filter: saturate(1.08) brightness(1.04);
	transform: translateY(-2px) scale(1.01);
}

.swb-hero__cta:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

.swb-hero__cta-icon,
.swb-hero__cta-arrow {
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.swb-hero__cta-icon {
	width: 24px;
	height: 24px;
}

.swb-hero__cta-arrow {
	width: 21px;
	height: 21px;
	margin-left: auto;
}

.swb-hero__config {
	margin-top: 28px;
}

.swb-hero__features {
	display: grid;
	width: 100%;
	max-width: 820px;
	grid-template-columns: 1fr;
	gap: 8px;
	margin-top: auto;
	padding-top: 30px;
}

.swb-hero__feature {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 11px;
	padding: 11px 13px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 14px;
	background: rgba(10, 8, 13, .74);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.swb-hero__feature > svg {
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	fill: none;
	stroke: #ff9c3b;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
	filter: drop-shadow(0 0 8px rgba(255, 119, 24, .25));
}

.swb-hero__feature > span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	line-height: 1.3;
}

.swb-hero__feature strong {
	color: #fff;
	font-size: .9rem;
	font-weight: 750;
}

.swb-hero__feature small {
	margin-top: 3px;
	color: rgba(255, 255, 255, .68);
	font-size: .78rem;
}

@keyframes swb-hero-glow {
	0% { opacity: .48; transform: translate3d(-4%, 0, 0) scale(.94); }
	100% { opacity: .8; transform: translate3d(8%, -5%, 0) scale(1.08); }
}

.swb-section,
.swb-form-shell {
	box-sizing: border-box;
	width: 100%;
	max-width: 1120px;
	margin: 24px auto;
	color: var(--swb-text, #172033);
	font-family: inherit;
}

.swb-section *,
.swb-form-shell * {
	box-sizing: border-box;
}

.swb-section {
	position: relative;
	overflow: hidden;
	padding: 28px 22px;
	border: 1px solid color-mix(in srgb, var(--swb-primary, #2563eb) 16%, transparent);
	border-radius: var(--swb-radius, 14px);
	background: var(--swb-bg, #f4f7fb);
	box-shadow: 0 18px 50px rgba(24, 39, 75, .08);
}

.swb-section::after {
	position: absolute;
	top: -100px;
	right: -80px;
	width: 230px;
	height: 230px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--swb-primary, #2563eb) 10%, transparent);
	content: "";
	pointer-events: none;
}

.swb-section__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 22px;
}

.swb-section__heading,
.swb-form-shell h2 {
	margin: 0;
	color: var(--swb-text, #172033);
	font-family: inherit;
	font-size: clamp(1.65rem, 5vw, 2.6rem);
	font-weight: 750;
	line-height: 1.15;
}

.swb-section__description,
.swb-form-header > p:not(.swb-eyebrow) {
	max-width: 650px;
	margin: 10px 0 0;
	color: color-mix(in srgb, var(--swb-text, #172033) 78%, transparent);
	font-size: 1rem;
	line-height: 1.65;
}

.swb-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border: 2px solid var(--swb-primary, #2563eb);
	border-radius: calc(var(--swb-radius, 14px) * .72);
	background: var(--swb-primary, #2563eb);
	box-shadow: 0 8px 20px color-mix(in srgb, var(--swb-primary, #2563eb) 25%, transparent);
	color: var(--swb-button-text, #fff);
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.swb-button:hover {
	color: var(--swb-button-text, #fff);
	filter: brightness(.94);
	transform: translateY(-1px);
}

.swb-button:focus-visible,
.swb-form input:focus-visible,
.swb-form select:focus-visible,
.swb-form textarea:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--swb-primary, #2563eb) 35%, transparent);
	outline-offset: 2px;
}

.swb-section--compact {
	max-width: 800px;
	padding: 22px;
	box-shadow: 0 10px 30px rgba(24, 39, 75, .06);
}

.swb-section--compact .swb-section__heading {
	font-size: clamp(1.35rem, 4vw, 1.75rem);
}

.swb-config-message {
	margin: 0;
	padding: 10px 12px;
	border: 1px solid #d97706;
	border-radius: 6px;
	background: #fff7ed;
	color: #7c2d12;
}

.swb-form-shell {
	padding: 24px 18px;
	border: 1px solid #e2e8f0;
	border-radius: var(--swb-radius, 14px);
	background: #fff;
	box-shadow: 0 20px 55px rgba(24, 39, 75, .09);
}

.swb-form-header {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e7ecf3;
}

.swb-eyebrow {
	margin: 0 0 7px;
	color: var(--swb-primary, #2563eb);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.swb-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 18px;
}

.swb-field {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.swb-field > label,
.swb-choice > legend {
	display: block;
	margin: 0 0 7px;
	color: var(--swb-text, #172033);
	font-size: .94rem;
	font-weight: 700;
	line-height: 1.4;
}

.swb-form input:not([type="radio"]),
.swb-form select,
.swb-form textarea {
	display: block;
	width: 100%;
	min-width: 0;
	min-height: 48px;
	margin: 0;
	padding: 11px 12px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #fff;
	box-shadow: none;
	color: #172033;
	font: inherit;
	font-size: 16px;
	line-height: 1.4;
}

.swb-form textarea {
	min-height: 120px;
	resize: vertical;
}

.swb-choice__items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.swb-choice__items label {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #f8fafc;
	cursor: pointer;
	font-weight: 600;
}

.swb-choice__items input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--swb-primary, #2563eb);
}

.swb-email-confirmation {
	display: grid;
	min-width: 0;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
	padding: 15px 16px;
	border: 1px solid #dbe4f0;
	border-color: color-mix(in srgb, var(--swb-primary, #2563eb) 20%, #dbe4f0);
	border-radius: 10px;
	background: #f8fafc;
	background: color-mix(in srgb, var(--swb-primary, #2563eb) 5%, #fff);
	color: var(--swb-text, #172033);
}

.swb-email-confirmation__icon {
	display: inline-flex;
	width: 38px;
	height: 38px;
	grid-row: 1 / 3;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: var(--swb-primary, #2563eb);
	color: #fff;
}

.swb-email-confirmation__icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.swb-email-confirmation strong {
	display: block;
	align-self: end;
	font-size: .96rem;
	font-weight: 750;
	line-height: 1.35;
}

.swb-email-confirmation p {
	align-self: start;
	margin: -9px 0 0;
	color: color-mix(in srgb, var(--swb-text, #172033) 72%, transparent);
	font-size: .9rem;
	line-height: 1.5;
}

.swb-form__footer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding-top: 4px;
}

.swb-form__footer .swb-button {
	width: 100%;
}

.swb-notice,
.swb-privacy {
	margin: 0;
	font-size: .9rem;
	line-height: 1.55;
}

.swb-notice {
	color: color-mix(in srgb, var(--swb-text, #172033) 75%, transparent);
}

.swb-privacy a {
	color: var(--swb-primary, #2563eb);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.swb-errors {
	margin: 0 0 22px;
	padding: 14px 16px;
	border: 1px solid #f1a8a8;
	border-left: 4px solid #c62828;
	border-radius: 7px;
	background: #fff5f5;
	color: #7f1d1d;
}

.swb-errors p {
	margin: 0 0 5px;
}

.swb-errors ul {
	margin: 0;
	padding-left: 20px;
}

.swb-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.swb-success {
	display: flex;
	max-width: 720px;
	min-height: 390px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 36px 20px;
	text-align: center;
}

.swb-success__icon {
	display: grid;
	width: 72px;
	height: 72px;
	margin-bottom: 20px;
	place-items: center;
	border-radius: 50%;
	background: color-mix(in srgb, var(--swb-primary, #2563eb) 12%, white);
	color: var(--swb-primary, #2563eb);
}

.swb-success__icon svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
}

.swb-success > p {
	max-width: 550px;
	margin: 12px 0 0;
	line-height: 1.6;
}

.swb-success .swb-success__number {
	margin-top: 20px;
	padding: 10px 15px;
	border-radius: 7px;
	background: var(--swb-bg, #f4f7fb);
	font-size: 1.05rem;
}

@media (min-width: 680px) {
	.swb-hero {
		min-height: 660px;
		padding: 48px 42px 30px;
	}

	.swb-hero::before {
		background:
			linear-gradient(90deg, rgba(4, 5, 10, .97) 0%, rgba(4, 5, 10, .88) 32%, rgba(4, 5, 10, .5) 60%, rgba(4, 5, 10, .12) 100%),
			linear-gradient(180deg, rgba(3, 4, 8, .12) 48%, rgba(3, 4, 8, .76) 100%);
	}

	.swb-hero__badge {
		font-size: .72rem;
	}

	.swb-hero__title {
		font-size: clamp(3.6rem, 8vw, 5rem);
	}

	.swb-hero__cta {
		width: auto;
		min-width: 230px;
		padding-inline: 25px;
	}

	.swb-hero__features {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}

	.swb-section {
		padding: 50px;
	}

	.swb-section__content {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.swb-section--compact {
		padding: 24px 28px;
	}

	.swb-form-shell {
		padding: 38px;
	}

	.swb-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.swb-field--full {
		grid-column: 1 / -1;
	}

	.swb-form__footer .swb-button {
		width: auto;
	}
}

@media (min-width: 1024px) {
	.swb-hero {
		min-height: clamp(680px, 59vw, 735px);
		padding: 62px 58px 34px;
		background-position: 58% center;
	}

	.swb-hero__title {
		max-width: 760px;
		font-size: clamp(4.4rem, 6.7vw, 5.65rem);
	}

	.swb-hero__description {
		margin-top: 24px;
	}

	.swb-hero__feature {
		padding: 13px 15px;
	}
}

@media (max-width: 679px) {
	.swb-hero {
		background-position: 58% center;
	}

	.swb-hero__content {
		min-height: 624px;
	}
}

@media (max-width: 374px) {
	.swb-hero {
		min-height: 650px;
		padding-inline: 16px;
		border-radius: 22px;
	}

	.swb-hero__content {
		min-height: 594px;
	}

	.swb-hero__badge {
		gap: 5px;
		padding-inline: 10px;
		letter-spacing: .07em;
	}

	.swb-hero__title {
		font-size: clamp(2.55rem, 13vw, 3.25rem);
	}

	.swb-email-confirmation {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 10px;
		padding: 13px;
	}

	.swb-email-confirmation__icon {
		width: 34px;
		height: 34px;
		grid-row: auto;
	}

	.swb-email-confirmation p {
		grid-column: 1 / -1;
		margin: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.swb-hero::after {
		animation: none;
	}

	.swb-hero__cta {
		transition: none;
	}

	.swb-button {
		transition: none;
	}
}
