/*
 * Commercial-intent service pages.
 * Loaded after the shared internal-page design system and kept tightly scoped.
 */

.soh-brand-shell .soh-commercial-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(58px, 7vw, 104px) 0 clamp(70px, 8vw, 118px);
	background:
		radial-gradient(circle at 9% 15%, rgba(117, 183, 238, 0.28), transparent 30%),
		linear-gradient(132deg, #ffffff 0%, #edf6ff 56%, #dcebfa 100%);
}

.soh-brand-shell .soh-commercial-hero::after {
	position: absolute;
	right: -8%;
	bottom: -42%;
	z-index: -1;
	width: min(48vw, 720px);
	aspect-ratio: 1;
	border: 1px solid rgba(30, 107, 184, 0.15);
	border-radius: 50%;
	box-shadow: 0 0 0 54px rgba(30, 107, 184, 0.04), 0 0 0 112px rgba(30, 107, 184, 0.035);
	content: "";
}

.soh-brand-shell .soh-commercial-hero--wedding {
	background:
		linear-gradient(90deg, rgba(30, 107, 184, 0.07) 1px, transparent 1px) 0 0 / 42px 42px,
		linear-gradient(135deg, #ffffff 0%, #f7fafc 58%, #e6f2fc 100%);
}

.soh-brand-shell .soh-commercial-hero--corporate {
	background:
		radial-gradient(circle at 78% 14%, rgba(117, 183, 238, 0.22), transparent 30%),
		linear-gradient(135deg, #080b10 0%, #092b4d 58%, #1e6bb8 140%);
	color: var(--soh-white);
}

.soh-brand-shell .soh-commercial-hero--corporate::after {
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 0 0 54px rgba(255, 255, 255, 0.035), 0 0 0 112px rgba(255, 255, 255, 0.025);
}

/* Corporate event pages share the dark brand foundation but keep distinct art direction. */
.soh-brand-shell .soh-page--conference-trade-show-photo-booth .soh-commercial-hero {
	background:
		linear-gradient(rgba(117, 183, 238, 0.075) 1px, transparent 1px) 0 0 / 42px 42px,
		linear-gradient(90deg, rgba(117, 183, 238, 0.075) 1px, transparent 1px) 0 0 / 42px 42px,
		radial-gradient(circle at 82% 18%, rgba(31, 121, 189, 0.45), transparent 34%),
		linear-gradient(132deg, #06111f 0%, #0b3157 62%, #0d548b 130%);
}

.soh-brand-shell .soh-page--corporate-holiday-party-photo-booth .soh-commercial-hero {
	background:
		radial-gradient(circle at 15% 17%, rgba(255, 255, 255, 0.24) 0 1px, transparent 2px) 0 0 / 74px 74px,
		radial-gradient(circle at 73% 39%, rgba(169, 216, 255, 0.2) 0 1.5px, transparent 2.5px) 0 0 / 112px 112px,
		radial-gradient(circle at 78% 14%, rgba(191, 219, 243, 0.2), transparent 31%),
		linear-gradient(137deg, #070b12 0%, #13273d 61%, #284a67 132%);
}

.soh-brand-shell .soh-page--brand-activation-photo-booth .soh-commercial-hero {
	background:
		linear-gradient(90deg, transparent 0 68%, rgba(255, 255, 255, 0.055) 68% 82%, transparent 82%),
		linear-gradient(0deg, transparent 0 72%, rgba(117, 183, 238, 0.09) 72% 86%, transparent 86%),
		radial-gradient(circle at 78% 18%, rgba(117, 183, 238, 0.34), transparent 29%),
		linear-gradient(132deg, #060b12 0%, #103963 58%, #1e6bb8 128%);
}

.soh-brand-shell .soh-page--conference-trade-show-photo-booth .soh-commercial-hero--corporate .soh-commercial-hero__image {
	border-color: #b7defd;
	border-radius: 12px;
	box-shadow: 16px 16px 0 rgba(117, 183, 238, 0.16), 0 30px 70px rgba(2, 11, 22, 0.38);
	transform: none;
}

.soh-brand-shell .soh-page--corporate-holiday-party-photo-booth .soh-commercial-hero--corporate .soh-commercial-hero__image {
	border-color: #f2f7fb;
	border-radius: 32px;
	box-shadow: 0 0 0 1px rgba(191, 219, 243, 0.45), 0 32px 80px rgba(0, 0, 0, 0.42);
	transform: rotate(0.7deg);
}

.soh-brand-shell .soh-page--brand-activation-photo-booth .soh-commercial-hero--corporate .soh-commercial-hero__image {
	border-color: #ffffff;
	border-radius: 7px;
	box-shadow: -18px 18px 0 rgba(117, 183, 238, 0.22), 0 30px 70px rgba(2, 11, 22, 0.4);
	transform: none;
}

.soh-brand-shell .soh-page--conference-trade-show-photo-booth .soh-commercial-hero__stamp {
	background: #0f568d;
}

.soh-brand-shell .soh-page--corporate-holiday-party-photo-booth .soh-commercial-hero__stamp {
	background: #243f5a;
}

.soh-brand-shell .soh-page--brand-activation-photo-booth .soh-commercial-hero__stamp {
	border-radius: 18px;
	background: #1e6bb8;
	transform: rotate(3deg);
}

@media (min-width: 1101px) {
	.soh-brand-shell .soh-page--conference-trade-show-photo-booth .soh-commercial-hero__content h1,
	.soh-brand-shell .soh-page--brand-activation-photo-booth .soh-commercial-hero__content h1 {
		font-size: clamp(52px, 4.5vw, 66px);
	}
}

.soh-brand-shell .soh-commercial-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
	gap: clamp(44px, 6vw, 88px);
	align-items: center;
}

.soh-brand-shell .soh-commercial-hero__content {
	position: relative;
	z-index: 2;
	max-width: 680px;
}

.soh-brand-shell .soh-commercial-hero__content h1 {
	max-width: 780px;
	margin: 12px 0 20px;
	color: var(--soh-ink);
	font-family: var(--soh-display);
	font-size: clamp(44px, 5.4vw, 76px);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 0.98;
	text-wrap: balance;
}

.soh-brand-shell .soh-commercial-hero--corporate .soh-commercial-hero__content h1,
.soh-brand-shell .soh-commercial-hero--corporate .soh-page-eyebrow,
.soh-brand-shell .soh-commercial-hero--corporate .soh-commercial-hero__intro,
.soh-brand-shell .soh-commercial-hero--corporate .soh-commercial-hero__note {
	color: var(--soh-white);
}

.soh-brand-shell .soh-commercial-hero--corporate .soh-page-eyebrow {
	color: #a9d8ff;
}

.soh-brand-shell .soh-commercial-hero--corporate .soh-page-button--secondary,
.soh-brand-shell .soh-commercial-hero--corporate .soh-page-button--secondary:visited,
.soh-brand-shell .soh-commercial-hero--corporate .soh-page-button--secondary:active {
	border-color: rgba(255, 255, 255, 0.72);
	background: transparent;
	color: var(--soh-white) !important;
}

.soh-brand-shell .soh-commercial-hero--corporate .soh-page-button--secondary:hover,
.soh-brand-shell .soh-commercial-hero--corporate .soh-page-button--secondary:focus-visible {
	border-color: var(--soh-white);
	background: rgba(255, 255, 255, 0.14);
	color: var(--soh-white) !important;
}

.soh-brand-shell .soh-commercial-hero__intro {
	max-width: 680px;
	margin: 0;
	color: #334155;
	font-size: clamp(18px, 1.55vw, 22px);
	line-height: 1.68;
}

.soh-brand-shell .soh-commercial-hero__note {
	max-width: 620px;
	margin: 18px 0 0;
	color: #475569;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
}

.soh-brand-shell .soh-commercial-hero__visual {
	position: relative;
	min-width: 0;
}

.soh-brand-shell .soh-commercial-hero__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	border: 8px solid var(--soh-white);
	border-radius: clamp(24px, 3vw, 42px);
	background: #dfe7ef;
	box-shadow: 0 30px 70px rgba(8, 11, 16, 0.22);
	transform: rotate(1.2deg);
}

.soh-brand-shell .soh-commercial-hero--wedding .soh-commercial-hero__image {
	border-radius: 48% 48% 28px 28px;
	transform: none;
}

.soh-brand-shell .soh-commercial-hero--corporate .soh-commercial-hero__image {
	border-color: rgba(255, 255, 255, 0.94);
	border-radius: 18px;
	transform: rotate(-1deg);
}

.soh-brand-shell .soh-commercial-photo {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
}

.soh-brand-shell .soh-commercial-hero__stamp {
	position: absolute;
	right: -24px;
	bottom: -36px;
	display: grid;
	place-content: center;
	width: 136px;
	aspect-ratio: 1;
	padding: 16px;
	border: 4px solid var(--soh-white);
	border-radius: 50%;
	background: var(--soh-blue);
	color: var(--soh-white);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	box-shadow: var(--soh-shadow-soft);
	transform: rotate(-6deg);
}

.soh-brand-shell .soh-commercial-hero__stamp strong {
	display: block;
	margin: 3px 0;
	font-family: var(--soh-display);
	font-size: 17px;
	letter-spacing: -0.02em;
	line-height: 1;
}

.soh-brand-shell .soh-commercial-proof {
	position: relative;
	z-index: 3;
	margin-top: -30px;
}

.soh-brand-shell .soh-commercial-proof__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	padding: 0;
	border: 1px solid var(--soh-line);
	border-radius: var(--soh-radius-md);
	background: var(--soh-white);
	box-shadow: var(--soh-shadow-soft);
}

.soh-brand-shell .soh-commercial-proof__item {
	min-width: 0;
	padding: 24px clamp(18px, 2vw, 30px);
	border-right: 1px solid var(--soh-line-soft);
}

.soh-brand-shell .soh-commercial-proof__item:last-child {
	border-right: 0;
}

.soh-brand-shell .soh-commercial-proof__item strong,
.soh-brand-shell .soh-commercial-proof__item span {
	display: block;
}

.soh-brand-shell .soh-commercial-proof__item strong {
	margin-bottom: 5px;
	color: var(--soh-blue);
	font-family: var(--soh-display);
	font-size: clamp(20px, 2vw, 27px);
	font-weight: 800;
	letter-spacing: -0.03em;
}

.soh-brand-shell .soh-commercial-proof__item span {
	color: #475569;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.45;
}

.soh-brand-shell .soh-commercial-choices {
	padding-top: clamp(86px, 9vw, 132px);
}

.soh-brand-shell .soh-commercial-choice-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.soh-brand-shell .soh-commercial-choice-card {
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--soh-line);
	border-radius: var(--soh-radius-md);
	background: var(--soh-white);
	box-shadow: 0 14px 38px rgba(8, 11, 16, 0.07);
}

.soh-brand-shell .soh-commercial-choice-card__media {
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: #e7edf3;
}

.soh-brand-shell .soh-commercial-choice-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(24px, 2.8vw, 34px);
}

