/**
 * Seoul Beauty Hub — homepage system v1.1
 * Design tokens from Design System SBH
 */

:root {
	/* Ivory · Warm Beige · Soft White · Champagne Gold (matte) · Soft Charcoal */
	--sbh-bg-canvas: #f7f2ea; /* Ivory */
	--sbh-bg-soft-white: #fcfaf7; /* Soft White */
	--sbh-bg-surface: rgba(255, 255, 255, 0.48);
	--sbh-bg-subtle: #ebe3d6; /* Warm Beige */
	--sbh-bg-emphasis: #2f2c2a;
	--sbh-bg-emphasis-deep: #1f1d1c;
	--sbh-text-primary: #2f2c2a;
	--sbh-text-secondary: #6e675f;
	--sbh-text-inverse: #f7f2ea;
	--sbh-border: rgba(47, 44, 42, 0.08);
	--sbh-border-strong: rgba(47, 44, 42, 0.14);
	--sbh-accent-soft: #c4a574;
	--sbh-accent-gold: #b8955e;
	--sbh-accent-gold-soft: rgba(196, 165, 116, 0.22);
	--sbh-focus: rgba(184, 149, 94, 0.35);
	--sbh-glass: rgba(255, 252, 247, 0.38);
	--sbh-glass-border: rgba(255, 255, 255, 0.42);
	--sbh-glass-blur: 18px;

	--sbh-font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--sbh-font-ui: "Manrope", "Segoe UI", sans-serif;

	--sbh-container: 74rem;
	--sbh-header-h: 4.5rem;
	--sbh-header-h-scrolled: 3.55rem;
	--sbh-radius: 14px;
	--sbh-radius-lg: 22px;
	--sbh-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--sbh-shadow-soft: 0 10px 28px rgba(47, 44, 42, 0.045);
	--sbh-shadow-glass: 0 6px 22px rgba(47, 44, 42, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--sbh-font-ui);
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 1.72;
	letter-spacing: 0.01em;
	color: var(--sbh-text-primary);
	background: var(--sbh-bg-canvas);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--sbh-bg-emphasis);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--sbh-text-primary);
}

:focus-visible {
	outline: 2px solid var(--sbh-bg-emphasis);
	outline-offset: 3px;
}

.sbh-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sbh-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 2000;
	padding: 0.75rem 1rem;
	background: var(--sbh-bg-emphasis);
	color: var(--sbh-text-inverse);
	text-decoration: none;
	border-radius: 4px;
}

.sbh-skip:focus {
	left: 1rem;
	top: 1rem;
}

.sbh-container {
	width: min(100% - 2.75rem, var(--sbh-container));
	margin-inline: auto;
}

/* Buttons */
.sbh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3.05rem;
	padding: 0.8rem 1.55rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--sbh-font-ui);
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition:
		border-color 0.45s var(--sbh-ease),
		box-shadow 0.45s var(--sbh-ease),
		filter 0.45s var(--sbh-ease);
}

.sbh-btn:hover {
	text-decoration: none;
}

