/**
 * SP LP Diag BeautyPlan — Base Styles
 *
 * Provides structural utilities for the native LP layout.
 * Inline CSS per-section is preserved in template parts (Phase 1).
 * This file adds only global resets and utility classes.
 *
 * @since 2.2.0
 */

/* ── Canvas reset ── */
.sp-lp-diag-beautyplan {
	margin: 0;
	padding: 0;
	background: #fff;
}

/* ── Container ── */
.sp-lp-container {
	width: min(1120px, calc(100% - 32px));
	margin-inline: auto;
}

/* ── Section spacing ── */
.sp-lp-section {
	padding: clamp(56px, 8vw, 120px) 0;
}

/* ── Dark background context ── */
.sp-bg-dark {
	background: #090707;
	color: var(--sp-color-on-dark, #fff7f9);
}
.sp-bg-dark h1,
.sp-bg-dark h2,
.sp-bg-dark h3,
.sp-bg-dark p,
.sp-bg-dark li,
.sp-bg-dark span {
	color: inherit;
}

/* ── Light card context ── */
.sp-bg-light,
.sp-lp-card {
	background: #fff;
	color: var(--sp-color-text, #1a0a10);
}

.sp-lp-card {
	border-radius: 24px;
	border: 1px solid rgba(122, 24, 55, .10);
	box-shadow: 0 24px 80px rgba(25, 10, 16, .08);
}

/* ── Grid ── */
.sp-lp-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 56px);
}

@media (max-width: 768px) {
	.sp-lp-grid-2 {
		grid-template-columns: 1fr;
	}
}

/* ── VSL section wrapper ── */
.sp-lp-vsl {
	padding: clamp(40px, 6vw, 80px) 0;
}