.soh-brand-shell .soh-commercial-choice-card h3 {
	margin: 7px 0 12px;
	font-family: var(--soh-display);
	font-size: clamp(24px, 2.4vw, 32px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.soh-brand-shell .soh-commercial-choice-card p:not(.soh-page-eyebrow) {
	margin: 0 0 24px;
	color: #475569;
	font-size: 16px;
	line-height: 1.65;
}

.soh-brand-shell .soh-commercial-choice-card a,
.soh-brand-shell .soh-commercial-text-links a,
.soh-brand-shell .soh-commercial-discovery__links a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	margin-top: auto;
	color: var(--soh-blue);
	font-weight: 800;
	text-decoration: none;
}

.soh-brand-shell .soh-commercial-choice-card a:hover,
.soh-brand-shell .soh-commercial-choice-card a:focus-visible,
.soh-brand-shell .soh-commercial-text-links a:hover,
.soh-brand-shell .soh-commercial-text-links a:focus-visible,
.soh-brand-shell .soh-commercial-discovery__links a:hover,
.soh-brand-shell .soh-commercial-discovery__links a:focus-visible {
	color: var(--soh-blue-hover);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.soh-brand-shell .soh-commercial-editorial:nth-of-type(even) {
	background: var(--soh-blue-pale);
}

.soh-brand-shell .soh-commercial-editorial__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(44px, 7vw, 96px);
	align-items: center;
}

.soh-brand-shell .soh-commercial-editorial--reverse .soh-commercial-editorial__media {
	order: 2;
}

.soh-brand-shell .soh-commercial-editorial__media {
	overflow: hidden;
	aspect-ratio: 3 / 2;
	border: 7px solid var(--soh-white);
	border-radius: var(--soh-radius-lg);
	background: #e6ebf0;
	box-shadow: var(--soh-shadow-soft);
}

.soh-brand-shell .soh-commercial-editorial__content h2 {
	max-width: 720px;
	margin: 8px 0 18px;
	font-family: var(--soh-display);
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1.02;
	text-wrap: balance;
}

.soh-brand-shell .soh-commercial-editorial__content > p:not(.soh-page-eyebrow) {
	max-width: 720px;
	margin: 0 0 16px;
	color: #475569;
	font-size: 17px;
	line-height: 1.72;
}

.soh-brand-shell .soh-commercial-editorial__checks {
	margin-top: 24px;
}

.soh-brand-shell .soh-commercial-text-links {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 26px;
	margin-top: 20px;
}

.soh-brand-shell .soh-commercial-planning {
	background: var(--soh-black);
	color: var(--soh-white);
}

.soh-brand-shell .soh-commercial-planning .soh-page-heading h2,
.soh-brand-shell .soh-commercial-planning .soh-page-heading > p:not(.soh-page-eyebrow) {
	color: var(--soh-white);
}

.soh-brand-shell .soh-commercial-planning .soh-page-heading > p:not(.soh-page-eyebrow) {
	opacity: 0.78;
}

.soh-brand-shell .soh-commercial-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin: 42px 0 0;
	padding: 1px;
	list-style: none;
	background: rgba(255, 255, 255, 0.16);
}