.sbh-btn--primary {
	background: var(--sbh-accent-soft);
	color: var(--sbh-bg-emphasis-deep);
	border-color: rgba(184, 149, 94, 0.35);
	box-shadow:
		0 8px 22px rgba(184, 149, 94, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.sbh-btn--primary:hover {
	background: var(--sbh-accent-soft);
	color: var(--sbh-bg-emphasis-deep);
	box-shadow:
		0 8px 22px rgba(184, 149, 94, 0.18),
		inset 0 0 22px rgba(255, 248, 235, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.sbh-btn--outline {
	background: var(--sbh-glass);
	backdrop-filter: blur(var(--sbh-glass-blur));
	-webkit-backdrop-filter: blur(var(--sbh-glass-blur));
	border-color: var(--sbh-border-strong);
	color: var(--sbh-text-primary);
	box-shadow: var(--sbh-shadow-glass);
}

.sbh-btn--outline:hover {
	border-color: rgba(196, 165, 116, 0.55);
	color: var(--sbh-text-primary);
	background: var(--sbh-glass);
	box-shadow:
		var(--sbh-shadow-glass),
		inset 0 0 18px rgba(255, 248, 235, 0.35);
}

.sbh-btn--on-dark {
	background: var(--sbh-accent-soft);
	color: var(--sbh-bg-emphasis-deep);
	border-color: rgba(184, 149, 94, 0.4);
	box-shadow:
		0 8px 22px rgba(0, 0, 0, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.sbh-btn--on-dark:hover {
	background: var(--sbh-accent-soft);
	color: var(--sbh-bg-emphasis-deep);
	box-shadow:
		0 8px 22px rgba(0, 0, 0, 0.16),
		inset 0 0 22px rgba(255, 248, 235, 0.42),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.sbh-btn--lg {
	min-height: 3.4rem;
	padding-inline: 1.8rem;
	font-size: 1rem;
}

.sbh-btn--sm {
	min-height: 2.55rem;
	padding: 0.55rem 1.1rem;
	font-size: 0.875rem;
}

.sbh-link {
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	color: var(--sbh-bg-emphasis);
	border-bottom: 1px solid var(--sbh-accent-soft);
	padding-bottom: 0.12em;
	transition: border-color 0.2s var(--sbh-ease), color 0.2s var(--sbh-ease);
}

.sbh-link:hover {
	border-bottom-color: var(--sbh-accent-gold);
	color: var(--sbh-accent-gold);
}

/* Header */
.sbh-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--sbh-header-h);
	background: rgba(247, 242, 234, 0.42);
	backdrop-filter: blur(14px) saturate(1.08);
	-webkit-backdrop-filter: blur(14px) saturate(1.08);
	border-bottom: 1px solid transparent;
	transition:
		background 0.4s var(--sbh-ease),
		border-color 0.4s var(--sbh-ease),
		box-shadow 0.4s var(--sbh-ease),
		height 0.4s var(--sbh-ease),
		backdrop-filter 0.4s var(--sbh-ease);
}

.sbh-header.is-scrolled {
	background: rgba(252, 250, 247, 0.72);
	backdrop-filter: blur(22px) saturate(1.12);
	-webkit-backdrop-filter: blur(22px) saturate(1.12);
	border-bottom-color: rgba(196, 165, 116, 0.42);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
	height: var(--sbh-header-h-scrolled);
}

.sbh-header__inner {
	height: 100%;
	width: min(100% - 2.75rem, var(--sbh-container));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.sbh-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	text-decoration: none;
	color: var(--sbh-text-primary);
	flex-shrink: 0;
}

.sbh-logo:hover {
	color: var(--sbh-text-primary);
}

.sbh-logo__mark {
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--sbh-accent-gold) 0%, #d9c4a0 55%, var(--sbh-bg-subtle) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
	flex-shrink: 0;
}

.sbh-logo__text {
	font-family: var(--sbh-font-display);
	font-size: 1.12rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1;
}

.sbh-nav {
	display: flex;
	align-items: center;
	gap: 1.35rem;
}

.sbh-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.15rem 1.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sbh-nav__list a,
.sbh-nav__link {
	font-size: 0.84rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: var(--sbh-text-secondary);
	text-decoration: none;
	transition: color 0.2s var(--sbh-ease);
}

.sbh-nav__list a:hover,
.sbh-nav__list .current-menu-item > a,
.sbh-nav__item.is-active .sbh-nav__link {
	color: var(--sbh-text-primary);
}

.sbh-nav__cta {
	text-decoration: none;
	flex-shrink: 0;
}

.sbh-nav-toggle {
	display: none;
	align-items: center;
	gap: 0.55rem;
	padding: 0.45rem 0.7rem;
	border: 1px solid var(--sbh-border);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.7);
	font: inherit;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--sbh-text-primary);
	cursor: pointer;
}

.sbh-nav-toggle__bars {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 14px;
}

.sbh-nav-toggle__bars span {
	display: block;
	height: 1.5px;
	background: currentColor;
	transition: transform 0.25s var(--sbh-ease);
}

.sbh-nav-toggle[aria-expanded="true"] .sbh-nav-toggle__bars span:first-child {
	transform: translateY(3.25px) rotate(45deg);
}

.sbh-nav-toggle[aria-expanded="true"] .sbh-nav-toggle__bars span:last-child {
	transform: translateY(-3.25px) rotate(-45deg);
}

/* Sections */
.sbh-home {
	padding-top: 0;
}

.sbh-section {
	padding: 9.25rem 0;
	background: var(--sbh-bg-canvas);
}

.sbh-section--subtle {
	background: linear-gradient(180deg, rgba(235, 227, 214, 0.42) 0%, rgba(247, 242, 234, 0.28) 100%);
}

.sbh-section--soft-white {
	background: var(--sbh-bg-soft-white);
}

.sbh-section--ivory {
	background: var(--sbh-bg-canvas);
}

.sbh-section--beige {
	background: linear-gradient(180deg, #efe7db 0%, #ebe3d6 48%, #f3ebe1 100%);
}

.sbh-section__head {
	max-width: 36rem;
	margin-bottom: 4.25rem;
}

.sbh-section__head--split {
	max-width: none;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem 2rem;
}

.sbh-section__title {
	margin: 0 0 1rem;
	font-family: var(--sbh-font-display);
	font-size: clamp(1.85rem, 2.8vw, 2.55rem);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.22;
}

.sbh-section__lead {
	margin: 0;
	color: var(--sbh-text-secondary);
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.7;
	max-width: 36rem;
}

/* Hero */
.sbh-hero {
	position: relative;
	isolation: isolate;
	min-height: 100svh;
	min-height: 100dvh;
	display: flex;
	align-items: stretch;
	padding: calc(var(--sbh-header-h) + 0.5rem) 0 0;
	overflow: hidden;
	background:
		radial-gradient(ellipse 58% 48% at 14% 16%, rgba(196, 165, 116, 0.14), transparent 64%),
		radial-gradient(ellipse 42% 38% at 90% 78%, rgba(235, 227, 214, 0.75), transparent 60%),
		linear-gradient(168deg, #faf7f1 0%, var(--sbh-bg-canvas) 46%, #efe6d8 100%);
}

.sbh-hero__glow {
	pointer-events: none;
	position: absolute;
	inset: -18% -8% auto;
	height: 72%;
	background:
		radial-gradient(ellipse 48% 58% at 72% 32%, rgba(196, 165, 116, 0.16), transparent 72%),
		radial-gradient(ellipse 36% 42% at 28% 62%, rgba(255, 255, 255, 0.42), transparent 68%);
	animation: sbh-light-drift 18s ease-in-out infinite alternate;
	z-index: 0;
}

.sbh-hero__light {
	pointer-events: none;
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient(
		ellipse 70% 55% at 48% 28%,
		rgba(212, 184, 138, 0.11),
		transparent 68%
	);
	mix-blend-mode: soft-light;
}

.sbh-hero__shimmer {
	pointer-events: none;
	position: absolute;
	inset: 0;
	z-index: 2;
	opacity: 0.35;
	background: linear-gradient(
		112deg,
		transparent 0%,
		transparent 42%,
		rgba(255, 248, 232, 0.14) 50%,
		transparent 58%,
		transparent 100%
	);
	background-size: 240% 100%;
	animation: sbh-hero-shimmer 22s ease-in-out infinite;
}

@keyframes sbh-hero-shimmer {
	0%,
	12% { background-position: 120% 0; }
	50% { background-position: -20% 0; }
	88%,
	100% { background-position: -20% 0; }
}

@keyframes sbh-light-drift {
	from { transform: translate3d(-1.5%, -0.8%, 0) scale(1); opacity: 0.88; }
	to { transform: translate3d(2.2%, 1.4%, 0) scale(1.04); opacity: 1; }
}

.sbh-hero__layout {
	position: relative;
	z-index: 3;
	width: min(100% - 2.75rem, var(--sbh-container));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 4vw, 4.5rem);
	align-items: center;
	min-height: calc(100svh - var(--sbh-header-h) - 0.5rem);
	min-height: calc(100dvh - var(--sbh-header-h) - 0.5rem);
	padding-bottom: 3.5rem;
	will-change: transform;
}

.sbh-hero__brand {
	margin: 0 0 1.15rem;
	font-family: var(--sbh-font-display);
	font-size: clamp(1.95rem, 3.6vw, 2.85rem);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1.08;
	color: var(--sbh-bg-emphasis);
}

.sbh-hero__title {
	margin: 0 0 1.35rem;
	font-family: var(--sbh-font-display);
	font-size: clamp(2.85rem, 6.2vw, 4.85rem);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 1.02;
	max-width: 11ch;
}

.sbh-hero__subtitle {
	margin: 0 0 0.85rem;
	max-width: 28rem;
	font-size: 1.06rem;
	font-weight: 500;
	line-height: 1.55;
	color: var(--sbh-text-primary);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.sbh-hero__lead {
	margin: 0 0 2rem;
	max-width: 28rem;
	font-size: 0.98rem;
	font-weight: 400;
	line-height: 1.7;
	color: var(--sbh-text-secondary);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.sbh-hero__glass {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding: 0.75rem;
	border-radius: calc(var(--sbh-radius-lg) + 4px);
	background: var(--sbh-glass);
	border: 1px solid var(--sbh-glass-border);
	backdrop-filter: blur(var(--sbh-glass-blur)) saturate(1.1);
	-webkit-backdrop-filter: blur(var(--sbh-glass-blur)) saturate(1.1);
	box-shadow: var(--sbh-shadow-glass);
}

.sbh-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.sbh-hero__chip {
	padding: 0.42rem 0.8rem;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--sbh-text-secondary);
	background: var(--sbh-glass);
	border: 1px solid var(--sbh-glass-border);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: var(--sbh-shadow-glass);
}

.sbh-lang {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 1.15rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.sbh-lang__link {
	color: var(--sbh-text-secondary);
	text-decoration: none;
}

.sbh-lang__link:hover,
.sbh-lang__link.is-active {
	color: var(--sbh-bg-emphasis);
}

.sbh-lang__sep {
	color: var(--sbh-border-strong);
}

/* Info blocks: wholesale / delivery */
.sbh-info__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

.sbh-info__grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.sbh-info__card {
	padding: 1.85rem 1.65rem;
	background: var(--sbh-glass);
	border: 1px solid var(--sbh-glass-border);
	border-radius: var(--sbh-radius-lg);
	backdrop-filter: blur(var(--sbh-glass-blur));
	-webkit-backdrop-filter: blur(var(--sbh-glass-blur));
	box-shadow: var(--sbh-shadow-glass);
}

.sbh-section--subtle .sbh-info__card {
	background: rgba(255, 252, 247, 0.42);
}

.sbh-info__title {
	margin: 0 0 0.7rem;
	font-family: var(--sbh-font-display);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.sbh-info__text {
	margin: 0;
	color: var(--sbh-text-secondary);
	font-size: 0.96rem;
	line-height: 1.68;
}

.sbh-info__note {
	margin: 0.85rem 0 0;
	display: inline-block;
	padding: 0.25rem 0.55rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--sbh-accent-gold);
	background: var(--sbh-accent-gold-soft);
	border-radius: 999px;
}

.sbh-cta__note {
	margin: 1.25rem auto 0;
	max-width: 34rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 900px) {
	.sbh-info__grid--3 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.sbh-info__grid {
		grid-template-columns: 1fr;
	}
}


.sbh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.sbh-hero__visual {
	margin: 0;
	position: relative;
	align-self: stretch;
	min-height: min(78vh, 42rem);
	border-radius: var(--sbh-radius-lg);
	overflow: hidden;
	background:
		linear-gradient(160deg, #f3ebe0 0%, #e6d8c8 45%, #d4c0a8 100%);
	border: 1px solid var(--sbh-glass-border);
	box-shadow:
		var(--sbh-shadow-soft),
		0 0 0 1px rgba(196, 165, 116, 0.1);
	transform: translateZ(0);
}

.sbh-hero__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 44%),
		radial-gradient(ellipse 60% 50% at 80% 18%, rgba(196, 165, 116, 0.14), transparent 62%);
	animation: sbh-light-drift 16s ease-in-out infinite alternate-reverse;
}

.sbh-hero__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sbh-hero__placeholder {
	height: 100%;
	min-height: inherit;
	display: grid;
	place-items: center;
	background:
		radial-gradient(ellipse 70% 55% at 35% 28%, rgba(255, 248, 235, 0.55), transparent 60%),
		linear-gradient(155deg, #f3ebe0 0%, #e4d5c3 42%, #c9b08e 100%);
	position: relative;
}

.sbh-hero__placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 48px 48px;
	opacity: 0.4;
	mask-image: radial-gradient(ellipse at center, #000 22%, transparent 78%);
}

.sbh-hero__placeholder-frame {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	padding: 1.85rem 2.1rem;
	border: 1px solid rgba(196, 165, 116, 0.35);
	border-radius: 14px;
	background: rgba(255, 252, 247, 0.42);
	backdrop-filter: blur(10px);
	text-align: center;
	max-width: 16rem;
	box-shadow: var(--sbh-shadow-glass);
}

.sbh-hero__placeholder-label {
	font-family: var(--sbh-font-display);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--sbh-bg-emphasis);
}

.sbh-hero__placeholder-hint {
	font-size: 0.78rem;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	color: var(--sbh-text-secondary);
}

.sbh-hero__placeholder-note {
	font-size: 0.8rem;
	color: var(--sbh-text-secondary);
	line-height: 1.4;
}

[data-sbh-enter] {
	opacity: 0;
	transform: translateY(1.1rem);
	animation: sbh-enter 0.85s var(--sbh-ease) forwards;
}

[data-sbh-enter="1"] { animation-delay: 0.05s; }
[data-sbh-enter="2"] { animation-delay: 0.16s; }
[data-sbh-enter="3"] { animation-delay: 0.28s; }
[data-sbh-enter="4"] { animation-delay: 0.4s; }
[data-sbh-enter="5"] { animation-delay: 0.5s; }

@keyframes sbh-enter {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Advantages mosaic */
.sbh-advantages__mosaic {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr;
	grid-auto-rows: minmax(9.5rem, auto);
	gap: 1.1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sbh-advantages__card {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	padding: 1.85rem 1.65rem;
	background: var(--sbh-glass);
	border: 1px solid var(--sbh-glass-border);
	border-radius: var(--sbh-radius-lg);
	backdrop-filter: blur(var(--sbh-glass-blur));
	-webkit-backdrop-filter: blur(var(--sbh-glass-blur));
	box-shadow: var(--sbh-shadow-glass);
}

.sbh-advantages__card--featured {
	grid-row: span 2;
	justify-content: flex-end;
	padding: 2.35rem 2rem;
	background:
		linear-gradient(165deg, rgba(255, 252, 247, 0.72) 0%, rgba(247, 242, 234, 0.55) 55%, rgba(235, 227, 214, 0.62) 100%);
	border-color: rgba(196, 165, 116, 0.22);
}

.sbh-advantages__card--wide {
	grid-column: 2 / -1;
	flex-direction: row;
	align-items: flex-start;
	gap: 1.25rem;
}

.sbh-advantages__icon {
	display: inline-flex;
	width: 2rem;
	height: 2rem;
	color: var(--sbh-bg-emphasis);
}

.sbh-advantages__icon svg {
	width: 100%;
	height: 100%;
}

.sbh-advantages__card--featured .sbh-advantages__icon {
	width: 2.5rem;
	height: 2.5rem;
	color: var(--sbh-accent-soft);
}

.sbh-advantages__title {
	margin: 0 0 0.55rem;
	font-family: var(--sbh-font-display);
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.32;
	letter-spacing: -0.02em;
}

.sbh-advantages__card--featured .sbh-advantages__title {
	font-size: 1.55rem;
}

.sbh-advantages__text {
	margin: 0;
	font-size: 0.94rem;
	font-weight: 400;
	color: var(--sbh-text-secondary);
	line-height: 1.68;
}

/* Brands showcase */
.sbh-brands__showcase {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 0.9rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sbh-brands__tile--lg { grid-column: span 4; }
.sbh-brands__tile--md { grid-column: span 3; }
.sbh-brands__tile--sm { grid-column: span 2; }

.sbh-brands__slot {
	height: 6.5rem;
	display: grid;
	place-items: center;
	padding: 1.1rem 1.25rem;
	background: var(--sbh-glass);
	border: 1px solid var(--sbh-glass-border);
	border-radius: var(--sbh-radius-lg);
	backdrop-filter: blur(var(--sbh-glass-blur));
	-webkit-backdrop-filter: blur(var(--sbh-glass-blur));
	box-shadow: var(--sbh-shadow-glass);
	transition:
		border-color 0.35s var(--sbh-ease),
		transform 0.35s var(--sbh-ease),
		box-shadow 0.35s var(--sbh-ease);
}

.sbh-brands__tile--lg .sbh-brands__slot {
	height: 8rem;
}

.sbh-brands__tile:hover .sbh-brands__slot {
	border-color: var(--sbh-border-strong);
	transform: translateY(-2px);
	box-shadow: var(--sbh-shadow-soft);
}

.sbh-brands__slot img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(1) contrast(0.95);
	opacity: 0.85;
	transition: filter 0.3s var(--sbh-ease), opacity 0.3s var(--sbh-ease);
}

.sbh-brands__tile:hover .sbh-brands__slot img {
	filter: none;
	opacity: 1;
}

.sbh-brands__fallback {
	font-family: var(--sbh-font-display);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--sbh-text-secondary);
	letter-spacing: -0.01em;
}

/* Categories */
.sbh-cats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sbh-cats__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--sbh-glass);
	border: 1px solid var(--sbh-glass-border);
	border-radius: var(--sbh-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	backdrop-filter: blur(var(--sbh-glass-blur));
	-webkit-backdrop-filter: blur(var(--sbh-glass-blur));
	box-shadow: var(--sbh-shadow-glass);
	transition:
		transform 0.4s var(--sbh-ease),
		box-shadow 0.4s var(--sbh-ease),
		border-color 0.4s var(--sbh-ease);
}

.sbh-cats__card:hover {
	transform: translateY(-3px);
	border-color: rgba(196, 165, 116, 0.35);
	box-shadow: 0 14px 32px rgba(47, 44, 42, 0.06);
	color: inherit;
}

.sbh-cats__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--sbh-bg-subtle);
}

.sbh-cats__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s var(--sbh-ease);
}

.sbh-cats__card:hover .sbh-cats__media img {
	transform: scale(1.05);
}

.sbh-cats__media-ph {
	position: absolute;
	inset: 0;
	transition: transform 0.55s var(--sbh-ease);
}

.sbh-cats__card:hover .sbh-cats__media-ph {
	transform: scale(1.04);
}

.sbh-cats__media-ph[data-tone="1"] {
	background:
		radial-gradient(ellipse 80% 60% at 30% 25%, rgba(255, 248, 235, 0.55), transparent 55%),
		linear-gradient(155deg, #f3ebe0, #e0d0bc);
}
.sbh-cats__media-ph[data-tone="2"] {
	background:
		radial-gradient(ellipse 80% 60% at 70% 30%, rgba(255, 248, 235, 0.45), transparent 55%),
		linear-gradient(155deg, #efe6d8, #d8c4a8);
}
.sbh-cats__media-ph[data-tone="3"] {
	background:
		radial-gradient(ellipse 80% 60% at 40% 20%, rgba(255, 248, 235, 0.5), transparent 55%),
		linear-gradient(155deg, #f5eee4, #cbb596);
}
.sbh-cats__media-ph[data-tone="4"] {
	background:
		radial-gradient(ellipse 80% 60% at 60% 35%, rgba(255, 248, 235, 0.4), transparent 55%),
		linear-gradient(155deg, #ebe3d6, #c4ae90);
}
.sbh-cats__media-ph[data-tone="5"] {
	background:
		radial-gradient(ellipse 80% 60% at 25% 40%, rgba(255, 248, 235, 0.5), transparent 55%),
		linear-gradient(155deg, #f2e9dd, #d2bc9c);
}
.sbh-cats__media-ph[data-tone="6"] {
	background:
		radial-gradient(ellipse 80% 60% at 75% 25%, rgba(255, 248, 235, 0.42), transparent 55%),
		linear-gradient(155deg, #e8dfd2, #bda588);
}

.sbh-cats__media-label {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 1;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(28, 26, 25, 0.55);
	background: rgba(255, 255, 255, 0.55);
	padding: 0.35rem 0.55rem;
	border-radius: 3px;
}

.sbh-cats__meta {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.3rem 1.35rem 1.45rem;
	flex: 1;
}

.sbh-cats__name {
	font-family: var(--sbh-font-display);
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.sbh-cats__desc {
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--sbh-text-secondary);
	line-height: 1.62;
	flex: 1;
}

.sbh-cats__cta {
	margin-top: 0.55rem;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--sbh-bg-emphasis);
	opacity: 0.75;
	transition: opacity 0.25s var(--sbh-ease), transform 0.25s var(--sbh-ease);
}

.sbh-cats__card:hover .sbh-cats__cta {
	opacity: 1;
	transform: translateX(3px);
}

/* Timeline */
.sbh-timeline {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0;
}

.sbh-timeline__item {
	display: grid;
	grid-template-columns: 2rem 1fr;
	gap: 1.25rem;
	min-height: 6.5rem;
}

.sbh-timeline__marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 0.35rem;
}

.sbh-timeline__dot {
	width: 0.85rem;
	height: 0.85rem;
	border-radius: 50%;
	background: var(--sbh-bg-emphasis);
	border: 3px solid var(--sbh-accent-soft);
	flex-shrink: 0;
	z-index: 1;
}

.sbh-timeline__line {
	flex: 1;
	width: 1px;
	margin-top: 0.35rem;
	background: linear-gradient(180deg, var(--sbh-border-strong), transparent);
}

.sbh-timeline__item:last-child .sbh-timeline__line {
	display: none;
}

.sbh-timeline__content {
	padding: 0 0 2.25rem;
	padding-left: 0.25rem;
	border-bottom: 1px solid transparent;
}

.sbh-timeline__item:not(:last-child) .sbh-timeline__content {
	border-bottom-color: var(--sbh-border);
	margin-bottom: 0.35rem;
}

.sbh-timeline__num {
	display: block;
	margin-bottom: 0.35rem;
	font-family: var(--sbh-font-display);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--sbh-accent-soft);
	letter-spacing: 0.04em;
}

.sbh-timeline__title {
	margin: 0 0 0.4rem;
	font-family: var(--sbh-font-display);
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -0.015em;
}

.sbh-timeline__text {
	margin: 0;
	max-width: 36rem;
	color: var(--sbh-text-secondary);
	font-size: 0.98rem;
}

/* Trust */
.sbh-trust__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.75rem 2.75rem;
}

.sbh-trust__item {
	padding-top: 1.35rem;
	border-top: 1px solid rgba(196, 165, 116, 0.28);
}

.sbh-trust__item-title {
	margin: 0 0 0.7rem;
	font-family: var(--sbh-font-display);
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.sbh-trust__item-text {
	margin: 0;
	color: var(--sbh-text-secondary);
	max-width: 34rem;
	font-weight: 400;
	line-height: 1.7;
}

/* CTA */
.sbh-cta {
	padding: 2.5rem 0 6.5rem;
	background: linear-gradient(180deg, var(--sbh-bg-canvas) 0%, var(--sbh-bg-soft-white) 100%);
}

.sbh-cta__panel {
	position: relative;
	overflow: hidden;
	padding: clamp(3.25rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
	border-radius: calc(var(--sbh-radius-lg) + 6px);
	background:
		radial-gradient(ellipse 70% 60% at 85% 15%, rgba(196, 165, 116, 0.22), transparent 55%),
		linear-gradient(145deg, #3a3632 0%, var(--sbh-bg-emphasis) 48%, #1f1d1c 100%);
	color: var(--sbh-text-inverse);
	text-align: center;
	box-shadow: 0 18px 48px rgba(31, 29, 28, 0.2);
}

.sbh-cta__eyebrow {
	margin: 0 0 0.85rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.sbh-cta__title {
	margin: 0 auto 1.15rem;
	max-width: 16ch;
	font-family: var(--sbh-font-display);
	font-size: clamp(1.9rem, 3.5vw, 2.85rem);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.18;
}

.sbh-cta__text {
	margin: 0 auto 2.15rem;
	max-width: 34rem;
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.68;
	color: rgba(255, 255, 255, 0.82);
}

/* Footer */
.sbh-footer {
	background: var(--sbh-bg-emphasis-deep);
	color: rgba(255, 255, 255, 0.78);
	padding-top: 0;
}

.sbh-footer__accent {
	height: 3px;
	background: linear-gradient(90deg, var(--sbh-accent-soft), transparent 70%);
}

.sbh-footer__inner {
	width: min(100% - 2.75rem, var(--sbh-container));
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.15fr;
	gap: 2.75rem;
	padding: 3.5rem 0 2.75rem;
}

.sbh-logo--footer .sbh-logo__text {
	color: #fff;
}

.sbh-footer__desc {
	margin: 1.15rem 0 0.85rem;
	max-width: 22rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.68);
}

.sbh-footer__slogan {
	margin: 0;
	font-family: var(--sbh-font-display);
	font-size: 0.95rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	font-style: italic;
}

.sbh-footer__label {
	margin: 0 0 0.95rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.42);
}

.sbh-footer__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.sbh-footer__list a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	font-size: 0.94rem;
	transition: color 0.2s var(--sbh-ease);
}

.sbh-footer__list a:hover {
	color: #fff;
}

.sbh-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.25rem 0;
}

.sbh-footer__bottom p {
	width: min(100% - 2.75rem, var(--sbh-container));
	margin: 0 auto;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.42);
}

/* Inner pages minimal */
.sbh-page {
	padding: 7rem 0 5rem;
}

.sbh-entry__title {
	margin: 0 0 1.5rem;
	font-family: var(--sbh-font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 600;
}

.sbh-entry__content {
	max-width: 42rem;
}

/* Reveal */
[data-sbh-reveal] {
	opacity: 0;
	transform: translateY(1rem);
	transition: opacity 0.7s var(--sbh-ease), transform 0.7s var(--sbh-ease);
}

[data-sbh-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.sbh-timeline__item.is-visible .sbh-timeline__dot {
	animation: sbh-pulse 0.6s var(--sbh-ease);
}

@keyframes sbh-pulse {
	0% { transform: scale(0.7); }
	100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 1100px) {
	.sbh-advantages__mosaic {
		grid-template-columns: 1fr 1fr;
	}

	.sbh-advantages__card--featured {
		grid-row: span 1;
		grid-column: 1 / -1;
	}

	.sbh-advantages__card--wide {
		grid-column: 1 / -1;
	}

	.sbh-brands__tile--lg,
	.sbh-brands__tile--md,
	.sbh-brands__tile--sm {
		grid-column: span 4;
	}
}

@media (max-width: 900px) {
	.sbh-hero__layout {
		grid-template-columns: 1fr;
		min-height: calc(100svh - var(--sbh-header-h) - 0.5rem);
		min-height: calc(100dvh - var(--sbh-header-h) - 0.5rem);
		padding: 1.25rem 0 2.75rem;
		gap: 1.75rem;
		align-content: center;
	}

	.sbh-hero {
		min-height: 100svh;
		min-height: 100dvh;
		padding-top: calc(var(--sbh-header-h) + 0.35rem);
	}

	.sbh-hero__brand {
		font-size: clamp(1.55rem, 6.5vw, 2.1rem);
		margin-bottom: 0.75rem;
	}

	.sbh-hero__title {
		max-width: 12ch;
		font-size: clamp(2.35rem, 9.5vw, 3.35rem);
		margin-bottom: 1rem;
	}

	.sbh-hero__lead {
		margin-bottom: 1.5rem;
	}

	.sbh-hero__visual {
		min-height: min(38vh, 18rem);
		max-height: 42vh;
		order: -1;
		border-radius: 18px;
	}

	.sbh-hero__chips {
		margin-top: 1.15rem;
	}

	.sbh-nav-toggle {
		display: inline-flex;
	}

	.sbh-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		padding: 1.15rem 1.35rem 1.4rem;
		background: rgba(252, 250, 247, 0.94);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		border-bottom: 1px solid rgba(196, 165, 116, 0.35);
		box-shadow: 0 16px 32px rgba(28, 26, 25, 0.06);
	}

	.sbh-nav.is-open {
		display: flex;
	}

	.sbh-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.85rem;
	}

	.sbh-nav__cta {
		width: 100%;
	}

	.sbh-cats__grid {
		grid-template-columns: 1fr 1fr;
	}

	.sbh-footer__inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.sbh-section {
		padding: 4.25rem 0;
	}

	.sbh-advantages__mosaic,
	.sbh-cats__grid,
	.sbh-trust__grid,
	.sbh-footer__inner {
		grid-template-columns: 1fr;
	}

	.sbh-brands__showcase {
		grid-template-columns: 1fr 1fr;
	}

	.sbh-brands__tile--lg,
	.sbh-brands__tile--md,
	.sbh-brands__tile--sm {
		grid-column: span 1;
	}

	.sbh-advantages__card--wide {
		flex-direction: column;
	}

	.sbh-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.sbh-hero__actions .sbh-btn {
		width: 100%;
	}

	.sbh-cta {
		padding: 1rem 0 3.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	[data-sbh-enter],
	[data-sbh-reveal] {
		opacity: 1;
		transform: none;
		animation: none;
		transition: none;
	}

	.sbh-hero__glow,
	.sbh-hero__visual::after,
	.sbh-hero__shimmer,
	.sbh-marquee__track {
		animation: none !important;
	}

	.sbh-hero__layout {
		transform: none !important;
	}

	.sbh-btn:hover,
	.sbh-cats__card:hover,
	.sbh-brands__tile:hover .sbh-brands__slot {
		transform: none;
	}
}

/* Infinite product / coming-soon ribbon */
.sbh-marquee {
	position: relative;
	padding: 1.75rem 0 2.85rem;
	overflow: hidden;
	border-block: 1px solid rgba(196, 165, 116, 0.18);
	background: linear-gradient(180deg, var(--sbh-bg-soft-white) 0%, rgba(247, 242, 234, 0.65) 100%);
}

.sbh-marquee::before,
.sbh-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: min(12vw, 5rem);
	z-index: 2;
	pointer-events: none;
}

.sbh-marquee::before {
	left: 0;
	background: linear-gradient(90deg, var(--sbh-bg-soft-white), transparent);
}

.sbh-marquee::after {
	right: 0;
	background: linear-gradient(270deg, rgba(247, 242, 234, 0.95), transparent);
}

.sbh-marquee__track {
	display: flex;
	width: max-content;
	gap: 0.85rem;
	animation: sbh-marquee 48s linear infinite;
	will-change: transform;
}

.sbh-marquee:hover .sbh-marquee__track {
	animation-play-state: paused;
}

@keyframes sbh-marquee {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}

.sbh-marquee__item {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.85rem;
	width: 11.75rem;
	min-height: 13.5rem;
	padding: 0.7rem 0.7rem 1rem;
	border-radius: 18px;
	background: rgba(255, 252, 247, 0.34);
	border: 1px solid rgba(255, 255, 255, 0.48);
	backdrop-filter: blur(16px) saturate(1.08);
	-webkit-backdrop-filter: blur(16px) saturate(1.08);
	box-shadow: 0 4px 16px rgba(47, 44, 42, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.5);
	text-decoration: none;
	color: inherit;
}

a.sbh-marquee__item:hover {
	border-color: rgba(196, 165, 116, 0.4);
	color: inherit;
}

.sbh-marquee__thumb {
	flex: 0 0 auto;
	width: 100%;
	height: 7.25rem;
	border-radius: 12px;
	overflow: hidden;
	background:
		radial-gradient(ellipse 70% 55% at 40% 30%, rgba(255, 248, 235, 0.55), transparent 60%),
		linear-gradient(155deg, #f3ebe0 0%, #e2d2bc 55%, #cbb38f 100%);
	display: grid;
	place-items: center;
}

.sbh-marquee__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sbh-marquee__thumb-ph {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(184, 149, 94, 0.85);
	background:
		radial-gradient(ellipse 55% 45% at 50% 40%, rgba(255, 248, 235, 0.55), transparent 70%),
		linear-gradient(160deg, transparent 30%, rgba(196, 165, 116, 0.12));
}

.sbh-marquee__title {
	display: block;
	padding-inline: 0.25rem;
	font-family: var(--sbh-font-display);
	font-size: 0.98rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--sbh-bg-emphasis);
}

.sbh-marquee__text {
	display: block;
	padding-inline: 0.25rem;
	margin-top: 0.2rem;
	font-size: 0.78rem;
	font-weight: 400;
	line-height: 1.45;
	color: var(--sbh-text-secondary);
}
