/* ==========================================================================
   Homepage — Pastel color palettes
   Palette 1: #ABDEE6 #CBAACB #FFFFB5 #FFCCB6 #F3B0C3
   Palette 2: #C6DBDA #FEE1E8 #FED7C3 #F6EAC2 #ECD5E3
   Palette 4: #D4F0F0 #8FCACA #CCE2CB #B6CFB6 #97C1A9
   Palette 5: #FCB9AA #FFDBCC #ECEAE4 #A2E1DB #55CBCD
   ========================================================================== */

.sl-home {
	/* Inherit pastel tokens from :root */
	--home-bg: var(--sl-gray-50);
	--home-surface: rgba(255, 255, 255, 0.88);
	--home-text: var(--sl-gray-900);
	--home-text-muted: var(--sl-gray-700);
	--home-text-soft: var(--sl-gray-600);
	--home-accent: var(--p-cyan);
	--home-accent-hover: var(--sl-blue-700);
	--home-accent-2: var(--p-teal);
	--home-accent-warm: var(--p-rose);
	--home-accent-soft: var(--p-purple);
	--home-border: rgba(255, 255, 255, 0.75);
	--home-shadow: var(--sl-shadow-md);
	--home-gradient-title: var(--sl-gradient-title);
	--home-gradient-cta: var(--sl-gradient-brand);
	--home-gradient-hero: var(--sl-gradient-hero);

	position: relative;
	background: var(--home-bg);
	overflow-x: clip;
}

/* ── Section floating stickers ───────────────────────────────────────────── */
.sl-home-floats {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.sl-home-hero .sl-home-floats,
.sl-home-quick .sl-home-floats,
.sl-home-sac .sl-home-floats,
.sl-home-news .sl-home-floats,
.sl-home-celebrations .sl-home-floats,
.sl-home-recognition .sl-home-floats,
.sl-home-cta .sl-home-floats {
	z-index: 2;
}

.sl-home-float {
	position: absolute;
	left: var(--fx, 90%);
	top: var(--fy, 10%);
	font-size: var(--fs, 1.3rem);
	opacity: 0.22;
	filter: drop-shadow(0 2px 8px rgba(85, 203, 205, 0.2));
	animation: sl-home-float-drift 7s ease-in-out infinite;
	animation-delay: var(--fd, 0s);
}

@keyframes sl-home-float-drift {
	0%, 100% {
		transform: translate(0, 0) rotate(-5deg) scale(1);
		opacity: 0.18;
	}
	33% {
		transform: translate(-8px, -20px) rotate(8deg) scale(1.08);
		opacity: 0.28;
	}
	66% {
		transform: translate(10px, -10px) rotate(-3deg) scale(1.04);
		opacity: 0.22;
	}
}

.sl-home-quick,
.sl-home-sac,
.sl-home-news,
.sl-home-celebrations,
.sl-home-recognition,
.sl-home-cta {
	position: relative;
	overflow: hidden;
}

.sl-home-quick .sl-container,
.sl-home-sac .sl-container,
.sl-home-news .sl-container,
.sl-home-celebrations .sl-container,
.sl-home-recognition .sl-container,
.sl-home-cta .sl-container {
	position: relative;
	z-index: 1;
}

/* ── Global side decorations ─────────────────────────────────────────────── */
.sl-home-deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.sl-home > section,
.sl-home > .sl-home-quick {
	position: relative;
	z-index: 1;
}

.sl-home-deco__shape {
	position: absolute;
	font-size: 2rem;
	opacity: 0.12;
	animation: sl-home-deco-float 8s ease-in-out infinite;
	filter: blur(0.3px);
}

.sl-home-deco__shape--1 { left: 2%; top: 18%; animation-delay: 0s; }
.sl-home-deco__shape--2 { left: 4%; top: 52%; font-size: 1.5rem; animation-delay: -2s; }
.sl-home-deco__shape--3 { right: 3%; top: 28%; animation-delay: -4s; }
.sl-home-deco__shape--4 { right: 5%; top: 62%; font-size: 1.75rem; animation-delay: -1s; }

@keyframes sl-home-deco-float {
	0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
	50% { transform: translateY(-18px) rotate(8deg); opacity: 0.18; }
}

.sl-home-deco__dots {
	position: absolute;
	width: 120px;
	height: 70%;
	top: 15%;
	background-image: radial-gradient(circle, rgba(143, 202, 202, 0.35) 1.5px, transparent 1.5px);
	background-size: 14px 14px;
	opacity: 0.6;
}

.sl-home-deco__dots--left { left: 0; mask-image: linear-gradient(90deg, #000, transparent); }
.sl-home-deco__dots--right { right: 0; mask-image: linear-gradient(270deg, #000, transparent); }

.sl-home-deco__ring {
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	border: 2px dashed rgba(143, 202, 202, 0.35);
	animation: sl-home-ring-spin 40s linear infinite;
}

.sl-home-deco__ring--left { left: -140px; top: 35%; }
.sl-home-deco__ring--right { right: -140px; top: 55%; animation-direction: reverse; }

@keyframes sl-home-ring-spin {
	to { transform: rotate(360deg); }
}

/* Scroll reveal */
.sl-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0s);
}

.sl-reveal.is-visible,
.sl-reveal-group.is-visible .sl-reveal {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.sl-reveal { opacity: 1; transform: none; transition: none; }
	.sl-home-deco__shape,
	.sl-home-deco__ring { animation: none; }
}

/* ── Hero — pastel wash ─────────────────────────────────────────────────── */
.sl-home-hero {
	position: relative;
	padding: 64px 0 0;
	color: var(--home-text);
	background: var(--home-gradient-hero);
	overflow: hidden;
}

.sl-home-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 50% at 15% 80%, rgba(243, 176, 195, 0.25), transparent 55%),
		radial-gradient(ellipse 60% 45% at 85% 15%, rgba(171, 222, 230, 0.35), transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.sl-home-hero__blobs {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.sl-home-hero__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.55;
	animation: sl-home-float 14s ease-in-out infinite;
}

.sl-home-hero__blob--1 { width: 380px; height: 380px; background: var(--p-pink); top: -120px; left: -100px; }
.sl-home-hero__blob--2 { width: 320px; height: 320px; background: var(--p-blue); top: 5%; right: -80px; animation-delay: -4s; }
.sl-home-hero__blob--3 { width: 260px; height: 260px; background: var(--p-mint); bottom: 10%; left: 40%; animation-delay: -8s; }

@keyframes sl-home-float {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(10px, -14px); }
}

.sl-home-hero__grid-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.45;
	background-image:
		linear-gradient(rgba(143, 202, 202, 0.15) 1px, transparent 1px),
		linear-gradient(90deg, rgba(143, 202, 202, 0.15) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

.sl-home-hero__layout {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 1.05fr);
	gap: 40px 48px;
	align-items: center;
	padding-bottom: 48px;
}

.sl-home-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--home-surface);
	border: 1px solid var(--home-border);
	padding: 8px 16px;
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--home-text-muted);
	margin-bottom: 20px;
	box-shadow: var(--home-shadow);
}