.soh-brand-shell .soh-commercial-steps li {
	min-width: 0;
	padding: clamp(24px, 3vw, 38px);
	background: var(--soh-charcoal);
}

.soh-brand-shell .soh-commercial-steps__number {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 28px;
	border: 1px solid rgba(117, 183, 238, 0.58);
	border-radius: 50%;
	color: var(--soh-blue-light);
	font-family: var(--soh-display);
	font-weight: 800;
}

.soh-brand-shell .soh-commercial-steps h3 {
	margin: 0 0 10px;
	color: var(--soh-white);
	font-family: var(--soh-display);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.15;
}

.soh-brand-shell .soh-commercial-steps p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	line-height: 1.65;
}

.soh-brand-shell .soh-commercial-discovery {
	padding-block: clamp(64px, 7vw, 92px);
	background: var(--soh-blue-pale);
}

.soh-brand-shell .soh-commercial-discovery__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	gap: clamp(38px, 7vw, 96px);
	align-items: center;
}

.soh-brand-shell .soh-commercial-discovery h2 {
	max-width: 760px;
	margin: 8px 0 14px;
	font-family: var(--soh-display);
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.03;
}

.soh-brand-shell .soh-commercial-discovery p:not(.soh-page-eyebrow) {
	max-width: 700px;
	margin: 0;
	color: #475569;
	font-size: 17px;
	line-height: 1.7;
}

.soh-brand-shell .soh-commercial-discovery__links {
	display: grid;
	gap: 2px;
	padding: 20px 28px;
	border: 1px solid rgba(30, 107, 184, 0.19);
	border-radius: var(--soh-radius-md);
	background: var(--soh-white);
	box-shadow: var(--soh-shadow-soft);
}

.soh-brand-shell .soh-commercial-faq {
	background: var(--soh-white);
}

/* Open-Air conversion journey. */
.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero {
	padding: clamp(46px, 5vw, 72px) 0 clamp(58px, 6vw, 86px);
}

.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__grid {
	grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
	gap: clamp(38px, 5vw, 68px);
}

.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__content h1 {
	max-width: 680px;
	font-size: clamp(44px, 4.6vw, 66px);
	line-height: 0.99;
}

.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__intro {
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.58;
}

.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__stamp {
	right: -16px;
	bottom: -30px;
	width: 126px;
}

.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__stamp span:last-child {
	font-size: 8px;
}

.soh-brand-shell .soh-open-air-keepsakes {
	scroll-margin-top: 110px;
	padding-top: clamp(78px, 8vw, 112px);
	background: var(--soh-white);
}

