:root {
	--color-bg: #f6f5f2;
	--color-bg-alt: #e7e4dd;
	--color-surface: #ffffff;
	--color-text: #2f3135;
	--color-heading: #4e355b;
	--color-primary: #b85e3b;
	--color-primary-hover: #94482e;
	--color-accent: #d0a34a;
	--color-highlight: #ccd6d4;
	--color-border: #dfd9d0;
	--color-icon: #4f7c74;
	--color-success: #3c8c6c;
	--color-warning: #d8a545;
	--color-danger: #c54b4b;
	--gray-50: #f9f8f6;
	--gray-100: #f0ece6;
	--gray-200: #e2d9cf;
	--gray-300: #cec1b3;
	--gray-400: #b2a394;
	--gray-500: #8e8376;
	--gray-600: #6c645a;
	--gray-700: #4c453d;
	--gray-800: #34302b;
	--gray-900: #201d1a;
	--font-sans:
		"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	--font-serif: "Playfair Display", "Georgia", serif;
	--font-mono: "JetBrains Mono", "SF Mono", monospace;
	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 1.875rem;
	--text-4xl: 2.25rem;
	--text-5xl: 3rem;
	--leading-tight: 1.2;
	--leading-snug: 1.35;
	--leading-normal: 1.6;
	--leading-relaxed: 1.8;
	--space-0: 0;
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-7: 28px;
	--space-8: 32px;
	--space-9: 36px;
	--space-10: 40px;
	--space-12: 48px;
	--space-14: 56px;
	--space-16: 64px;
	--space-20: 80px;
	--space-24: 96px;
	--radius-xs: 4px;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-pill: 999px;
	--shadow-xs: 0 4px 12px rgba(15, 14, 12, 0.06);
	--shadow-sm: 0 10px 30px rgba(15, 14, 12, 0.08);
	--shadow-md: 0 18px 45px rgba(15, 14, 12, 0.12);
	--shadow-lg: 0 30px 80px rgba(15, 14, 12, 0.18);
	--shadow-soft-glass: 0 24px 60px rgba(15, 14, 12, 0.18);
	--shadow-border-glass: 0 0 0 1px rgba(255, 255, 255, 0.26);
	--transition-fast: 150ms ease-out;
	--transition-base: 220ms ease-out;
	--transition-slow: 360ms ease-out;
	--container-max: 1200px;
	--container-wide: 1400px;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
}
html,
body {
	height: 100%;
}
html {
	scroll-behavior: smooth;
	text-size-adjust: 100%;
}
body {
	font-family: var(--font-sans);
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	background-color: var(--color-bg);
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}
button {
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
ol {
	list-style: none;
}
p {
	margin-bottom: var(--space-4);
	font-size: var(--text-base);
	line-height: var(--leading-relaxed);
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-serif);
	font-weight: 500;
	color: var(--color-heading);
	line-height: var(--leading-tight);
	letter-spacing: 0.02em;
}
h1 {
	font-size: var(--text-5xl);
	margin-bottom: var(--space-4);
}
h2 {
	font-size: var(--text-4xl);
	margin-bottom: var(--space-4);
}
h3 {
	font-size: var(--text-3xl);
	margin-bottom: var(--space-3);
}
h4 {
	font-size: var(--text-2xl);
	margin-bottom: var(--space-3);
}
h5 {
	font-size: var(--text-xl);
	margin-bottom: var(--space-2);
}
h6 {
	font-size: var(--text-lg);
	margin-bottom: var(--space-2);
}
a:hover {
	color: var(--color-primary);
}
main {
	min-height: 60vh;
}
::selection {
	background-color: var(--color-heading);
	color: #fff;
}
.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding-left: var(--space-5);
	padding-right: var(--space-5);
}
.container-wide {
	width: 100%;
	max-width: var(--container-wide);
	margin: 0 auto;
	padding-left: var(--space-6);
	padding-right: var(--space-6);
}
.section {
	padding-top: var(--space-16);
	padding-bottom: var(--space-16);
}
.section-alt {
	background-color: var(--color-bg-alt);
}
.flex {
	display: flex;
}
.inline-flex {
	display: inline-flex;
}
.flex-col {
	flex-direction: column;
}
.flex-row {
	flex-direction: row;
}
.flex-wrap {
	flex-wrap: wrap;
}
.items-center {
	align-items: center;
}
.items-start {
	align-items: flex-start;
}
.items-end {
	align-items: flex-end;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.justify-end {
	justify-content: flex-end;
}
.gap-3 {
	gap: var(--space-3);
}
.gap-4 {
	gap: var(--space-4);
}
.gap-6 {
	gap: var(--space-6);
}
.gap-8 {
	gap: var(--space-8);
}
.grid {
	display: grid;
}
.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-auto-fit {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid-gap-4 {
	gap: var(--space-4);
}
.grid-gap-6 {
	gap: var(--space-6);
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.8rem;
	border-radius: var(--radius-pill);
	border: 1px solid transparent;
	font-size: var(--text-sm);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 500;
	background: var(--color-primary);
	color: #fff !important;
	box-shadow: var(--shadow-sm);
	transition:
		background-color var(--transition-base),
		box-shadow var(--transition-base),
		transform var(--transition-fast),
		border-color var(--transition-base),
		color var(--transition-base);
}
.btn:hover {
	background: var(--color-primary-hover);
	box-shadow: var(--shadow-md);
	transform: translateY(-1px);
}
.btn:active {
	transform: translateY(0);
	box-shadow: var(--shadow-xs);
}
.btn-outline {
	background: transparent;
	color: var(--color-primary) !important;
	border-color: rgba(184, 94, 59, 0.4);
	box-shadow: none;
}
.btn-outline:hover {
	background: rgba(184, 94, 59, 0.06);
	border-color: var(--color-primary);
}
.btn-ghost {
	background: rgba(255, 255, 255, 0.16);
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.36);
	backdrop-filter: blur(16px);
	box-shadow: var(--shadow-soft-glass), var(--shadow-border-glass);
}
.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.24);
}
.btn:disabled,
.btn[aria-disabled="true"] {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}
input,
textarea,
select {
	width: 100%;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	background-color: rgba(255, 255, 255, 0.9);
	padding: 0.85rem 1rem;
	font-size: var(--text-sm);
	line-height: var(--leading-snug);
	transition:
		border-color var(--transition-base),
		box-shadow var(--transition-base),
		background-color var(--transition-base),
		transform var(--transition-fast);
}
textarea {
	min-height: 140px;
	resize: vertical;
}
input::placeholder,
textarea::placeholder {
	color: var(--gray-500);
}
input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--color-accent);
	box-shadow:
		0 0 0 1px rgba(208, 163, 74, 0.35),
		0 14px 40px rgba(15, 14, 12, 0.16);
	background-color: #fff;
}
input[disabled],
textarea[disabled],
select[disabled] {
	background-color: var(--gray-100);
	cursor: not-allowed;
	opacity: 0.7;
}
.form-label {
	display: block;
	margin-bottom: var(--space-2);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--gray-800);
}
.form-row {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	margin-bottom: var(--space-4);
}
.form-helper {
	font-size: var(--text-xs);
	color: var(--gray-600);
}
.form-error {
	font-size: var(--text-xs);
	color: var(--color-danger);
}
.card {
	position: relative;
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(223, 217, 208, 0.9);
	box-shadow: var(--shadow-sm);
	padding: var(--space-6);
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base),
		background-color var(--transition-base);
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: rgba(208, 163, 74, 0.45);
}
.card-muted {
	background: linear-gradient(
		135deg,
		rgba(231, 228, 221, 0.92),
		rgba(246, 245, 242, 0.95)
	);
}
.card-glass {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.92),
		rgba(246, 245, 242, 0.88)
	);
	backdrop-filter: blur(22px);
	box-shadow: var(--shadow-soft-glass), var(--shadow-border-glass);
	border-radius: var(--radius-xl);
	border: 1px solid rgba(255, 255, 255, 0.6);
}
.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-radius: var(--radius-pill);
	padding: 0.25rem 0.7rem;
	font-size: var(--text-xs);
	font-weight: 500;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	background-color: rgba(79, 124, 116, 0.08);
	color: var(--color-icon);
	border: 1px solid rgba(79, 124, 116, 0.18);
}
.badge-gold {
	background-color: rgba(208, 163, 74, 0.12);
	border-color: rgba(208, 163, 74, 0.42);
	color: var(--color-accent);
}
.tag-pill {
	display: inline-flex;
	align-items: center;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(223, 217, 208, 0.9);
	padding: 0.35rem 0.9rem;
	font-size: var(--text-xs);
	color: var(--gray-700);
	background-color: rgba(255, 255, 255, 0.9);
}
.icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background-color: rgba(204, 214, 212, 0.3);
	color: var(--color-icon);
}
.hero-cinematic {
	position: relative;
	padding-top: var(--space-20);
	padding-bottom: var(--space-20);
}
.hero-cinematic::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top, rgba(79, 124, 116, 0.18), transparent 60%),
		radial-gradient(circle at bottom, rgba(184, 94, 59, 0.18), transparent 55%);
	opacity: 0.95;
	pointer-events: none;
}
.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
	gap: var(--space-10);
	align-items: center;
}
.hero-eyebrow {
	font-size: var(--text-xs);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gray-600);
	margin-bottom: var(--space-3);
}
.hero-title {
	font-size: clamp(2.6rem, 3.4vw, 3.4rem);
	line-height: 1.08;
	margin-bottom: var(--space-4);
}
.hero-subtitle {
	font-size: var(--text-lg);
	color: var(--gray-700);
	max-width: 34rem;
	margin-bottom: var(--space-6);
}
.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	align-items: center;
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--gray-600);
}
.hero-figure {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background:
		radial-gradient(
			circle at top left,
			rgba(255, 255, 255, 0.12),
			transparent 55%
		),
		radial-gradient(
			circle at bottom right,
			rgba(79, 124, 116, 0.25),
			transparent 55%
		);
}
.hero-figure-media {
	position: relative;
	isolation: isolate;
}
.hero-badge {
	position: absolute;
	right: 8%;
	bottom: 8%;
	padding: 0.75rem 1.2rem;
	border-radius: var(--radius-lg);
	background: rgba(15, 14, 12, 0.68);
	backdrop-filter: blur(18px);
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	font-size: var(--text-xs);
	box-shadow: var(--shadow-soft-glass);
}
.hero-badge span:first-child {
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}
.hero-badge-strong {
	font-size: var(--text-sm);
	font-weight: 500;
}
.pill-metadata {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.9rem;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(223, 217, 208, 0.9);
	background: rgba(246, 245, 242, 0.86);
	font-size: var(--text-xs);
	color: var(--gray-700);
}
.pill-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--color-accent);
	box-shadow: 0 0 0 4px rgba(208, 163, 74, 0.23);
}
.pill-metadata-ghost {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}
.pill-metadata-ghost .pill-dot {
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.24);
}
.section-heading {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	margin-bottom: var(--space-8);
	max-width: 40rem;
}
.section-eyebrow {
	font-size: var(--text-xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gray-600);
}
.section-title {
	font-size: var(--text-3xl);
}
.section-subtitle {
	font-size: var(--text-base);
	color: var(--gray-700);
	max-width: 32rem;
}
.lux-grid {
	display: grid;
	grid-template-columns: 2fr 1.4fr;
	gap: var(--space-10);
	align-items: start;
}
.lux-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	margin-top: var(--space-2);
}
.lux-list-item {
	display: flex;
	gap: var(--space-3);
	align-items: flex-start;
	font-size: var(--text-sm);
	color: var(--gray-800);
}
.lux-list-bullet {
	margin-top: 4px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(208, 163, 74, 0.2);
}
.chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin-top: var(--space-3);
}
.chip {
	padding: 0.3rem 0.8rem;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(223, 217, 208, 0.9);
	font-size: var(--text-xs);
	color: var(--gray-700);
	background-color: rgba(255, 255, 255, 0.9);
}
.status-dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--color-success);
	box-shadow: 0 0 0 4px rgba(60, 140, 108, 0.28);
}
.status-muted {
	background: var(--gray-400);
	box-shadow: none;
}
.text-xs {
	font-size: var(--text-xs);
}
.text-sm {
	font-size: var(--text-sm);
}
.text-base {
	font-size: var(--text-base);
}
.text-lg {
	font-size: var(--text-lg);
}
.text-muted {
	color: var(--gray-600);
}
.text-soft {
	color: var(--gray-500);
}
.text-upper {
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.fw-medium {
	font-weight: 500;
}
.fw-semibold {
	font-weight: 600;
}
.mt-0 {
	margin-top: 0;
}
.mt-2 {
	margin-top: var(--space-2);
}
.mt-3 {
	margin-top: var(--space-3);
}
.mt-4 {
	margin-top: var(--space-4);
}
.mt-6 {
	margin-top: var(--space-6);
}
.mt-8 {
	margin-top: var(--space-8);
}
.mb-0 {
	margin-bottom: 0;
}
.mb-2 {
	margin-bottom: var(--space-2);
}
.mb-3 {
	margin-bottom: var(--space-3);
}
.mb-4 {
	margin-bottom: var(--space-4);
}
.mb-6 {
	margin-bottom: var(--space-6);
}
.mb-8 {
	margin-bottom: var(--space-8);
}
.py-8 {
	padding-top: var(--space-8);
	padding-bottom: var(--space-8);
}
.py-12 {
	padding-top: var(--space-12);
	padding-bottom: var(--space-12);
}
.px-4 {
	padding-left: var(--space-4);
	padding-right: var(--space-4);
}
.rounded-md {
	border-radius: var(--radius-md);
}
.rounded-lg {
	border-radius: var(--radius-lg);
}
.rounded-xl {
	border-radius: var(--radius-xl);
}
.shadow-sm {
	box-shadow: var(--shadow-sm);
}
.shadow-md {
	box-shadow: var(--shadow-md);
}
.shadow-lg {
	box-shadow: var(--shadow-lg);
}
.border {
	border: 1px solid var(--color-border);
}
.border-top {
	border-top: 1px solid var(--color-border);
}
.border-muted {
	border-color: rgba(223, 217, 208, 0.7);
}
.accent-bar {
	width: 48px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(
		90deg,
		rgba(208, 163, 74, 1),
		rgba(184, 94, 59, 0.95)
	);
	opacity: 0.9;
}
.ribbon {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0.5rem 1.2rem;
	border-radius: 999px;
	border: 1px solid rgba(223, 217, 208, 0.9);
	background: rgba(246, 245, 242, 0.92);
	box-shadow: var(--shadow-xs);
	font-size: var(--text-xs);
	color: var(--gray-700);
}
.ribbon strong {
	font-weight: 600;
	color: var(--color-heading);
}
.badge-locale {
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	border: 1px solid rgba(79, 124, 116, 0.32);
	color: var(--color-icon);
	font-size: var(--text-xs);
	background-color: rgba(204, 214, 212, 0.28);
}
.focus-outline-none:focus {
	outline: none;
}
.focus-visible-outline:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
}
.link-underline {
	position: relative;
	display: inline-block;
}
.link-underline::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 1px;
	background: linear-gradient(
		90deg,
		rgba(184, 94, 59, 1),
		rgba(208, 163, 74, 1)
	);
	transform-origin: left;
	transform: scaleX(0);
	transition: transform var(--transition-base);
}
.link-underline:hover::after {
	transform: scaleX(1);
}
.chip-soft-highlight {
	background-color: rgba(204, 214, 212, 0.4);
	border-color: rgba(204, 214, 212, 0.9);
}
.icon-accent {
	color: var(--color-accent);
}
.icon-muted {
	color: var(--gray-500);
}
.icon-primary {
	color: var(--color-primary);
}
.pill-locale {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
	background: rgba(79, 124, 116, 0.12);
	border: 1px solid rgba(79, 124, 116, 0.35);
	color: var(--color-icon);
	font-size: var(--text-xs);
}
.pill-locale span {
	font-weight: 500;
}
.glass-panel {
	position: relative;
	border-radius: var(--radius-xl);
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0.9),
		rgba(246, 245, 242, 0.85)
	);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: var(--shadow-soft-glass);
	overflow: hidden;
}
.glass-panel::before {
	content: "";
	position: absolute;
	inset: -40%;
	background:
		radial-gradient(circle at 0 0, rgba(208, 163, 74, 0.16), transparent 55%),
		radial-gradient(
			circle at 100% 100%,
			rgba(79, 124, 116, 0.16),
			transparent 55%
		);
	opacity: 0.9;
	pointer-events: none;
}
.glass-panel-inner {
	position: relative;
	padding: var(--space-6);
}
.pill-notice {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(223, 217, 208, 0.9);
	font-size: var(--text-xs);
	color: var(--gray-700);
}
.pill-notice strong {
	font-weight: 600;
	color: var(--color-heading);
}
.disclaimer-text {
	font-size: var(--text-xs);
	color: var(--gray-600);
	line-height: var(--leading-relaxed);
}
.disclaimer-text strong {
	color: var(--gray-800);
}
:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
}
::-moz-focus-inner {
	border: 0;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
@media (max-width: 1024px) {
	.hero-inner {
		grid-template-columns: 1.2fr 1fr;
		gap: var(--space-8);
	}
	.lux-grid {
		grid-template-columns: 1fr;
		gap: var(--space-8);
	}
}
@media (max-width: 768px) {
	.container,
	.container-wide {
		padding-left: var(--space-4);
		padding-right: var(--space-4);
	}
	.section {
		padding-top: var(--space-12);
		padding-bottom: var(--space-12);
	}
	h1 {
		font-size: 2.2rem;
	}
	h2 {
		font-size: 1.9rem;
	}
	.hero-cinematic {
		padding-top: var(--space-14);
		padding-bottom: var(--space-14);
	}
	.hero-inner {
		grid-template-columns: 1fr;
	}
	.hero-figure {
		order: -1;
	}
	.hero-title {
		font-size: 2.1rem;
	}
	.grid-2,
	.grid-3 {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 480px) {
	.hero-subtitle {
		font-size: var(--text-base);
	}
	.btn {
		width: 100%;
		justify-content: center;
	}
	.card {
		padding: var(--space-5);
	}
	.hero-badge {
		right: 6%;
		bottom: 6%;
		max-width: 70%;
	}
}