.sl-home-hero__badge-dot {
	width: 8px;
	height: 8px;
	background: var(--p-green);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

.sl-home-hero__title {
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 900;
	line-height: 1.12;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
	color: var(--home-text);
}

.sl-home-hero__title span {
	display: block;
	background: var(--home-gradient-title);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.sl-home-hero__desc {
	font-size: 1.0625rem;
	color: var(--home-text-muted);
	line-height: 1.7;
	margin-bottom: 28px;
	max-width: 520px;
}

.sl-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 32px;
}

.sl-home-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.sl-home-hero__stat {
	flex: 1 1 90px;
	padding: 14px 16px;
	border-radius: 14px;
	background: var(--home-surface);
	border: 1px solid var(--home-border);
	box-shadow: var(--home-shadow);
	text-align: center;
}

.sl-home-hero__stat strong {
	display: block;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
	color: var(--home-accent);
}

.sl-home-hero__stat span {
	font-size: 0.6875rem;
	color: var(--home-text-muted);
	margin-top: 4px;
	display: block;
}

/* Hero media column */
.sl-home-hero__media {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sl-home-hero__card {
	background: var(--home-surface);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(74, 95, 111, 0.1);
	border: 1px solid var(--home-border);
	color: var(--sl-gray-800);
	position: relative;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sl-home-hero__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 56px rgba(85, 203, 205, 0.18);
}

.sl-home-hero__card-img {
	display: block;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--sl-blue-100);
}

.sl-home-hero__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.sl-home-hero__card:hover .sl-home-hero__card-img img {
	transform: scale(1.04);
}

.sl-home-hero__card-body {
	padding: 20px 22px 22px;
}

.sl-home-hero__card-tag {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 10px;
	background: var(--cat-bg, var(--sl-blue-50));
	color: var(--sl-blue-700);
}

.sl-home-hero__card-title {
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 8px;
}

.sl-home-hero__card-title a {
	color: inherit;
	text-decoration: none;
}

.sl-home-hero__card-title a:hover {
	color: var(--sl-blue-700);
}

.sl-home-hero__card-meta {
	font-size: 0.8125rem;
	color: var(--sl-gray-400);
}

.sl-home-hero__card--empty .sl-home-hero__card-body {
	padding: 32px;
}

.sl-home-hero__headlines {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sl-home-hero__headline {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 16px;
	border-radius: 14px;
	background: var(--home-surface);
	border: 1px solid var(--home-border);
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
	color: var(--home-text);
	text-decoration: none;
	font-size: 0.875rem;
	line-height: 1.45;
	transition: background 0.2s, transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.sl-home-hero__headline:hover {
	background: var(--p-icy);
	border-color: var(--p-aqua);
	transform: translateX(4px);
	color: var(--home-text);
	box-shadow: 0 4px 16px rgba(85, 203, 205, 0.15);
}

.sl-home-hero__headline time {
	flex-shrink: 0;
	font-size: 0.75rem;
	font-weight: 800;
	color: var(--home-accent);
	min-width: 42px;
}

.sl-home-hero__headline span {
	font-weight: 600;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sl-home-hero__wave {
	line-height: 0;
	position: relative;
	z-index: 2;
	margin-top: -1px;
}

.sl-home-hero__wave svg {
	display: block;
	width: 100%;
	height: 56px;
}

.sl-home-hero .sl-btn--primary {
	background: var(--p-cyan);
	color: #fff;
	box-shadow: 0 8px 24px rgba(85, 203, 205, 0.35);
}

.sl-home-hero .sl-btn--primary:hover {
	background: var(--home-accent-hover);
	color: #fff;
}

.sl-home-hero .sl-btn--outline {
	background: var(--home-surface);
	color: var(--home-text);
	border: 1.5px solid var(--p-teal);
	box-shadow: var(--home-shadow);
}

.sl-home-hero .sl-btn--outline:hover {
	background: var(--p-icy);
	border-color: var(--p-cyan);
	color: var(--home-accent-hover);
}

/* ── Quick links ────────────────────────────────────────────────────────── */
.sl-home-quick {
	position: relative;
	z-index: 3;
	margin-top: -28px;
	padding-bottom: 40px;
}

.sl-home-quick__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.sl-home-quick__card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	background: var(--home-surface);
	border-radius: 16px;
	text-decoration: none;
	color: inherit;
	border: 1px solid var(--home-border);
	box-shadow: var(--home-shadow);
	border-left: 4px solid var(--card-from);
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
	animation: sl-home-card-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sl-home-quick__card:nth-child(1) { animation-delay: 0.05s; }
.sl-home-quick__card:nth-child(2) { animation-delay: 0.12s; }
.sl-home-quick__card:nth-child(3) { animation-delay: 0.19s; }
.sl-home-quick__card:nth-child(4) { animation-delay: 0.26s; }

@keyframes sl-home-card-in {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.sl-home-quick__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(85, 203, 205, 0.14);
}

.sl-home-quick__icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.375rem;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--card-from), var(--card-to));
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.sl-home-quick__card:hover .sl-home-quick__icon {
	transform: scale(1.1) rotate(-6deg);
}

.sl-home-quick__body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.sl-home-quick__body strong {
	font-size: 0.9375rem;
	font-weight: 800;
	color: var(--home-text);
}

.sl-home-quick__body small {
	font-size: 0.75rem;
	color: var(--home-text-muted);
	font-weight: 500;
	line-height: 1.35;
}

.sl-home-quick__arrow {
	margin-left: auto;
	font-size: 1.125rem;
	color: var(--sl-gray-300);
	flex-shrink: 0;
	transition: transform 0.2s, color 0.2s;
}

.sl-home-quick__card:hover .sl-home-quick__arrow {
	transform: translateX(4px);
	color: var(--card-from);
}

/* ── Categories — full-width balanced grid ──────────────────────────────── */
.sl-home-cats {
	position: relative;
	padding: 16px 0 56px;
	overflow: hidden;
}

.sl-home-cats__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.sl-home-cats__bg-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.35;
	animation: sl-home-float 16s ease-in-out infinite;
}

.sl-home-cats__bg-blob--1 {
	width: 320px;
	height: 320px;
	background: #bfdbfe;
	top: -80px;
	left: -100px;
}

.sl-home-cats__bg-blob--2 {
	width: 280px;
	height: 280px;
	background: #fde68a;
	bottom: -60px;
	right: -80px;
	animation-delay: -6s;
}

.sl-home-cats .sl-container {
	position: relative;
	z-index: 1;
}

.sl-home-cats__head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 24px;
}