.soh-brand-shell .soh-open-air-keepsakes__grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(36px, 6vw, 82px);
	align-items: center;
}

.soh-brand-shell .soh-open-air-keepsakes__media,
.soh-brand-shell .soh-open-air-backdrops__media {
	margin: 0;
	overflow: hidden;
	border: 6px solid var(--soh-white);
	border-radius: var(--soh-radius-lg);
	background: #eef2f6;
	box-shadow: var(--soh-shadow-soft);
}

.soh-brand-shell .soh-open-air-keepsakes__media img,
.soh-brand-shell .soh-open-air-backdrops__media img {
	display: block;
	width: 100%;
	height: auto;
}

.soh-brand-shell .soh-open-air-keepsakes__media figcaption,
.soh-brand-shell .soh-open-air-backdrops__media figcaption {
	padding: 13px 16px;
	background: var(--soh-white);
	color: #475569;
	font-size: 13px;
	line-height: 1.45;
}

.soh-brand-shell .soh-open-air-format-grid {
	display: grid;
	gap: 16px;
}

.soh-brand-shell .soh-open-air-format-card {
	display: grid;
	grid-template-columns: 172px minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	min-height: 218px;
	padding: clamp(20px, 2.3vw, 28px);
	border: 1px solid var(--soh-line);
	border-radius: var(--soh-radius-md);
	background: linear-gradient(135deg, #ffffff 0%, #f5f9fd 100%);
	box-shadow: 0 16px 42px rgba(8, 38, 67, 0.08);
	overflow: hidden;
}

.soh-brand-shell .soh-open-air-format-card__visual {
	position: relative;
	display: grid;
	place-items: center;
	width: 172px;
	min-height: 172px;
	isolation: isolate;
}

.soh-brand-shell .soh-open-air-format-card__visual::before {
	position: absolute;
	inset: 14px 4px;
	z-index: -1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(30, 107, 184, 0.14) 0%, rgba(30, 107, 184, 0.05) 48%, transparent 72%);
	content: "";
}

.soh-brand-shell .soh-open-air-format-card__visual img {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

.soh-brand-shell .soh-open-air-format-card--strip .soh-open-air-format-card__visual img {
	width: 118px;
	max-height: 184px;
}

.soh-brand-shell .soh-open-air-format-card--print .soh-open-air-format-card__visual img {
	width: 178px;
	max-width: 100%;
}

.soh-brand-shell .soh-open-air-format-card__shape {
	display: grid;
	place-items: end center;
	justify-self: center;
	padding: 9px 6px;
	border: 5px solid var(--soh-white);
	border-radius: 7px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.25), transparent 52%),
		linear-gradient(160deg, #236cae 0%, #0b3157 100%);
	color: var(--soh-white);
	box-shadow: 0 10px 24px rgba(8, 38, 67, 0.24);
	transform: rotate(-2deg);
}

.soh-brand-shell .soh-open-air-format-card--strip .soh-open-air-format-card__shape {
	width: 48px;
	aspect-ratio: 1 / 3;
}

.soh-brand-shell .soh-open-air-format-card--print .soh-open-air-format-card__shape {
	width: 96px;
	aspect-ratio: 2 / 3;
	transform: rotate(1.5deg);
}

.soh-brand-shell .soh-open-air-format-card__shape span {
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
}

.soh-brand-shell .soh-open-air-format-card h3 {
	margin: 0 0 7px;
	font-family: var(--soh-display);
	font-size: clamp(23px, 2.2vw, 30px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.soh-brand-shell .soh-open-air-format-card p {
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.58;
}

.soh-brand-shell .soh-open-air-format-card .soh-open-air-format-card__speed {
	margin-bottom: 7px;
	color: var(--soh-blue);
	font-weight: 800;
}

.soh-brand-shell .soh-open-air-keepsakes__note {
	margin: 2px 0 0;
	color: #64748b;
	font-size: 13px;
	line-height: 1.5;
}

.soh-brand-shell .soh-open-air-backdrops {
	background: var(--soh-blue-pale);
}

.soh-brand-shell .soh-open-air-backdrops__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(42px, 7vw, 92px);
	align-items: center;
}

.soh-brand-shell .soh-open-air-backdrops__content h2 {
	max-width: 720px;
	margin: 8px 0 16px;
	font-family: var(--soh-display);
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1.02;
	text-wrap: balance;
}

.soh-brand-shell .soh-open-air-backdrops__content > p:not(.soh-page-eyebrow) {
	margin: 0;
	color: #475569;
	font-size: 17px;
	line-height: 1.68;
}

.soh-brand-shell .soh-open-air-backdrops__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 28px 0 18px;
}

.soh-brand-shell .soh-open-air-backdrops__stats div {
	padding: 18px 14px;
	border: 1px solid rgba(30, 107, 184, 0.18);
	border-radius: 14px;
	background: var(--soh-white);
}

.soh-brand-shell .soh-open-air-backdrops__stats strong,
.soh-brand-shell .soh-open-air-backdrops__stats span {
	display: block;
}

.soh-brand-shell .soh-open-air-backdrops__stats strong {
	margin-bottom: 4px;
	color: var(--soh-blue);
	font-family: var(--soh-display);
	font-size: 30px;
	line-height: 1;
}

.soh-brand-shell .soh-open-air-backdrops__stats span {
	color: #475569;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.soh-brand-shell .soh-open-air-backdrops__link,
.soh-brand-shell .soh-open-air-testimonial a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: var(--soh-blue);
	font-weight: 800;
	text-decoration: none;
}

