/*
 * The Lion Sleep — base design system.
 * Light, minimal, premium-bedroom aesthetic: warm off-white background,
 * near-black ink, a soft muted-gold accent. Headings in Ruda, body in
 * Poppins (same families as the legacy site).
 */

:root {
	--ls-cream: #faf7f2;
	--ls-white: #ffffff;
	--ls-ink: #171512;
	--ls-ink-soft: #4a4640;
	--ls-line: #e7e1d6;
	--ls-gold: #b9975b;
	--ls-gold-dark: #8f7443;
	--ls-radius: 4px;
	--ls-font-heading: 'Ruda', sans-serif;
	--ls-font-body: 'Poppins', sans-serif;
	--ls-container: 1200px;
}

body.ls-no-scroll {
	overflow: hidden;
}

body {
	font-family: var( --ls-font-body );
	color: var( --ls-ink );
	background: var( --ls-white );
}

.ls-w h1,
.ls-w h2,
.ls-w h3,
.ls-w h4,
h1, h2, h3, h4 {
	font-family: var( --ls-font-heading );
	color: var( --ls-ink );
	line-height: 1.2;
}

.ls-container {
	max-width: var( --ls-container );
	margin-inline: auto;
	padding-inline: 24px;
}

.ls-eyebrow {
	font-family: var( --ls-font-heading );
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var( --ls-gold-dark );
	margin: 0 0 10px;
}
.ls-eyebrow--light {
	color: var( --ls-gold );
}

.ls-sechead {
	max-width: 720px;
	margin: 0 auto 44px;
	text-align: center;
}
.ls-align-left .ls-sechead {
	margin-left: 0;
	text-align: left;
}
.ls-sechead__title {
	font-size: clamp( 26px, 3.4vw, 40px );
	margin: 0 0 12px;
}
.ls-sechead__lead {
	color: var( --ls-ink-soft );
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 12px;
}
.ls-sechead__link {
	display: inline-block;
	margin-top: 6px;
	font-weight: 600;
	color: var( --ls-ink );
	border-bottom: 1px solid var( --ls-ink );
}
.ls-sechead--dark .ls-sechead__title,
.ls-sechead--dark .ls-sechead__lead { color: #fff; }
.ls-sechead--dark .ls-eyebrow { color: var( --ls-gold ); }

/* Buttons */
.ls-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var( --ls-font-body );
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.02em;
	padding: 15px 30px;
	border-radius: var( --ls-radius );
	border: 1.5px solid transparent;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
	cursor: pointer;
}
.ls-btn:hover { transform: translateY(-1px); }
.ls-btn--dark {
	background: var( --ls-ink );
	color: #fff !important;
	border-color: var( --ls-ink );
}
.ls-btn--dark:hover { background: #000; }
.ls-btn--light {
	background: #fff;
	color: var( --ls-ink ) !important;
	border-color: #fff;
}
.ls-btn--light:hover { background: var( --ls-cream ); }
.ls-btn--outline-light {
	background: transparent;
	color: #fff !important;
	border-color: rgba(255,255,255,.7);
}
.ls-btn--outline-light:hover { background: rgba(255,255,255,.12); }
.ls-btn--small { padding: 10px 20px; font-size: 13px; }

/* ---------------------------------------------------------------------
 * Header
 * ------------------------------------------------------------------- */
.ls-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: #fff;
	border-bottom: 1px solid transparent;
	transition: box-shadow .2s ease, border-color .2s ease;
}
.ls-header.is-scrolled {
	box-shadow: 0 2px 14px rgba(0,0,0,.06);
	border-color: var( --ls-line );
}
.ls-header__in {
	max-width: var( --ls-container );
	margin-inline: auto;
	padding: 16px 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
}
.ls-header__brand { justify-self: center; text-align: center; }
.ls-header__brand img { max-height: 44px; width: auto; }
.ls-header__title {
	font-family: var( --ls-font-heading );
	font-weight: 700;
	font-size: 18px;
	letter-spacing: .02em;
}
.ls-header__burger {
	justify-self: start;
	background: none;
	border: none;
	appearance: none;
	width: 32px;
	height: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	padding: 0;
}
.ls-header__burger span {
	display: block;
	height: 2px;
	background: var( --ls-ink ) !important;
	border-radius: 2px;
}
.ls-header__actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 18px;
}
.ls-header__icon {
	position: relative;
	color: var( --ls-ink );
	display: inline-flex;
}
.ls-header__badge {
	position: absolute;
	top: -8px;
	right: -10px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: var( --ls-ink ) !important;
	color: #fff !important;
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Drawer */
.ls-drawer {
	position: fixed;
	inset: 0;
	z-index: 300;
	visibility: hidden;
	pointer-events: none;
}
.ls-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}
.ls-drawer__scrim {
	position: absolute;
	inset: 0;
	background: rgba(23,21,18,.4);
	opacity: 0;
	transition: opacity .25s ease;
}
.ls-drawer.is-open .ls-drawer__scrim { opacity: 1; }
.ls-drawer__panel {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: min(360px, 86vw);
	background: #fff;
	padding: 28px 28px 40px;
	transform: translateX(-100%);
	transition: transform .3s ease;
	overflow-y: auto;
}
.ls-drawer.is-open .ls-drawer__panel { transform: translateX(0); }
.ls-drawer__close {
	background: none;
	border: none;
	appearance: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: var( --ls-ink ) !important;
	margin-bottom: 20px;
}
.ls-drawer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ls-drawer__menu li { border-bottom: 1px solid var( --ls-line ); }
.ls-drawer__menu a {
	display: block;
	padding: 14px 2px;
	color: var( --ls-ink );
	font-weight: 500;
	font-size: 17px;
	text-decoration: none;
}
.ls-lang { margin-top: 24px; display: flex; gap: 8px; align-items: center; font-size: 13px; }
.ls-lang__item { color: var( --ls-ink-soft ); font-weight: 600; }
.ls-lang__sep { color: var( --ls-line ); }
.ls-socials { margin-top: 20px; display: flex; gap: 14px; }
.ls-socials__item { color: var( --ls-ink-soft ); font-size: 13px; font-weight: 600; }

/* ---------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------- */
.ls-footer { background: var( --ls-cream ); }
.ls-footer__top {
	max-width: var( --ls-container );
	margin-inline: auto;
	padding: 64px 24px 40px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
}
.ls-footer__brand img { max-height: 40px; margin-bottom: 14px; }
.ls-footer__tag { color: var( --ls-ink-soft ); font-size: 14px; line-height: 1.6; max-width: 320px; }
.ls-footer__col h4 { font-size: 14px; letter-spacing: .04em; margin: 0 0 16px; }
.ls-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ls-footer__col a { color: var( --ls-ink-soft ); font-size: 14px; text-decoration: none; }
.ls-footer__col a:hover { color: var( --ls-ink ); }
.ls-footer__bottom {
	border-top: 1px solid var( --ls-line );
	padding: 20px 24px;
	max-width: var( --ls-container );
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-size: 13px;
	color: var( --ls-ink-soft );
}
.ls-footer__legal-list { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; flex-wrap: wrap; }
.ls-footer__legal-list a { color: var( --ls-ink-soft ); text-decoration: none; }
.ls-footer__credit a { color: var( --ls-ink-soft ); font-weight: 600; }

@media ( max-width: 900px ) {
	.ls-footer__top { grid-template-columns: 1fr 1fr; }
}
@media ( max-width: 560px ) {
	.ls-footer__top { grid-template-columns: 1fr; }
	.ls-header__in { padding: 12px 16px; }
}