.sl-home-cats__icon {
	font-size: 1.75rem;
	line-height: 1;
	filter: drop-shadow(0 2px 6px rgba(37,99,235,0.2));
	animation: sl-home-icon-wiggle 4s ease-in-out infinite;
}

@keyframes sl-home-icon-wiggle {
	0%, 100% { transform: rotate(0deg); }
	25% { transform: rotate(-6deg); }
	75% { transform: rotate(6deg); }
}

.sl-home-cats__title {
	font-size: 1.375rem;
	font-weight: 900;
	color: var(--home-text);
	margin-bottom: 4px;
}

.sl-home-cats__desc {
	font-size: 0.875rem;
	color: var(--sl-gray-600);
	margin: 0;
}

.sl-home-cats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	width: 100%;
}

.sl-categories--home .sl-cat-item--home {
	display: flex;
	flex-direction: row;
	align-items: center;
	text-align: left;
	gap: 14px;
	padding: 18px 20px;
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,0.8);
	box-shadow: var(--home-shadow);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.sl-cat-item--home .sl-cat-item__shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.45) 50%, transparent 60%);
	transform: translateX(-120%);
	transition: transform 0.6s ease;
	pointer-events: none;
}

.sl-cat-item--home:hover .sl-cat-item__shine {
	transform: translateX(120%);
}