.soh-brand-shell .soh-open-air-backdrops__link:hover,
.soh-brand-shell .soh-open-air-backdrops__link:focus-visible,
.soh-brand-shell .soh-open-air-testimonial a:hover,
.soh-brand-shell .soh-open-air-testimonial a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.soh-brand-shell .soh-open-air-testimonial {
	padding: clamp(72px, 8vw, 108px) 0;
	background:
		radial-gradient(circle at 12% 12%, rgba(117, 183, 238, 0.22), transparent 32%),
		linear-gradient(135deg, #080b10 0%, #0b3157 100%);
	color: var(--soh-white);
}

.soh-brand-shell .soh-open-air-testimonial__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(40px, 7vw, 96px);
	align-items: center;
}

.soh-brand-shell .soh-open-air-testimonial .soh-page-eyebrow {
	color: #a9d8ff;
}

.soh-brand-shell .soh-open-air-testimonial h2 {
	margin: 8px 0 18px;
	color: var(--soh-white);
	font-family: var(--soh-display);
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.03;
}

.soh-brand-shell .soh-open-air-testimonial a {
	color: #a9d8ff;
}

.soh-brand-shell .soh-open-air-testimonial figure,
.soh-brand-shell .soh-open-air-testimonial blockquote {
	margin: 0;
}

.soh-brand-shell .soh-open-air-testimonial figure {
	padding: clamp(28px, 4vw, 46px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--soh-radius-lg);
	background: rgba(255, 255, 255, 0.08);
}

.soh-brand-shell .soh-open-air-testimonial blockquote p {
	margin: 0;
	color: var(--soh-white);
	font-family: var(--soh-display);
	font-size: clamp(22px, 2.4vw, 31px);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.42;
}

.soh-brand-shell .soh-open-air-testimonial figcaption {
	display: grid;
	gap: 3px;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
}

.soh-brand-shell .soh-open-air-testimonial figcaption strong {
	color: var(--soh-white);
	font-size: 16px;
}

.soh-brand-shell .soh-open-air-mid-cta {
	padding: clamp(36px, 4vw, 54px) 0;
	background: #dceeff;
}

.soh-brand-shell .soh-open-air-mid-cta--late {
	background: #f4f8fc;
}

.soh-brand-shell .soh-open-air-mid-cta__inner {
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
	padding: clamp(28px, 4vw, 44px);
	border: 1px solid rgba(30, 107, 184, 0.2);
	border-radius: var(--soh-radius-lg);
	background: var(--soh-white);
	box-shadow: var(--soh-shadow-soft);
}

.soh-brand-shell .soh-open-air-mid-cta h2 {
	max-width: 820px;
	margin: 6px 0 10px;
	font-family: var(--soh-display);
	font-size: clamp(30px, 3.5vw, 46px);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.04;
}

.soh-brand-shell .soh-open-air-mid-cta p:not(.soh-page-eyebrow) {
	max-width: 760px;
	margin: 0;
	color: #475569;
	font-size: 16px;
	line-height: 1.6;
}

.soh-brand-shell .soh-open-air-mid-cta .soh-page-button {
	flex: 0 0 auto;
	white-space: nowrap;
}

.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-choices {
	padding-top: clamp(70px, 7vw, 100px);
}

/* Packages authority additions. */
.soh-brand-shell .soh-package-decision-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.soh-brand-shell .soh-package-decision {
	padding: clamp(26px, 3vw, 38px);
	border: 1px solid var(--soh-line);
	border-top: 5px solid var(--soh-blue);
	border-radius: var(--soh-radius-md);
	background: var(--soh-white);
}

.soh-brand-shell .soh-package-decision h3 {
	margin: 8px 0 12px;
	font-family: var(--soh-display);
	font-size: 27px;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.soh-brand-shell .soh-package-decision p {
	margin: 0;
	color: #475569;
	line-height: 1.65;
}

.soh-brand-shell .soh-package-quote-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(36px, 7vw, 88px);
	align-items: start;
}

.soh-brand-shell .soh-package-quote-panel {
	padding: clamp(28px, 4vw, 48px);
	border-radius: var(--soh-radius-lg);
	background: var(--soh-blue-deep);
	color: var(--soh-white);
	box-shadow: var(--soh-shadow);
}

.soh-brand-shell .soh-package-quote-panel h3 {
	margin: 0 0 18px;
	color: var(--soh-white);
	font-family: var(--soh-display);
	font-size: 30px;
	font-weight: 800;
}

.soh-brand-shell .soh-package-quote-panel .soh-page-checks li {
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1100px) {
	.soh-brand-shell .soh-commercial-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
		gap: 42px;
	}

	.soh-brand-shell .soh-commercial-proof__grid,
	.soh-brand-shell .soh-commercial-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.soh-brand-shell .soh-commercial-proof__item:nth-child(2) {
		border-right: 0;
	}

	.soh-brand-shell .soh-commercial-proof__item:nth-child(-n + 2) {
		border-bottom: 1px solid var(--soh-line-soft);
	}
}

@media (min-width: 922px) and (max-width: 1100px) {
	.soh-brand-shell .soh-page--conference-trade-show-photo-booth .soh-commercial-hero__content h1,
	.soh-brand-shell .soh-page--corporate-holiday-party-photo-booth .soh-commercial-hero__content h1,
	.soh-brand-shell .soh-page--brand-activation-photo-booth .soh-commercial-hero__content h1 {
		font-size: clamp(44px, 4.6vw, 50px);
	}
}