.sl-cat-item--home:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 16px 40px rgba(85, 203, 205, 0.14);
	border-color: color-mix(in srgb, var(--cat-from, var(--p-cyan)) 30%, transparent);
}

.sl-cat-item--home .sl-cat-item__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	border-radius: 14px;
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sl-cat-item--home:hover .sl-cat-item__icon {
	transform: scale(1.12) rotate(-8deg);
}

.sl-cat-item--home .sl-cat-item__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.sl-cat-item--home .sl-cat-item__name {
	font-size: 0.9375rem;
	font-weight: 800;
	color: var(--home-text);
	line-height: 1.3;
}

.sl-cat-item--home .sl-cat-item__count {
	font-size: 0.75rem;
	color: var(--sl-gray-500);
}

.sl-cat-item--home .sl-cat-item__arrow {
	flex-shrink: 0;
	font-size: 1.125rem;
	color: var(--sl-gray-300);
	transition: transform 0.25s ease, color 0.25s ease;
}

.sl-cat-item--home:hover .sl-cat-item__arrow {
	transform: translateX(4px);
	color: var(--cat-from, var(--p-cyan));
}

/* ── Sac teaser ─────────────────────────────────────────────────────────── */
.sl-home-sac {
	position: relative;
	padding: 56px 0;
	overflow: hidden;
	background: linear-gradient(180deg, var(--p-blush) 0%, var(--p-lavender) 55%, var(--home-bg) 100%);
}

.sl-home-sac__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.sl-home-sac__bg-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.45;
	animation: sl-home-float 16s ease-in-out infinite;
}

.sl-home-sac__bg-blob--1 {
	width: 400px;
	height: 400px;
	background: var(--p-lavender);
	top: -100px;
	left: -80px;
}

.sl-home-sac__bg-blob--2 {
	width: 360px;
	height: 360px;
	background: var(--p-blush);
	bottom: -60px;
	right: -60px;
	animation-delay: -5s;
}

.sl-home-sac__bg-blob--3 {
	width: 280px;
	height: 280px;
	background: var(--p-purple);
	top: 40%;
	left: 40%;
	animation-delay: -10s;
}

.sl-home-sac .sl-container {
	position: relative;
	z-index: 1;
}

.sl-home-sac__head {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.sl-home-sac__title-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.sl-home-sac__icon {
	font-size: 2rem;
	line-height: 1;
}

.sl-home-sac__title {
	font-size: 1.375rem;
	font-weight: 900;
	margin-bottom: 4px;
	color: var(--sl-gray-900);
}

.sl-home-sac__desc {
	font-size: 0.875rem;
	color: var(--home-text-muted);
	font-weight: 500;
	margin: 0;
	max-width: 480px;
}

.sl-home-sac__cta {
	width: auto !important;
	flex-shrink: 0;
	background: var(--home-accent) !important;
	box-shadow: 0 6px 20px rgba(85, 203, 205, 0.28) !important;
}

/* Showcase: featured + side */
.sl-home-sac__showcase {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 20px;
	align-items: stretch;
}

.sl-home-sac__featured {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 22px;
	overflow: hidden;
	background: var(--sac-bg, #fff);
	border: 1px solid rgba(255,255,255,0.9);
	box-shadow: 0 12px 40px rgba(74, 95, 111, 0.1);
	text-decoration: none;
	color: inherit;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.sl-home-sac__featured:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 56px rgba(203, 170, 203, 0.22);
}

.sl-home-sac__featured-glow {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--sac-from), var(--sac-to));
	z-index: 2;
}

.sl-home-sac__featured-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 100px;
	background: rgba(255,255,255,0.92);
	font-size: 0.75rem;
	font-weight: 800;
	color: var(--sac-from);
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.sl-home-sac__featured-img {
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--sl-gray-100);
}

.sl-home-sac__featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sl-home-sac__featured:hover .sl-home-sac__featured-img img {
	transform: scale(1.05);
}

.sl-home-sac__featured-body {
	padding: 22px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.sl-home-sac__featured-label {
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--sac-from);
}

.sl-home-sac__featured-title {
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 1.35;
	color: var(--sl-gray-900);
	margin: 0;
}

.sl-home-sac__featured-excerpt {
	font-size: 0.875rem;
	color: var(--home-text-muted);
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sl-home-sac__featured-meta {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--sl-gray-800);
	margin-top: auto;
}

.sl-home-sac__side {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sl-home-sac__invite {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding: 18px 20px;
	border-radius: 16px;
	text-decoration: none;
	color: #fff;
	background: var(--home-gradient-cta);
	box-shadow: 0 8px 24px rgba(85, 203, 205, 0.22);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-top: auto;
}

.sl-home-sac__invite:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 14px 32px rgba(85, 203, 205, 0.32);
	color: #fff;
}

.sl-home-sac__invite span:first-child {
	font-size: 1.5rem;
}

.sl-home-sac__invite strong {
	font-size: 0.9375rem;
}

.sl-home-sac__invite small {
	font-size: 0.75rem;
	opacity: 0.9;
}

.sl-home-sac__empty {
	text-align: center;
	padding: 48px 32px;
	border-radius: 24px;
	background: linear-gradient(160deg, var(--p-icy), var(--p-lavender), var(--p-blue));
	border: 2px dashed var(--p-teal);
}

.sl-home-sac__empty-visual {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 20px;
}

.sl-home-sac__empty-visual span {
	font-size: 2.5rem;
	animation: sl-home-float-drift 5s ease-in-out infinite;
}

.sl-home-sac__empty-visual span:nth-child(2) { animation-delay: -1.5s; }
.sl-home-sac__empty-visual span:nth-child(3) { animation-delay: -3s; }

.sl-home-sac__empty h3 {
	font-size: 1.25rem;
	font-weight: 900;
	margin-bottom: 8px;
	background: var(--home-gradient-title);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.sl-home-sac__empty p {
	color: var(--sl-gray-600);
	margin-bottom: 20px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.sl-home-sac__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.sl-home-sac__card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 22px;
	border-radius: 18px;
	background: var(--sac-bg, #fff);
	border: 1px solid rgba(255,255,255,0.9);
	box-shadow: 0 8px 28px rgba(74, 95, 111, 0.1);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.sl-home-sac__card:hover {
	transform: translateY(-8px) rotate(-0.5deg);
	box-shadow: 0 20px 48px rgba(85, 203, 205, 0.16);
}

.sl-home-sac__card-emoji {
	font-size: 1.75rem;
	line-height: 1;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sl-home-sac__card:hover .sl-home-sac__card-emoji {
	transform: scale(1.2) rotate(-10deg);
}

.sl-home-sac__card-glow {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--sac-from), var(--sac-to));
}

.sl-home-sac__card-mood {
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--sac-from);
}

.sl-home-sac__card-title {
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.4;
	color: var(--sl-gray-900);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sl-home-sac__card-meta {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--sl-gray-800);
	margin-top: auto;
}

/* ── News section — bento grid ──────────────────────────────────────────── */
.sl-home-news {
	position: relative;
	padding: 48px 0 64px;
	overflow: hidden;
	background: linear-gradient(180deg, var(--p-icy) 0%, var(--p-blue) 40%, var(--home-bg) 100%);
}

.sl-home-news__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.sl-home-news__bg-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.3;
	animation: sl-home-float 18s ease-in-out infinite;
}