@media (max-width: 921px) {
	.soh-brand-shell .soh-commercial-hero__grid,
	.soh-brand-shell .soh-commercial-editorial__grid,
	.soh-brand-shell .soh-commercial-discovery__inner,
	.soh-brand-shell .soh-package-quote-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.soh-brand-shell .soh-commercial-hero__content {
		max-width: 760px;
	}

	.soh-brand-shell .soh-commercial-hero__visual {
		width: min(100%, 720px);
	}

	.soh-brand-shell .soh-commercial-choice-grid,
	.soh-brand-shell .soh-package-decision-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.soh-brand-shell .soh-commercial-choice-card {
		display: grid;
		grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
	}

	.soh-brand-shell .soh-commercial-choice-card__media {
		aspect-ratio: auto;
		min-height: 300px;
	}

	.soh-brand-shell .soh-commercial-editorial--reverse .soh-commercial-editorial__media {
		order: 0;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__grid,
	.soh-brand-shell .soh-open-air-keepsakes__grid,
	.soh-brand-shell .soh-open-air-backdrops__grid,
	.soh-brand-shell .soh-open-air-testimonial__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__visual {
		width: min(100%, 680px);
	}

	.soh-brand-shell .soh-open-air-keepsakes__media,
	.soh-brand-shell .soh-open-air-backdrops__media {
		width: min(100%, 680px);
	}
}

@media (max-width: 767px) {
	.soh-brand-shell .soh-commercial-hero {
		padding: 44px 0 78px;
	}

	.soh-brand-shell .soh-commercial-hero__grid {
		gap: 34px;
	}

	.soh-brand-shell .soh-commercial-hero__content h1 {
		font-size: clamp(34px, 10vw, 48px);
		line-height: 1;
	}

	.soh-brand-shell .soh-commercial-hero__intro {
		font-size: 17px;
		line-height: 1.62;
	}

	.soh-brand-shell .soh-commercial-hero__image {
		border-width: 5px;
		border-radius: 22px;
		transform: none;
	}

	.soh-brand-shell .soh-page--corporate-holiday-party-photo-booth .soh-commercial-hero--corporate .soh-commercial-hero__image {
		transform: none;
	}

	.soh-brand-shell .soh-commercial-hero--wedding .soh-commercial-hero__image {
		border-radius: 42% 42% 20px 20px;
	}

	.soh-brand-shell .soh-commercial-hero__stamp {
		right: 10px;
		bottom: -34px;
		width: 108px;
		font-size: 9px;
	}

	.soh-brand-shell .soh-commercial-hero__stamp strong {
		font-size: 14px;
	}

	.soh-brand-shell .soh-commercial-proof {
		margin-top: -20px;
	}

	.soh-brand-shell .soh-commercial-proof__item {
		padding: 20px 17px;
	}

	.soh-brand-shell .soh-commercial-proof__item strong {
		font-size: 20px;
	}

	.soh-brand-shell .soh-commercial-proof__item span {
		font-size: 13px;
	}

	.soh-brand-shell .soh-commercial-choice-card {
		display: flex;
	}

	.soh-brand-shell .soh-commercial-choice-card__media {
		min-height: 0;
		aspect-ratio: 3 / 2;
	}

	.soh-brand-shell .soh-commercial-editorial__media {
		border-width: 5px;
		border-radius: 20px;
	}

	.soh-brand-shell .soh-commercial-editorial__content h2,
	.soh-brand-shell .soh-commercial-discovery h2 {
		font-size: clamp(32px, 9vw, 44px);
	}

	.soh-brand-shell .soh-commercial-text-links {
		display: grid;
		gap: 2px;
	}

	.soh-brand-shell .soh-commercial-steps {
		grid-template-columns: minmax(0, 1fr);
	}

	.soh-brand-shell .soh-commercial-steps li {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 18px;
	}

	.soh-brand-shell .soh-commercial-steps__number {
		margin: 0;
	}

	.soh-brand-shell .soh-commercial-discovery__links {
		padding: 18px 22px;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero {
		padding: 34px 0 60px;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__grid {
		gap: 26px;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__content h1 {
		margin-bottom: 16px;
		font-size: clamp(32px, 9vw, 40px);
		line-height: 1;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__intro {
		font-size: 16px;
		line-height: 1.55;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__note {
		margin-top: 13px;
		font-size: 13px;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-hero__stamp {
		right: 8px;
		bottom: -28px;
		width: 96px;
	}

	.soh-brand-shell .soh-open-air-keepsakes {
		scroll-margin-top: 86px;
		padding-top: 68px;
	}

	.soh-brand-shell .soh-open-air-keepsakes__grid,
	.soh-brand-shell .soh-open-air-backdrops__grid,
	.soh-brand-shell .soh-open-air-testimonial__inner {
		gap: 30px;
	}

	.soh-brand-shell .soh-open-air-format-card {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 17px;
		min-height: 174px;
		padding: 20px 18px;
	}

	.soh-brand-shell .soh-open-air-format-card__visual {
		width: 96px;
		min-height: 132px;
	}

	.soh-brand-shell .soh-open-air-format-card--strip .soh-open-air-format-card__visual img {
		width: 82px;
		max-height: 132px;
	}

	.soh-brand-shell .soh-open-air-format-card--print .soh-open-air-format-card__visual img {
		width: 112px;
	}

	.soh-brand-shell .soh-open-air-format-card--strip .soh-open-air-format-card__shape {
		width: 39px;
	}

	.soh-brand-shell .soh-open-air-format-card--print .soh-open-air-format-card__shape {
		width: 72px;
	}

	.soh-brand-shell .soh-open-air-backdrops__stats {
		margin-top: 22px;
	}

	.soh-brand-shell .soh-open-air-testimonial {
		padding: 68px 0;
	}

	.soh-brand-shell .soh-open-air-testimonial figure {
		padding: 25px 22px;
	}

	.soh-brand-shell .soh-open-air-mid-cta__inner {
		align-items: stretch;
		flex-direction: column;
		padding: 26px 22px;
	}

	.soh-brand-shell .soh-open-air-mid-cta .soh-page-button {
		width: 100%;
		white-space: normal;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-choice-card__body {
		padding: 22px 20px;
	}
}

@media (max-width: 420px) {
	.soh-brand-shell .soh-open-air-format-card {
		grid-template-columns: minmax(0, 1fr);
		gap: 8px;
		min-height: 0;
		padding: 22px 18px 24px;
		text-align: center;
	}

	.soh-brand-shell .soh-open-air-format-card__visual {
		width: 100%;
		min-height: 150px;
	}

	.soh-brand-shell .soh-open-air-format-card--strip .soh-open-air-format-card__visual img {
		width: 100px;
		max-height: 150px;
	}

	.soh-brand-shell .soh-open-air-format-card--print .soh-open-air-format-card__visual img {
		width: 180px;
		max-width: 90%;
	}

	.soh-brand-shell .soh-commercial-proof__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.soh-brand-shell .soh-commercial-proof__item,
	.soh-brand-shell .soh-commercial-proof__item:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--soh-line-soft);
	}

	.soh-brand-shell .soh-commercial-proof__item:last-child {
		border-bottom: 0;
	}

	.soh-brand-shell .soh-commercial-proof__item strong,
	.soh-brand-shell .soh-commercial-proof__item span {
		display: inline;
	}

	.soh-brand-shell .soh-commercial-proof__item strong {
		margin-right: 8px;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-proof__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-proof__item,
	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-proof__item:nth-child(2) {
		border-right: 1px solid var(--soh-line-soft);
		border-bottom: 1px solid var(--soh-line-soft);
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-proof__item:nth-child(even) {
		border-right: 0;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-proof__item:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-proof__item strong,
	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-proof__item span {
		display: block;
	}

	.soh-brand-shell .soh-page--open-air-photo-booth .soh-commercial-proof__item strong {
		margin: 0 0 5px;
	}

	.soh-brand-shell .soh-open-air-backdrops__stats {
		grid-template-columns: minmax(0, 1fr);
	}

	.soh-brand-shell .soh-open-air-backdrops__stats div {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 12px;
		align-items: center;
		padding: 14px 16px;
	}

	.soh-brand-shell .soh-open-air-backdrops__stats strong {
		margin: 0;
	}
}

.soh-corporate-planner-kit {
	background: linear-gradient(125deg, #06162a 0%, #092746 54%, #0b3158 100%);
	color: #fff;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4.5rem, 8vw, 7.5rem) 1.25rem;
	position: relative;
	scroll-margin-top: 5.5rem;
}

.soh-corporate-planner-kit::before {
	background-image: linear-gradient(rgba(141, 195, 244, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(141, 195, 244, 0.07) 1px, transparent 1px);
	background-size: 44px 44px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(90deg, #000, transparent 72%);
	opacity: 0.62;
	pointer-events: none;
	position: absolute;
	z-index: -2;
}

.soh-corporate-planner-kit::after {
	background: #2581d3;
	border-radius: 50%;
	content: "";
	filter: blur(4px);
	height: clamp(20rem, 38vw, 36rem);
	opacity: 0.2;
	pointer-events: none;
	position: absolute;
	right: min(-16rem, -12vw);
	top: -9rem;
	width: clamp(20rem, 38vw, 36rem);
	z-index: -1;
}

.soh-corporate-planner-kit__grid {
	align-items: center;
	display: grid;
	gap: clamp(3rem, 6vw, 6.5rem);
	grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.72fr);
}

.soh-corporate-planner-kit .soh-page-eyebrow {
	color: #8dc3f4;
}

.soh-corporate-planner-kit h2 {
	color: #fff;
	font-size: clamp(2.35rem, 4.3vw, 4.1rem);
	letter-spacing: -0.05em;
	line-height: 1.01;
	margin: 0 0 1.35rem;
	max-width: 16ch;
}

.soh-brand-shell .soh-corporate-planner-kit .soh-corporate-planner-kit__lede,
.soh-brand-shell .soh-corporate-planner-kit--compact p:not(.soh-page-eyebrow) {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.03rem;
	line-height: 1.7;
	max-width: 64ch;
}

.soh-corporate-planner-kit__outcomes {
	display: grid;
	gap: 0.72rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 1.8rem 0;
}

.soh-corporate-planner-kit__outcomes > div {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(141, 195, 244, 0.22);
	border-radius: 1rem;
	min-height: 10.5rem;
	padding: 1.05rem;
}

.soh-corporate-planner-kit__outcomes span {
	color: #8dc3f4;
	display: block;
	font-size: 0.73rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin-bottom: 0.78rem;
}

.soh-corporate-planner-kit__outcomes strong {
	display: block;
	font-size: 0.96rem;
	line-height: 1.32;
}

.soh-corporate-planner-kit__outcomes p {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.82rem;
	line-height: 1.52;
	margin: 0.48rem 0 0;
}

.soh-corporate-planner-kit .soh-page-checks {
	display: grid;
	gap: 0.78rem 1.2rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 0 2rem;
}

.soh-corporate-planner-kit .soh-page-checks li {
	color: #fff;
	font-size: 0.91rem;
	line-height: 1.55;
}

.soh-corporate-planner-kit .soh-page-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.soh-corporate-planner-kit .soh-page-button {
	background: #fff !important;
	border-color: #fff !important;
	color: #0b2748 !important;
	min-height: 48px;
}

.soh-corporate-planner-kit .soh-page-button:hover {
	background: #dceeff !important;
	border-color: #dceeff !important;
	color: #07182d !important;
}

.soh-corporate-planner-kit .soh-page-button--secondary {
	background: transparent !important;
	border-color: rgba(255, 255, 255, 0.7) !important;
	color: #fff !important;
}

.soh-corporate-planner-kit .soh-page-button--secondary:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	border-color: #fff !important;
	color: #fff !important;
}

.soh-brand-shell .soh-corporate-planner-kit .soh-corporate-planner-kit__meta {
	color: rgba(255, 255, 255, 0.66);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.77rem;
	font-weight: 700;
	gap: 0.62rem 1.35rem;
	letter-spacing: 0.025em;
	margin: 1rem 0 0;
}

.soh-corporate-planner-kit__meta span {
	position: relative;
}

.soh-corporate-planner-kit__meta span:not(:last-child)::after {
	color: #69b0ed;
	content: "•";
	position: absolute;
	right: -0.85rem;
}

.soh-corporate-planner-kit__preview {
	margin: 0 auto 0.6rem;
	max-width: 410px;
	position: relative;
	width: 100%;
}

.soh-corporate-planner-kit__preview::before,
.soh-corporate-planner-kit__preview::after {
	background: #dce8f3;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 0.85rem;
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
	content: "";
	inset: 1.1rem -0.7rem 2.3rem 1.1rem;
	position: absolute;
	transform: rotate(4deg);
}

.soh-corporate-planner-kit__preview::after {
	background: #f2f6fa;
	inset: 0.55rem -0.2rem 2rem 0.5rem;
	transform: rotate(2.4deg);
}

.soh-corporate-planner-kit__document {
	border-radius: 0.68rem;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
	display: block;
	overflow: visible;
	position: relative;
	transform: rotate(1.15deg);
	transition: transform 180ms ease, box-shadow 180ms ease;
	z-index: 2;
}

.soh-corporate-planner-kit__document:hover {
	box-shadow: 0 40px 92px rgba(0, 0, 0, 0.46);
	transform: rotate(0.2deg) translateY(-4px);
}

.soh-corporate-planner-kit__document:focus-visible {
	box-shadow: 0 0 0 5px #fff, 0 0 0 9px #45a3f2, 0 34px 80px rgba(0, 0, 0, 0.38);
	outline: 0;
}

.soh-corporate-planner-kit__document img {
	border-radius: 0.68rem;
	display: block;
	height: auto;
	width: 100%;
}

.soh-corporate-planner-kit__badge {
	background: #f4bf3e;
	border: 3px solid #fff;
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
	color: #07182d;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	padding: 0.7rem 0.9rem;
	position: absolute;
	right: -1rem;
	top: 1rem;
	z-index: 3;
}

.soh-corporate-planner-kit__preview figcaption {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.78rem;
	line-height: 1.5;
	margin-top: 1.35rem;
	position: relative;
	text-align: center;
	z-index: 3;
}

.soh-corporate-planner-kit--compact {
	padding-bottom: clamp(3.1rem, 6vw, 5rem);
	padding-top: clamp(3.1rem, 6vw, 5rem);
}

.soh-corporate-planner-kit__compact-grid {
	align-items: center;
	display: grid;
	gap: 2rem;
	grid-template-columns: minmax(0, 1fr) auto;
}

.soh-corporate-planner-kit--compact h2 {
	font-size: clamp(2rem, 3.3vw, 3.15rem);
	max-width: 24ch;
}

.soh-corporate-planner-kit--compact .soh-page-actions {
	justify-content: flex-end;
	max-width: 27rem;
}

@media (max-width: 940px) {
	.soh-corporate-planner-kit__grid {
		grid-template-columns: 1fr;
	}

	.soh-corporate-planner-kit h2 {
		max-width: 19ch;
	}

	.soh-corporate-planner-kit__preview {
		max-width: 360px;
	}

	.soh-corporate-planner-kit__compact-grid {
		grid-template-columns: 1fr;
	}

	.soh-corporate-planner-kit--compact .soh-page-actions {
		justify-content: flex-start;
		max-width: none;
	}
}

@media (max-width: 620px) {
	.soh-corporate-planner-kit {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.soh-corporate-planner-kit h2 {
		font-size: clamp(2.15rem, 10.8vw, 3rem);
		max-width: none;
	}

	.soh-corporate-planner-kit__outcomes,
	.soh-corporate-planner-kit .soh-page-checks {
		grid-template-columns: 1fr;
	}

	.soh-corporate-planner-kit__outcomes > div {
		min-height: 0;
	}

	.soh-corporate-planner-kit .soh-page-actions,
	.soh-corporate-planner-kit .soh-page-button {
		width: 100%;
	}

	.soh-corporate-planner-kit__meta {
		gap: 0.45rem;
	}

	.soh-corporate-planner-kit__meta span {
		background: rgba(255, 255, 255, 0.08);
		border-radius: 999px;
		padding: 0.42rem 0.62rem;
	}

	.soh-corporate-planner-kit__meta span::after {
		display: none;
	}

	.soh-corporate-planner-kit__preview {
		max-width: min(82vw, 330px);
	}

	.soh-corporate-planner-kit__badge {
		right: -0.35rem;
		top: 0.7rem;
	}
}

@media (max-width: 360px) {
	.soh-corporate-planner-kit .soh-page-button {
		font-size: 0.82rem;
		padding-left: 0.55rem;
		padding-right: 0.55rem;
		white-space: nowrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	.soh-brand-shell .soh-commercial-hero__image,
	.soh-brand-shell .soh-commercial-hero__stamp,
	.soh-corporate-planner-kit__document {
		transform: none;
		transition: none;
	}
}