.sl-home-news__bg-blob--1 {
	width: 400px;
	height: 400px;
	background: var(--p-blue);
	top: -120px;
	right: 10%;
}

.sl-home-news__bg-blob--2 {
	width: 360px;
	height: 360px;
	background: var(--p-aqua);
	bottom: -80px;
	left: -60px;
	animation-delay: -8s;
}

.sl-home-news__bg-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image: radial-gradient(circle, rgba(143, 202, 202, 0.45) 1px, transparent 1px);
	background-size: 24px 24px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
}

.sl-home-news .sl-container {
	position: relative;
	z-index: 1;
}

.sl-home-news__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--sl-gray-200);
}

.sl-home-news__title-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.sl-home-news__icon {
	font-size: 1.75rem;
	line-height: 1;
}

.sl-home-news__title {
	font-size: 1.375rem;
	font-weight: 900;
	margin-bottom: 4px;
	color: var(--sl-gray-900);
}

.sl-home-news__desc {
	font-size: 0.875rem;
	color: var(--home-text-muted);
	font-weight: 500;
	margin: 0;
	max-width: 560px;
}

.sl-home-news__more {
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	padding: 10px 18px;
	border-radius: 100px;
	background: var(--home-accent);
	box-shadow: 0 4px 14px rgba(85, 203, 205, 0.35);
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.sl-home-news__more:hover {
	background: var(--home-accent-hover);
	box-shadow: 0 6px 18px rgba(62, 184, 187, 0.4);
	transform: translateX(4px);
	text-decoration: none;
	color: #fff;
}

/* Merged categories inside news */
.sl-home-news__cats {
	margin-bottom: 28px;
	padding: 20px;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(212, 240, 240, 0.85), rgba(171, 222, 230, 0.85));
	border: 1px solid rgba(143, 202, 202, 0.5);
}

.sl-home-news__cats-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sl-gray-700);
	margin-bottom: 14px;
}

.sl-home-news__cats .sl-home-cats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
}

.sl-home-news__cats .sl-cat-item--home {
	padding: 14px 16px;
	border-radius: 14px;
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(6px);
}

.sl-home-news__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 28px;
	align-items: start;
}

/* Bento magazine grid */
.sl-home-news__bento {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 20px;
}

.sl-home-news__bento > .sl-reveal {
	min-width: 0;
}

.sl-home-news__bento > .sl-home-news__lead {
	grid-row: 1 / 3;
	grid-column: 1;
}

.sl-home-news__bento .sl-card__excerpt {
	color: var(--home-text-muted);
}

.sl-home-news__bento .sl-card__footer {
	color: var(--sl-gray-800);
	font-weight: 600;
	border-top-color: rgba(143, 202, 202, 0.35);
}

.sl-home-news__bento .sl-card {
	height: 100%;
	margin: 0;
	border-radius: 18px;
	border: 1px solid rgba(143, 202, 202, 0.35);
	box-shadow: var(--home-shadow);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.sl-home-news__bento .sl-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(85, 203, 205, 0.14);
}

.sl-home-news__lead .sl-card {
	display: flex;
	flex-direction: column;
}

.sl-home-news__lead .sl-card__img {
	aspect-ratio: 4/3;
}

.sl-home-news__lead .sl-card__title {
	font-size: 1.25rem;
}

.sl-home-news__lead .sl-card__excerpt {
	-webkit-line-clamp: 4;
}

.sl-home-news__bento > .sl-reveal:nth-child(n+6) {
	grid-column: 1 / -1;
}

.sl-home-news__bento > .sl-reveal:nth-child(6) .sl-card {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0;
}

.sl-home-news__bento > .sl-reveal:nth-child(6) .sl-card__img {
	aspect-ratio: auto;
	height: 100%;
	min-height: 140px;
	margin: 0;
	border-radius: 18px 0 0 18px;
}

.sl-home-news__bento > .sl-reveal:nth-child(6) .sl-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sl-home-news__aside {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: var(--sl-sticky-top, 88px);
}

.sl-home-news__aside .sl-top-posts {
	border-radius: 16px;
	box-shadow: var(--home-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sl-home-news__aside .sl-top-posts:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(85, 203, 205, 0.14);
}

/* ── Celebrations horizontal section ──────────────────────────────────────── */
.sl-home-celebrations {
	position: relative;
	padding: 48px 0 56px;
	overflow: hidden;
}

.sl-home-celebrations__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--p-blush) 0%, var(--p-cream2) 50%, var(--p-stone) 100%);
	pointer-events: none;
}

.sl-home-celebrations .sl-container {
	position: relative;
	z-index: 1;
}

.sl-home-celebrations__head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 24px;
}

.sl-home-celebrations__icon {
	font-size: 2rem;
	line-height: 1;
	animation: sl-home-icon-wiggle 4s ease-in-out infinite;
}

.sl-home-celebrations__title {
	font-size: 1.375rem;
	font-weight: 900;
	margin: 0 0 4px;
	background: linear-gradient(135deg, #FF968A, #FFC5BF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.sl-home-celebrations__sub {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--home-text-muted);
	margin: 0;
}

.sl-home-celebrations__track {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scroll-snap-type: x mandatory;
}

.sl-home-celebrations__card {
	flex: 1 1 200px;
	min-width: 200px;
	max-width: 260px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 24px 18px 20px;
	border-radius: 20px;
	background: rgba(255,255,255,0.9);
	border: 1px solid rgba(255, 174, 165, 0.6);
	box-shadow: 0 8px 28px rgba(255, 150, 138, 0.15);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.sl-home-celebrations__card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 16px 40px rgba(255, 150, 138, 0.22);
}

.sl-home-celebrations__card--anniversary {
	background: linear-gradient(160deg, #fff 0%, var(--p-cream) 100%);
	border-color: rgba(255, 200, 162, 0.55);
}

.sl-home-celebrations__card--anniversary:hover {
	box-shadow: 0 16px 40px rgba(255, 200, 162, 0.25);
}

.sl-home-celebrations__avatar {
	position: relative;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: visible;
	margin-bottom: 14px;
	background: linear-gradient(135deg, #FF968A, #FFC5BF);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.75rem;
	font-weight: 800;
	box-shadow: 0 8px 24px rgba(255, 150, 138, 0.28);
}

.sl-home-celebrations__card--anniversary .sl-home-celebrations__avatar {
	background: linear-gradient(135deg, #FFC8A2, #FFD8BE);
	box-shadow: 0 8px 24px rgba(255, 200, 162, 0.3);
}

.sl-home-celebrations__avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.sl-home-celebrations__avatar-deco {
	position: absolute;
	bottom: -4px;
	right: -4px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.sl-home-celebrations__name {
	font-size: 0.9375rem;
	font-weight: 800;
	color: var(--home-text);
	margin: 0 0 4px;
	line-height: 1.35;
}

.sl-home-celebrations__dept {
	font-size: 0.75rem;
	color: var(--sl-gray-500);
	margin: 0 0 10px;
}

.sl-home-celebrations__badge {
	font-size: 0.75rem;
	font-weight: 700;
	color: #d46a8a;
	margin: 0;
	margin-top: auto;
	padding: 6px 12px;
	border-radius: 100px;
	background: rgba(243, 176, 195, 0.25);
}

.sl-home-celebrations__card--anniversary .sl-home-celebrations__badge {
	color: #c98a5a;
	background: rgba(255, 200, 162, 0.35);
}

/* Desktop: stretch cards evenly without scroll when they fit */
@media (min-width: 900px) {
	.sl-home-celebrations__track {
		flex-wrap: wrap;
		overflow-x: visible;
		justify-content: center;
	}

	.sl-home-celebrations__card {
		flex: 1 1 calc(25% - 12px);
		max-width: none;
	}
}

/* ── Recognition ────────────────────────────────────────────────────────── */
.sl-home-recognition {
	padding-top: 48px !important;
	padding-bottom: 48px !important;
	background: linear-gradient(180deg, var(--home-bg) 0%, rgba(198, 219, 218, 0.35) 50%, var(--home-bg) 100%);
}

.sl-home-recognition__head {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 32px;
	text-align: left;
}

.sl-home-recognition__head .sl-section__label {
	margin-bottom: 8px;
}

.sl-home-recognition__head .sl-section__title {
	text-align: left;
}

.sl-home-recognition__icon {
	font-size: 2rem;
	line-height: 1;
	flex-shrink: 0;
}

.sl-home-recognition__desc {
	text-align: left;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.sl-home-recognition .sl-two-col {
	gap: 28px;
}

/* ── CTA ────────────────────────────────────────────────────────────────── */
.sl-home-cta {
	padding: 0 0 64px;
}

.sl-home-cta__card {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 40px 48px;
	border-radius: 24px;
	color: #fff;
	background: var(--home-gradient-cta);
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(85, 203, 205, 0.25);
}

.sl-home-cta__blobs span {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	pointer-events: none;
}

.sl-home-cta__blobs span:first-child {
	width: 200px;
	height: 200px;
	top: -60px;
	right: -40px;
}

.sl-home-cta__blobs span:last-child {
	width: 140px;
	height: 140px;
	bottom: -40px;
	left: 20%;
}

.sl-home-cta__content {
	position: relative;
	z-index: 1;
	max-width: 520px;
}

.sl-home-cta__title {
	font-size: 1.5rem;
	font-weight: 900;
	margin-bottom: 8px;
}

.sl-home-cta__desc {
	opacity: 0.9;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0;
}

.sl-home-cta__actions {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.sl-home-cta__actions .sl-btn--outline {
	border-color: rgba(255,255,255,0.45);
	color: #fff;
}

.sl-home-cta__actions .sl-btn--outline:hover {
	background: rgba(255,255,255,0.12);
	color: #fff;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
	.sl-home-hero__layout {
		grid-template-columns: 1fr;
	}

	.sl-home-hero__media {
		order: -1;
	}

	.sl-home-quick__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sl-home-sac__showcase {
		grid-template-columns: 1fr;
	}

	.sl-home-sac__grid {
		grid-template-columns: 1fr;
	}

	.sl-home-news__bento {
		grid-template-columns: 1fr 1fr;
	}

	.sl-home-news__bento > .sl-home-news__lead {
		grid-row: auto;
		grid-column: 1 / -1;
	}

	.sl-home-news__bento > .sl-reveal:nth-child(6) .sl-card {
		grid-template-columns: 1fr;
	}

	.sl-home-news__bento > .sl-reveal:nth-child(6) .sl-card__img {
		border-radius: 18px 18px 0 0;
		min-height: 180px;
	}

	.sl-home-news__layout {
		grid-template-columns: 1fr;
	}

	.sl-home-news__aside {
		position: static;
	}
}

@media (max-width: 768px) {
	.sl-home-hero {
		padding-top: 28px;
	}

	.sl-home-hero__layout {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-bottom: 28px;
	}

	.sl-home-hero__title {
		font-size: clamp(1.65rem, 7vw, 2.25rem);
	}

	.sl-home-hero__desc {
		font-size: 0.95rem;
		margin-bottom: 20px;
	}

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

	.sl-home-hero__actions .sl-btn {
		width: 100%;
		justify-content: center;
	}

	.sl-home-hero__stats {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.sl-home-hero__stat {
		padding: 10px 8px;
		text-align: center;
	}

	.sl-home-hero__stat strong {
		font-size: 1.1rem;
	}

	.sl-home-hero__stat span {
		font-size: 0.68rem;
	}

	.sl-home-hero__media {
		min-width: 0;
	}

	.sl-home-hero__card-title {
		font-size: 1rem;
		overflow-wrap: anywhere;
	}

	.sl-home-hero__headline span {
		overflow-wrap: anywhere;
	}

	.sl-home-quick {
		margin-top: -12px;
	}

	.sl-home-quick__grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.sl-home-quick__arrow {
		display: none;
	}

	.sl-home-sac__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.sl-home-sac__cta {
		width: 100% !important;
	}

	.sl-home-celebrations__card {
		min-width: 160px;
	}

	.sl-home-cats__grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.sl-home-deco__shape,
	.sl-home-deco__ring {
		display: none;
	}

	.sl-home-news__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.sl-home-news__bento {
		grid-template-columns: 1fr;
	}

	.sl-home-news__bento .sl-card__excerpt {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.sl-home-cta__card {
		padding: 24px 18px;
		flex-direction: column;
		align-items: flex-start;
	}

	.sl-home-cta__actions {
		width: 100%;
		flex-direction: column;
	}

	.sl-home-cta__actions .sl-btn {
		flex: 1;
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.sl-home-quick__grid {
		grid-template-columns: 1fr;
	}

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

	.sl-home-hero__stats {
		grid-template-columns: 1fr;
	}
}
