/* ==========================================================================
   Chyzhwood — Base styles
   Mobile-first, CTA-focused, eco-premium aesthetic
   ========================================================================== */

:root {
	--color-bg: #f7f2e9;
	--color-bg-alt: #ebe4d8;
	--color-surface: #fffdf9;
	--color-text: #2c1810;
	--color-text-muted: #5c4a3d;
	--color-primary: #b87333;
	--color-primary-dark: #9a5f28;
	--color-primary-light: #d4954f;
	--color-accent: #3d2b1f;
	--color-border: #d4c9b8;
	--color-brown-deep: #3d2b1f;
	--color-brown-dark: #4a3528;
	--color-brown-mid: #5c4220;
	--color-brown-soft: #6b5240;
	--color-brown-muted: #a8907a;
	--color-brown-pale: #e8ddd0;
	--color-white-soft: #fffdf9;
	--color-wellness: #5c7a4a;
	--color-author: #6b4a3a;
	--color-success: #4a7c59;

	--font-body: 'Manrope', system-ui, sans-serif;
	--font-heading: 'Cormorant Garamond', Georgia, serif;
	--font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;

	--type-base-size: 16px;
	--card-headline-color: #fff;
	--card-headline-size: clamp(1.05rem, 3.6vw, 1.65rem);

	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2.5rem;
	--space-xl: 4rem;
	--space-2xl: 6rem;

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;

	--shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
	--shadow-md: 0 8px 24px rgba(44, 24, 16, 0.1);
	--shadow-lg: 0 16px 48px rgba(44, 24, 16, 0.14);
	--shadow-glow: 0 4px 24px rgba(184, 115, 51, 0.28);

	--gradient-warm: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
	--gradient-hero-fade: linear-gradient(180deg, transparent 45%, rgba(255, 253, 249, 0.55) 75%, var(--color-white-soft) 100%);
	/* Shared homepage cream — one continuous gradient, no section seams. */
	--home-surface: #faf6f0;
	--home-surface-soft: #f0e8de;
	--gradient-header-fade: linear-gradient(
		180deg,
		var(--color-brown-dark) 0%,
		#5c4a3d 14%,
		#8a7565 32%,
		#c9bdb0 52%,
		#e8ddd0 70%,
		var(--home-surface) 84%,
		var(--home-surface) 100%
	);
	--gradient-home-page: linear-gradient(
		180deg,
		var(--home-surface) 0%,
		var(--home-surface) 26%,
		var(--home-surface-soft) 38%,
		#e4d9cc 48%,
		#d4c4b4 58%,
		#b8a090 68%,
		#8f7560 78%,
		var(--color-brown-soft) 86%,
		var(--color-brown-dark) 94%,
		var(--color-brown-deep) 100%
	);

	--header-height: 200px;
	--header-bar-height: 108px;
	/* Primary logo box (left). */
	--header-logo-size: 92px;
	--header-logo-box: 220px;
	--header-title-size: clamp(1.45rem, 3.6vw, 2.35rem);
	--header-brand-text-size: clamp(1.05rem, 2.4vw, 1.35rem);
	--header-title-color: rgba(255, 253, 249, 0.98);
	--header-accent: rgba(212, 175, 130, 0.85);
	--header-glass: rgba(255, 253, 249, 0.1);
	--header-glass-border: rgba(255, 253, 249, 0.22);
	--transition: 0.25s ease;
	--container: 1200px;
	--container-narrow: 760px;
}

/* Reset & base
   -------------------------------------------------------------------------- */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-height);
	-webkit-text-size-adjust: 100%;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--type-base-size);
	line-height: 1.65;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-feature-settings: "kern" 1, "liga" 1;
	overflow-x: clip;
	position: relative;
}

body.home {
	background: var(--home-surface);
}

/* Living background illustration
   -------------------------------------------------------------------------- */

.site-decor {
	/* Decorative wood illustration + grain removed: background is now a flat
	   cream with no patterns behind the content. */
	display: none;
}

.site-decor__scene {
	position: absolute;
	top: 50%;
	right: clamp(-12%, -5vw, 0%);
	width: min(92vw, 780px);
	height: min(115vh, 1100px);
	transform: translateY(-48%);
	opacity: 0.2;
	filter: saturate(1.05);
}

.site-decor__svg {
	width: 100%;
	height: 100%;
	display: block;
}

.site-decor__sway {
	animation: decor-sway 7s ease-in-out infinite;
}

.site-decor__sway--slow {
	animation-duration: 10s;
}

.site-decor__sway--reverse {
	animation-direction: reverse;
}

.site-decor__float {
	animation: decor-float 14s ease-in-out infinite;
}

@keyframes decor-sway {
	0%, 100% { transform: rotate(0deg); }
	50% { transform: rotate(2deg); }
}

@keyframes decor-float {
	0%, 100% { transform: translateY(0); opacity: 0.22; }
	50% { transform: translateY(-12px); opacity: 0.3; }
}

.theme-mood--furniture .site-decor__scene {
	filter: sepia(0.35) saturate(1.15) hue-rotate(-8deg);
	opacity: 0.22;
}

.theme-mood--wellness .site-decor__scene,
.theme-mood--shop .site-decor__scene {
	filter: saturate(1.25) hue-rotate(18deg);
	opacity: 0.24;
}

.theme-mood--author .site-decor__scene {
	filter: sepia(0.25) saturate(1.1) hue-rotate(-12deg);
	opacity: 0.21;
}

.theme-mood--home .site-decor__scene {
	opacity: 0.23;
}

.site-decor__grain {
	position: absolute;
	inset: 0;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 180px 180px;
}

.site-main {
	position: relative;
	z-index: 1;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

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

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0.01em;
	color: var(--color-accent);
	margin-top: 0;
	overflow-wrap: break-word;
	word-wrap: break-word;
	font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
}

p {
	margin: 0 0 var(--space-sm);
	overflow-wrap: break-word;
	word-wrap: break-word;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Utilities
   -------------------------------------------------------------------------- */

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 clamp(0.5rem, 3vw, var(--space-md));
}

.container--narrow {
	max-width: var(--container-narrow);
}

.screen-reader-text,
.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;
}

.skip-link:focus {
	position: fixed;
	top: var(--space-sm);
	left: var(--space-sm);
	z-index: 9999;
	width: auto;
	height: auto;
	padding: var(--space-sm) var(--space-md);
	background: var(--color-accent);
	color: #fff;
	clip: auto;
	border-radius: var(--radius-sm);
}

.section {
	padding: var(--space-xl) 0;
}

.section--about {
	background: var(--color-surface);
}

.section--categories {
	background: linear-gradient(
		180deg,
		rgba(245, 240, 232, 0.8) 0%,
		rgba(255, 253, 249, 0.92) 100%
	);
}

.section--page-hero {
	padding: var(--space-lg) 0 var(--space-md);
	background: linear-gradient(
		180deg,
		rgba(255, 253, 249, 0.9) 0%,
		rgba(245, 240, 232, 0.75) 100%
	);
	border-bottom: 1px solid var(--color-border);
}

.section--page-hero .section__header {
	margin-bottom: 0;
}

.section--archive,
.section--woocommerce {
	background: linear-gradient(
		180deg,
		rgba(245, 240, 232, 0.85) 0%,
		rgba(255, 253, 249, 0.9) 50%,
		rgba(245, 240, 232, 0.85) 100%
	);
}

.section--page {
	background: rgba(255, 253, 249, 0.88);
}

.section__title--sm {
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	margin-top: var(--space-lg);
	margin-bottom: var(--space-md);
}

.section--trust {
	background: var(--color-surface);
}

.section--cta {
	background: var(--color-brown-dark);
	color: rgba(255, 253, 249, 0.92);
	padding: var(--space-xl) 0;
}

.section__header {
	text-align: center;
	margin-bottom: var(--space-lg);
}

.section__title {
	font-size: clamp(2rem, 5vw, 2.85rem);
	margin-bottom: var(--space-sm);
	font-weight: 600;
	letter-spacing: 0.015em;
}

.section__header .section__title::after {
	content: '';
	display: block;
	width: 52px;
	height: 3px;
	margin: var(--space-sm) auto 0;
	background: var(--gradient-warm);
	border-radius: 2px;
	opacity: 0.75;
}

.section--page-hero .section__header .section__title::after,
.home .hero--home .section__title::after {
	display: none;
}

.section__subtitle {
	font-size: 1.1rem;
	color: var(--color-text-muted);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 500;
}

/* Buttons — CTA focus
   -------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	padding: 0.75rem 1.5rem;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.btn:hover {
	transform: translateY(-1px);
}

.btn:active {
	transform: translateY(0);
}

.btn--primary {
	background: var(--gradient-warm);
	color: #fff;
	border-color: transparent;
	box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: var(--shadow-glow);
}

.btn--secondary {
	background: transparent;
	color: var(--color-accent);
	border-color: var(--color-accent);
}

.btn--secondary:hover {
	background: var(--color-accent);
	color: #fff;
}

.btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.8);
}

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

.btn--sm {
	min-height: 40px;
	padding: 0.45rem 0.75rem;
	font-size: 0.875rem;
}

.btn__text-short {
	display: none;
}

.btn__text-full {
	display: inline;
}

.btn--lg {
	min-height: 52px;
	padding: 0.875rem 2rem;
	font-size: 1.05rem;
}

.btn--full {
	width: 100%;
}

.btn--header {
	background: rgba(255, 253, 249, 0.95);
	color: var(--color-brown-dark);
	border-color: rgba(255, 253, 249, 0.95);
	box-shadow: none;
}

.btn--header:hover {
	background: #fff;
	color: var(--color-brown-deep);
	border-color: #fff;
}

.btn--header.btn--cta {
	background: var(--gradient-warm);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 2px 12px rgba(184, 115, 51, 0.35);
}

.btn--header.btn--cta:hover {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: #fff;
	box-shadow: var(--shadow-glow);
}

.btn--category {
	background: var(--color-surface);
	color: var(--color-accent);
	border-color: var(--color-border);
	font-weight: 600;
	text-transform: lowercase;
	box-shadow: var(--shadow-sm);
	min-height: 44px;
	padding: 0.6rem 1rem;
	font-size: 0.9375rem;
	transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), transform 0.15s ease;
}

.btn--category:hover {
	background: var(--color-bg-alt);
	border-color: var(--color-primary);
	color: var(--color-primary-dark);
	box-shadow: var(--shadow-md);
	transform: translateY(-1px);
}

.hero-category.category-card--furniture .btn--category {
	border-color: #c4a882;
	color: #6b4f1a;
}

.hero-category.category-card--wellness .btn--category {
	border-color: #a8b89a;
	color: #3d5c32;
}

.hero-category.category-card--author .btn--category {
	border-color: #b8907a;
	color: #5c3a2a;
}

/* Header
   -------------------------------------------------------------------------- */

.site-header {
	position: relative;
	z-index: 100;
	background: none;
	border-bottom: none;
	box-shadow: 0 8px 32px rgba(44, 24, 16, 0.18);
}

.site-header__top {
	position: relative;
	overflow: hidden;
	background: linear-gradient(
		165deg,
		#7a6354 0%,
		var(--color-brown-mid) 38%,
		var(--color-brown-dark) 100%
	);
	color: rgba(255, 253, 249, 0.96);
}

.site-header__top::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 90% 120% at 18% -30%, rgba(212, 175, 130, 0.22) 0%, transparent 58%),
		radial-gradient(ellipse 70% 90% at 82% 110%, rgba(255, 253, 249, 0.08) 0%, transparent 55%);
	pointer-events: none;
}

.site-header__top::after {
	content: '';
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--header-accent) 18%,
		rgba(255, 253, 249, 0.35) 50%,
		var(--header-accent) 82%,
		transparent 100%
	);
	pointer-events: none;
}

.site-header__shell {
	display: flex;
	flex-direction: column;
	gap: 0;
	container-type: inline-size;
	container-name: site-header;
	position: relative;
	z-index: 1;
}

.site-header__bar {
	display: grid;
	/* Symmetric outer columns keep the title optically centered even when the
	   left logo box and right actions cluster differ in width. */
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	grid-template-rows: 1fr;
	align-items: center;
	gap: clamp(0.5rem, 2vw, var(--space-md));
	height: auto;
	min-height: var(--header-bar-height);
	max-height: none;
	padding: 0.55rem 0;
	overflow: visible;
}

.site-header__brand {
	flex-shrink: 0;
	justify-self: start;
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
	padding: 0.4rem 0.55rem;
	border-radius: var(--radius-md);
	background: var(--header-glass);
	border: 1px solid var(--header-glass-border);
	box-shadow:
		inset 0 1px 0 rgba(255, 253, 249, 0.14),
		0 6px 18px rgba(44, 24, 16, 0.16);
	backdrop-filter: blur(6px);
}

.site-header__brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--header-logo-box);
	max-width: 100%;
	min-height: var(--header-logo-size);
	height: auto;
	line-height: 0;
}

.site-header .site-logo,
.site-header .site-logo:hover {
	color: rgba(255, 253, 249, 0.96);
}

.site-header .site-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: min(100%, 9.5rem);
}

.site-header .site-logo__name {
	font-family: var(--font-display);
	font-size: var(--header-brand-text-size);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-shadow: 0 2px 10px rgba(44, 24, 16, 0.22);
}

.site-header .site-logo__partner,
.site-header__brand-partner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-top: 0.18rem;
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.05;
	color: rgba(255, 253, 249, 0.92);
	letter-spacing: 0.06em;
	text-align: center;
}

.site-header .site-logo__amp,
.site-header__brand-amp {
	display: block;
	font-size: clamp(0.75rem, 1.8vw, 0.95rem);
	font-weight: 600;
	line-height: 1;
	opacity: 0.88;
	color: var(--header-accent);
}

.site-header .site-logo__partner-name,
.site-header__brand-partner-name {
	display: block;
	font-size: clamp(0.72rem, 1.6vw, 0.92rem);
	line-height: 1.1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.site-header__brand-stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
	line-height: 0;
	text-align: center;
	width: 100%;
}

.site-header__brand-stack .custom-logo-link {
	width: 100%;
	min-height: var(--header-logo-size);
}

.site-header__title {
	margin: 0;
	padding: 0 clamp(0.25rem, 1.5vw, 0.85rem);
	font-family: var(--font-display);
	font-size: var(--header-title-size);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: 0.025em;
	text-align: center;
	color: var(--header-title-color);
	justify-self: center;
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
	max-width: 100%;
	text-shadow: 0 2px 14px rgba(44, 24, 16, 0.28);
}

.site-header__title-link {
	display: block;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
	line-height: 1.12;
}

.site-header__title-link::after {
	content: '';
	display: block;
	width: clamp(2.5rem, 8vw, 4.5rem);
	height: 2px;
	margin: 0.4rem auto 0;
	border-radius: 999px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--header-accent) 50%,
		transparent 100%
	);
	opacity: 0.9;
}

.site-header__title-link:hover,
.site-header__title-link:focus-visible {
	opacity: 0.92;
	transform: translateY(-1px);
}

.site-header__title-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(0.35rem, 1.5vw, 0.55rem);
	flex-shrink: 0;
	justify-self: end;
	grid-column: 3;
	grid-row: 1;
	min-width: 0;
}

.site-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.5rem 0.9rem;
	font-weight: 600;
	font-size: 0.9rem;
	color: rgba(255, 253, 249, 0.95);
	white-space: nowrap;
	border-radius: 999px;
	border: 1px solid var(--header-glass-border);
	background: var(--header-glass);
	box-shadow: inset 0 1px 0 rgba(255, 253, 249, 0.12);
	transition: background var(--transition), border-color var(--transition), color var(--transition), transform 0.2s ease;
}

.site-header__phone-icon {
	flex-shrink: 0;
	display: inline-flex;
	color: var(--header-accent);
}

.site-header__phone-text {
	min-width: 0;
	letter-spacing: 0.01em;
}

.site-header__phone:hover {
	color: #fff;
	border-color: rgba(212, 175, 130, 0.55);
	background: rgba(255, 253, 249, 0.14);
	transform: translateY(-1px);
}

.site-header .chyzhwood-cart-link {
	width: 44px;
	height: 44px;
	color: rgba(255, 253, 249, 0.95);
	border-radius: 50%;
	border: 1px solid var(--header-glass-border);
	background: var(--header-glass);
	box-shadow: inset 0 1px 0 rgba(255, 253, 249, 0.12);
	transition: background var(--transition), border-color var(--transition), color var(--transition), transform 0.2s ease;
}

.site-header .chyzhwood-cart-link:hover {
	color: #fff;
	border-color: rgba(212, 175, 130, 0.55);
	background: rgba(255, 253, 249, 0.14);
	transform: translateY(-1px);
}

.site-header .chyzhwood-cart-link__count {
	background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
	color: var(--color-brown-deep);
	border: 1px solid rgba(255, 253, 249, 0.35);
}

.site-header__info {
	background-color: var(--home-surface);
	background-image: var(--gradient-header-fade);
	color: var(--color-brown-deep);
	text-align: center;
	padding: 0.7rem 0 0.85rem;
	overflow: hidden;
	position: relative;
}

.site-header__info-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 1.75rem;
	padding-inline: clamp(3.25rem, 14vw, 4.5rem);
}

.site-header__info::before {
	content: '';
	position: absolute;
	inset: 0 auto auto 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(184, 115, 51, 0.35) 50%,
		transparent 100%
	);
}

.site-header__info-text {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(0.875rem, 2.2vw, 1.05rem);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	white-space: normal;
	line-height: 1.45;
	max-width: 100%;
	color: inherit;
}

.site-logo {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--color-accent);
}

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

.site-logo__name {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.1;
}

.site-logo__tagline {
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--color-text-muted);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.custom-logo-link img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: var(--header-logo-size);
	object-fit: contain;
	object-position: center;
}

/* Navigation
   -------------------------------------------------------------------------- */

.site-header__nav-row {
	display: block;
	height: auto;
	padding: 0.4rem 0 0.65rem;
	border-top: 1px solid rgba(255, 253, 249, 0.12);
}

.site-nav {
	position: static;
	transform: none;
	visibility: visible;
	background: none;
	padding: 0;
	overflow: visible;
}

.nav-menu {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.15rem clamp(0.35rem, 2vw, 1.25rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu > li {
	opacity: 1;
	transform: none;
}

.nav-menu a {
	position: relative;
	display: block;
	padding: 0.35rem 0.1rem;
	font-family: var(--font-body);
	font-size: clamp(0.72rem, 2.6vw, 0.875rem);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 253, 249, 0.88);
	border-bottom: none;
	text-decoration: none;
	transition: color var(--transition), padding-left var(--transition);
}

.nav-menu a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--color-primary-light);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
	color: #fff;
	padding-left: 0.1rem;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.nav-menu .sub-menu {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Hero
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
}

.hero__placeholder {
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(61, 43, 31, 0.15) 0%, transparent 50%),
		linear-gradient(160deg, #8b6914 0%, #5c4220 40%, #3d2b1f 100%);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(44, 24, 16, 0.55) 0%,
		rgba(44, 24, 16, 0.75) 100%
	);
}

.hero__content {
	position: relative;
	z-index: 1;
	padding: var(--space-2xl) 0;
	color: #fff;
	max-width: 720px;
}

.hero__eyebrow {
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary-light);
	margin-bottom: var(--space-sm);
}

.hero__title {
	font-size: clamp(2.25rem, 7vw, 3.75rem);
	color: #fff;
	margin-bottom: var(--space-md);
}

.hero__text {
	font-size: 1.15rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: var(--space-lg);
	max-width: 540px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

.hero--home {
	min-height: auto;
	display: block;
	align-items: stretch;
	overflow: visible;
	background: transparent;
	padding: var(--space-md) 0 var(--space-lg);
	margin-top: 0;
}

.hero--home .hero__content {
	max-width: var(--container);
	color: var(--color-text);
	padding: 0;
}

.hero-categories {
	gap: clamp(0.35rem, 1.2vw, var(--space-sm));
}

.hero-category {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 100%;
	text-decoration: none;
	color: inherit;
}

.hero-category--link {
	border-radius: var(--radius-lg);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition);
}

.hero-category--link:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	color: inherit;
}

.hero-category--link:focus-visible {
	outline: 3px solid var(--color-primary);
	outline-offset: 4px;
}

.hero-category__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm);
	padding: clamp(0.65rem, 2.5vw, 1rem) clamp(0.75rem, 3vw, 1.15rem);
	background: linear-gradient(
		to top,
		rgba(44, 24, 16, 0.82) 0%,
		rgba(44, 24, 16, 0.45) 55%,
		transparent 100%
	);
	pointer-events: none;
}

.hero-category__cta-text {
	font-family: var(--font-heading);
	font-size: clamp(0.95rem, 2.5vw, 1.12rem);
	font-weight: 600;
	color: #fff;
	line-height: 1.25;
	text-align: left;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-category__cta-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 253, 249, 0.95);
	color: var(--color-accent);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background var(--transition), color var(--transition);
}

.hero-category--link:hover .hero-category__cta-icon {
	transform: translateX(4px) scale(1.05);
	background: var(--gradient-warm);
	color: #fff;
}

.hero-category.category-card--furniture .hero-category__cta-icon {
	color: #6b4f1a;
}

.hero-category.category-card--wellness .hero-category__cta-icon {
	color: #3d5c32;
}

.hero-category.category-card--author .hero-category__cta-icon {
	color: #5c3a2a;
}

.hero-category.category-card--furniture:hover .hero-category__cta-icon,
.hero-category.category-card--wellness:hover .hero-category__cta-icon,
.hero-category.category-card--author:hover .hero-category__cta-icon {
	color: #fff;
}

.hero-category__block {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: none;
	position: relative;
	background: var(--color-white-soft);
	flex: 1;
	width: 100%;
	aspect-ratio: 5 / 6;
	max-height: clamp(280px, 32vw, 380px);
}

.hero--home .category-cards {
	grid-auto-rows: auto;
	align-items: stretch;
}

.hero--home .hero-category {
	min-height: 0;
}

.hero--home .hero-category__block {
	position: relative;
	flex: none;
	height: clamp(260px, 22vw, 340px);
	aspect-ratio: auto;
	max-height: none;
}

.hero--home .hero-category__block > .chyzhwood-card-media--image,
.hero--home .hero-category__block > .placeholder-image--card {
	position: absolute;
	inset: 0;
	min-height: 0;
	height: 100%;
	width: 100%;
}

.hero--home .chyzhwood-card-media--image .chyzhwood-card-media__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	max-height: none;
	object-fit: cover;
	object-position: center;
}

.hero-category__block .placeholder-image--card,
.hero-category__block .chyzhwood-card-media--image {
	height: 100%;
	min-height: 0;
}

.hero-category__block::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	border-radius: inherit;
	box-shadow: inset 0 0 60px rgba(61, 43, 31, 0.08);
}

.hero-category__block .placeholder-image--card {
	min-height: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: clamp(0.35rem, 2vw, var(--space-md));
	padding-bottom: clamp(3.25rem, 10vw, 4.75rem);
	border-radius: var(--radius-lg);
}

.hero-category__block .placeholder-image--card .hero-category__headline {
	position: relative;
	inset: auto;
}

.hero-category__headline {
	margin: 0;
	width: 100%;
	max-width: 100%;
	font-family: var(--font-display);
	font-size: var(--card-headline-size);
	font-weight: 600;
	line-height: 1.28;
	color: var(--card-headline-color);
	text-align: center;
	text-wrap: balance;
	hyphens: auto;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
	padding: 0 0.5rem;
	box-sizing: border-box;
}

.hero-category__headline--long {
	font-size: var(--card-headline-size, clamp(0.9rem, 2.8vw, 1.15rem));
	line-height: 1.32;
	letter-spacing: 0.01em;
}

.home .site-main {
	background-color: var(--home-surface);
	background-image: var(--gradient-home-page);
	background-attachment: local;
}

.home .section--cta {
	padding: var(--space-2xl) 0 0;
	background: transparent;
	color: var(--color-brown-deep);
}

.home .cta-block {
	max-width: var(--container);
	margin: 0 auto;
}

.home .section--cta .container {
	padding-bottom: var(--space-2xl);
}

.home .cta-block__content {
	text-align: left;
}

.home .cta-block__title {
	color: var(--color-brown-deep);
}

.home .cta-block__text {
	color: var(--color-text-muted);
}

/* About
   -------------------------------------------------------------------------- */

.about-grid {
	display: grid;
	gap: var(--space-lg);
	align-items: center;
}

.about-grid__content .section__title {
	text-align: left;
}

.placeholder-image {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-bg-alt);
	border: 2px dashed var(--color-border);
	border-radius: var(--radius-md);
	color: var(--color-text-muted);
	font-size: 0.9rem;
	text-align: center;
	padding: var(--space-md);
	min-height: 280px;
}

.placeholder-image--card {
	min-height: 200px;
	border: none;
	background: linear-gradient(145deg, #d4c9b8 0%, #b8a890 100%);
}

.chyzhwood-card-media--image {
	position: relative;
	padding: 0;
	border: none;
	min-height: 200px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
}

.chyzhwood-card-media--image::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	border-radius: inherit;
}

.chyzhwood-card-media--image::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: var(--gradient-hero-fade);
	border-radius: inherit;
}

.hero-category.category-card--furniture .chyzhwood-card-media--image::before {
	background: linear-gradient(
		135deg,
		rgba(196, 168, 130, 0.3) 0%,
		rgba(139, 105, 20, 0.12) 55%,
		transparent 100%
	);
}

.hero-category.category-card--wellness .chyzhwood-card-media--image::before {
	background: linear-gradient(
		135deg,
		rgba(168, 184, 154, 0.35) 0%,
		rgba(92, 122, 74, 0.15) 55%,
		transparent 100%
	);
}

.hero-category.category-card--author .chyzhwood-card-media--image::before {
	background: linear-gradient(
		135deg,
		rgba(184, 144, 122, 0.32) 0%,
		rgba(107, 74, 58, 0.14) 55%,
		transparent 100%
	);
}

.category-card--furniture .chyzhwood-card-media--image::before {
	background: linear-gradient(160deg, rgba(196, 168, 130, 0.25) 0%, transparent 70%);
}

.category-card--wellness .chyzhwood-card-media--image::before {
	background: linear-gradient(160deg, rgba(168, 184, 154, 0.28) 0%, transparent 70%);
}

.category-card--author .chyzhwood-card-media--image::before {
	background: linear-gradient(160deg, rgba(184, 144, 122, 0.26) 0%, transparent 70%);
}

.chyzhwood-card-media--image .chyzhwood-card-media__img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
}

.hero-category:hover .chyzhwood-card-media__img,
.category-card:hover .chyzhwood-card-media__img {
	transform: scale(1.03);
}

.chyzhwood-card-media--image .hero-category__headline {
	position: absolute;
	inset: auto 0 clamp(3.25rem, 10vw, 4.75rem);
	left: 0;
	right: 0;
	display: block;
	margin: 0 auto;
	padding: 0 clamp(0.5rem, 2vw, 0.85rem);
	z-index: 3;
}

.project-gallery__img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	display: block;
	border-radius: var(--radius-md);
}

.placeholder-image--gallery {
	min-height: 320px;
	border-radius: var(--radius-lg);
}

/* Category cards — main CTA blocks
   -------------------------------------------------------------------------- */

.category-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	align-items: stretch;
	gap: clamp(0.35rem, 1.5vw, var(--space-md));
}

.category-card {
	display: flex;
	flex-direction: column;
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	text-decoration: none;
	color: inherit;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition);
}

.category-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	color: inherit;
}

.category-card__media {
	overflow: hidden;
	position: relative;
}

.category-card__media .placeholder-image--card {
	min-height: 220px;
	transition: transform 0.4s ease;
}

.category-card:hover .placeholder-image--card {
	transform: scale(1.04);
}

.category-card--furniture .placeholder-image--card {
	background: linear-gradient(145deg, #c4a882 0%, #8b6914 100%);
}

.category-card--wellness .placeholder-image--card {
	background: linear-gradient(145deg, #a8b89a 0%, #5c7a4a 100%);
}

.category-card--author .placeholder-image--card {
	background: linear-gradient(145deg, #b8907a 0%, #6b4a3a 100%);
}

.category-card__body {
	padding: var(--space-md);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.category-card__title {
	font-size: 1.5rem;
	margin-bottom: var(--space-xs);
}

.category-card__desc {
	color: var(--color-text-muted);
	font-size: 0.95rem;
	flex: 1;
	margin-bottom: var(--space-md);
}

.category-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--color-primary);
	margin-top: auto;
}

.category-card:hover .category-card__cta {
	color: var(--color-primary-dark);
}

.category-card__cta svg {
	transition: transform var(--transition);
}

.category-card:hover .category-card__cta svg {
	transform: translateX(4px);
}

/* Gallery slider
   -------------------------------------------------------------------------- */

.gallery-slider {
	position: relative;
	margin-bottom: var(--space-lg);
}

.gallery-slider__track {
	display: flex;
	gap: var(--space-md);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: var(--space-xs);
}

.gallery-slider__track::-webkit-scrollbar {
	display: none;
}

.gallery-slider__slide {
	flex: 0 0 85%;
	scroll-snap-align: start;
}

.gallery-slider__controls {
	display: flex;
	justify-content: center;
	gap: var(--space-sm);
	margin-top: var(--space-md);
}

.gallery-slider__btn {
	width: 48px;
	height: 48px;
	border: 2px solid var(--color-border);
	background: var(--color-surface);
	border-radius: 50%;
	font-size: 1.25rem;
	cursor: pointer;
	color: var(--color-accent);
	transition: background var(--transition), border-color var(--transition);
}

.gallery-slider__btn:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/* Testimonials
   -------------------------------------------------------------------------- */

.testimonials {
	display: grid;
	gap: var(--space-md);
}

.testimonial {
	margin: 0;
	padding: var(--space-md);
	background: var(--color-bg);
	border-left: 4px solid var(--color-primary);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.testimonial p {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-style: italic;
	color: var(--color-accent);
	margin-bottom: var(--space-sm);
}

.testimonial cite {
	font-size: 0.875rem;
	font-style: normal;
	color: var(--color-text-muted);
}

/* CTA / Consultation form
   -------------------------------------------------------------------------- */

.cta-block {
	display: grid;
	gap: var(--space-lg);
	align-items: center;
}

.cta-block__title {
	font-size: clamp(1.85rem, 4.5vw, 2.65rem);
	color: #fff;
	margin-bottom: var(--space-sm);
	font-family: var(--font-display);
	letter-spacing: 0.015em;
	line-height: 1.15;
}

.cta-block__text {
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.05rem;
	margin: 0;
	line-height: 1.75;
	font-weight: 500;
}

.consultation-form {
	background: rgba(255, 253, 249, 0.96);
	padding: var(--space-md);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(212, 201, 184, 0.6);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.quote-panel {
	background: linear-gradient(145deg, var(--color-bg-alt) 0%, var(--color-surface) 100%);
	padding: var(--space-lg);
	border-radius: var(--radius-lg);
	margin-top: var(--space-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-md);
}

.quote-panel__title {
	font-family: var(--font-heading);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	color: var(--color-accent);
	margin: 0 0 var(--space-md);
}

.page-cta {
	text-align: center;
	margin-top: var(--space-lg);
}

.error-page {
	text-align: center;
	padding: var(--space-2xl) 0;
}

.error-page__code {
	display: block;
	font-family: var(--font-heading);
	font-size: clamp(4rem, 15vw, 7rem);
	font-weight: 600;
	line-height: 1;
	color: var(--color-primary);
	opacity: 0.35;
	margin-bottom: var(--space-sm);
}

.error-page__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}

.form-row {
	margin-bottom: var(--space-sm);
}

.consultation-form input {
	width: 100%;
	min-height: 52px;
	padding: 0 1rem;
	font-family: var(--font-body);
	font-size: 1rem;
	border: 2px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--color-text);
	transition: border-color var(--transition);
}

.consultation-form input:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.15);
}

.consultation-form .btn--primary {
	width: 100%;
}

/* Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.nav-menu > li {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.chyzhwood-card-media--image .chyzhwood-card-media__img,
	.category-card,
	.btn,
	.post-card,
	.project-gallery__item,
	.modal__dialog,
	.modal__backdrop,
	.lightbox__content {
		transition: none;
		animation: none;
	}

	.chyzhwood-cart-link__count.is-pulsing {
		animation: none;
	}

	.site-decor__sway,
	.site-decor__float {
		animation: none;
	}

	.site-decor__scene {
		opacity: 0.1;
	}

	.site-decor__grain {
		opacity: 0.02;
	}
}

.form-note {
	font-size: 0.75rem;
	color: var(--color-text-muted);
	text-align: center;
	margin: var(--space-sm) 0 0;
}

/* Footer
   -------------------------------------------------------------------------- */

.site-footer {
	background: linear-gradient(
		180deg,
		var(--color-brown-deep) 0%,
		#2e1f16 100%
	);
	color: rgba(255, 253, 249, 0.85);
	padding: var(--space-xl) 0 var(--space-md);
	position: relative;
}

.site-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.04;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 200px 200px;
}

.home .site-footer {
	margin-top: 0;
	padding-top: var(--space-lg);
}

.site-footer a {
	color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
	color: rgba(255, 253, 249, 1);
}

.site-logo--footer .site-logo__name {
	color: #fff;
}

.site-logo--footer .site-logo__tagline {
	color: rgba(255, 255, 255, 0.6);
}

.site-footer__grid {
	display: grid;
	gap: var(--space-lg);
	margin-bottom: var(--space-lg);
}

.site-footer__title {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 253, 249, 0.65);
	margin-bottom: var(--space-sm);
}

.site-footer__desc {
	font-size: 0.9rem;
	line-height: 1.6;
	margin: var(--space-sm) 0 0;
}

.footer-menu a,
.footer-contacts a {
	display: block;
	padding: 0.25rem 0;
	font-size: 0.95rem;
}

.social-links {
	display: flex;
	gap: var(--space-sm);
}

.social-links__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	font-size: 0.75rem;
	font-weight: 700;
	transition: background var(--transition), border-color var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.social-links__item:hover {
	background: var(--gradient-warm);
	border-color: transparent;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
}

.site-footer__bottom {
	padding-top: var(--space-md);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	text-align: center;
	font-size: 0.85rem;
}

/* Blog / posts
   -------------------------------------------------------------------------- */

.post-list {
	display: grid;
	gap: var(--space-md);
}

.post-list--grid {
	grid-template-columns: 1fr;
}

.post-card {
	background: rgba(255, 253, 249, 0.94);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(212, 201, 184, 0.5);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition);
}

.post-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.post-card__thumb {
	display: block;
	overflow: hidden;
	position: relative;
}

.post-card__thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(61, 43, 31, 0.18) 100%);
	pointer-events: none;
	opacity: 0;
	transition: opacity var(--transition);
}

.post-card:hover .post-card__thumb::after {
	opacity: 1;
}

.post-card__thumb img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-mask-image: linear-gradient(to bottom, #000 70%, rgba(0, 0, 0, 0.85) 100%);
	mask-image: linear-gradient(to bottom, #000 70%, rgba(0, 0, 0, 0.85) 100%);
}

.post-card:hover .post-card__thumb img {
	transform: scale(1.03);
}

.post-card__body {
	padding: var(--space-md);
}

.post-card__meta {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	margin-bottom: var(--space-xs);
}

.post-card__title {
	font-size: 1.4rem;
	margin-bottom: var(--space-xs);
	font-family: var(--font-display);
	line-height: 1.2;
}

.post-card__title a {
	color: var(--color-accent);
}

.post-card__excerpt {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--color-text-muted);
	margin-bottom: var(--space-sm);
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.post-card__body .btn {
	width: 100%;
}

.page-content__title,
.single-post__title {
	font-size: clamp(2rem, 5vw, 2.75rem);
	margin-bottom: var(--space-md);
}

.single-post__meta {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	margin-bottom: var(--space-sm);
}

.page-content__thumb {
	margin-bottom: var(--space-md);
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	box-shadow: var(--shadow-md);
}

.page-content__thumb img {
	width: 100%;
	height: auto;
	display: block;
	-webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
}

.page-content__thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(184, 115, 51, 0.12) 0%, transparent 55%);
	pointer-events: none;
}

.single-post__thumb {
	margin-bottom: var(--space-md);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.entry-content {
	line-height: 1.8;
	overflow-wrap: break-word;
	word-wrap: break-word;
	font-size: 1.02em;
}

.entry-content img,
.entry-content table {
	max-width: 100%;
	height: auto;
}

.entry-content h2,
.entry-content h3 {
	margin-top: var(--space-lg);
	margin-bottom: var(--space-sm);
}

.entry-content--spaced {
	margin: var(--space-lg) auto;
	max-width: var(--container-narrow);
}

/* Modal
   -------------------------------------------------------------------------- */

.modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-md);
}

.modal[hidden] {
	display: none;
}

.modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(44, 24, 16, 0.65);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal.is-active .modal__backdrop {
	opacity: 1;
}

.modal__dialog {
	position: relative;
	width: 100%;
	max-width: 440px;
	background: var(--color-surface);
	padding: var(--space-lg);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	border-top: 3px solid var(--color-primary);
	transform: translateY(20px) scale(0.97);
	opacity: 0;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.modal.is-active .modal__dialog {
	transform: none;
	opacity: 1;
}

.modal__close {
	position: absolute;
	top: var(--space-sm);
	right: var(--space-sm);
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--color-text-muted);
	line-height: 1;
}

.modal__close:hover {
	color: var(--color-accent);
}

.modal__dialog h2 {
	margin-bottom: var(--space-sm);
}

.modal__dialog p {
	color: var(--color-text-muted);
	margin-bottom: var(--space-md);
}

/* Project gallery & lightbox */
.project-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-sm);
	margin-bottom: var(--space-md);
}

.project-gallery__item {
	position: relative;
	padding: 0;
	border: none;
	background: var(--color-bg-alt);
	cursor: zoom-in;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition);
}

.project-gallery__item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.project-gallery__item .project-gallery__img {
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-mask-image: linear-gradient(to bottom, #000 65%, rgba(0, 0, 0, 0.88) 100%);
	mask-image: linear-gradient(to bottom, #000 65%, rgba(0, 0, 0, 0.88) 100%);
}

.project-gallery__item:hover .project-gallery__img {
	transform: scale(1.04);
}

.project-gallery__item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(61, 43, 31, 0.35) 100%);
	opacity: 0;
	transition: opacity var(--transition);
	pointer-events: none;
}

.project-gallery__item:hover::after {
	opacity: 1;
}

.project-gallery__zoom {
	position: absolute;
	bottom: var(--space-xs);
	right: var(--space-xs);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 253, 249, 0.95);
	border-radius: 50%;
	color: var(--color-accent);
	box-shadow: var(--shadow-sm);
	opacity: 0;
	transform: scale(0.85);
	transition: opacity var(--transition), transform var(--transition);
}

.project-gallery__item:hover .project-gallery__zoom {
	opacity: 1;
	transform: scale(1);
}

.furniture-subcat {
	margin-bottom: var(--space-md);
	padding: var(--space-md);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	border-left: 4px solid var(--color-primary);
	box-shadow: var(--shadow-sm);
	scroll-margin-top: calc(var(--header-height) + var(--space-sm));
}

.furniture-subcat__title {
	font-size: 1.35rem;
	margin-bottom: var(--space-xs);
}

.furniture-subcat__desc {
	color: var(--color-text-muted);
	margin: 0;
}

/* Furniture catalog: categories -> varieties
   -------------------------------------------------------------------------- */

.furniture-intro {
	margin: 0 0 var(--space-md);
	color: var(--color-text-muted);
	font-size: 1.02rem;
}

.furniture-categories {
	margin-bottom: var(--space-lg);
}

.furniture-breadcrumb {
	margin-bottom: var(--space-sm);
}

.furniture-breadcrumb__back {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--color-primary);
	text-decoration: none;
}

.furniture-breadcrumb__back:hover {
	color: var(--color-primary-dark);
}

.furniture-category-head {
	margin-bottom: var(--space-md);
}

.furniture-category-head__title {
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	margin-bottom: var(--space-xs);
}

.furniture-category-head__desc {
	color: var(--color-text-muted);
	margin: 0 0 var(--space-xs);
}

.furniture-category-head__hint {
	margin: 0;
	font-size: 0.9rem;
	color: var(--color-text-muted);
}

.furniture-varieties {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: clamp(0.75rem, 2vw, var(--space-md));
	margin-bottom: var(--space-lg);
}

.furniture-variety {
	display: flex;
	flex-direction: column;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition);
}

.furniture-variety:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.furniture-variety__media {
	min-height: 150px;
	display: flex;
	align-items: flex-end;
	padding: var(--space-sm);
	background: linear-gradient(145deg, #c4a882 0%, #8b6914 100%);
}

.furniture-variety__media-label {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	color: rgba(255, 253, 249, 0.97);
	text-shadow: 0 1px 6px rgba(44, 24, 16, 0.4);
}

.furniture-variety__media--image {
	padding: 0;
	min-height: 0;
	background: none;
}

.furniture-variety__img {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
}

/* Furniture catalog — uniform photo frames, no tinted backgrounds */
.theme-mood--furniture {
	--furniture-media-ratio: 3 / 2;
}

.theme-mood--furniture .furniture-categories.category-cards {
	grid-auto-rows: auto;
	align-items: stretch;
}

.theme-mood--furniture .furniture-categories .category-card__media {
	position: relative;
	aspect-ratio: var(--furniture-media-ratio);
	height: auto;
	min-height: 0;
	background: transparent;
}

.theme-mood--furniture .furniture-categories .chyzhwood-card-media--image,
.theme-mood--furniture .furniture-categories .placeholder-image--card {
	position: absolute;
	inset: 0;
	min-height: 0;
	height: 100%;
	width: 100%;
	padding: 0;
	background: var(--color-bg-alt);
}

.theme-mood--furniture .furniture-categories .chyzhwood-card-media--image::before,
.theme-mood--furniture .furniture-categories .chyzhwood-card-media--image::after {
	display: none;
}

.theme-mood--furniture .furniture-categories .chyzhwood-card-media__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center;
	-webkit-mask-image: none;
	mask-image: none;
	transform: none;
}

.theme-mood--furniture .furniture-categories .category-card:hover .chyzhwood-card-media__img {
	transform: scale(1.03);
}

.theme-mood--furniture .furniture-categories .category-card--furniture .placeholder-image--card {
	background: var(--color-bg-alt);
}

.theme-mood--furniture .furniture-categories .chyzhwood-card-media--image .hero-category__headline {
	display: none;
}

.theme-mood--furniture .furniture-variety__media {
	min-height: 0;
	padding: 0;
	background: transparent;
}

.theme-mood--furniture .furniture-variety__media--image {
	position: relative;
	aspect-ratio: var(--furniture-media-ratio);
	height: auto;
	overflow: hidden;
	background: transparent;
}

.theme-mood--furniture .furniture-variety__media.placeholder-image {
	aspect-ratio: var(--furniture-media-ratio);
	align-items: center;
	justify-content: center;
	background: var(--color-bg-alt);
}

.theme-mood--furniture .furniture-variety__img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center;
}

.theme-mood--furniture .project-gallery__item {
	aspect-ratio: var(--furniture-media-ratio);
	height: auto;
	background: transparent;
}

.theme-mood--furniture .project-gallery__item .project-gallery__img {
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
	-webkit-mask-image: none;
	mask-image: none;
}

.theme-mood--furniture .project-gallery__item::after {
	display: none;
}

.theme-mood--furniture .project-gallery__item .placeholder-image--gallery {
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: auto;
	border-radius: 0;
	background: var(--color-bg-alt);
}

.furniture-variety__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: var(--space-md);
}

.furniture-variety__title {
	font-size: 1.2rem;
	margin-bottom: var(--space-xs);
}

.furniture-variety__desc {
	color: var(--color-text-muted);
	font-size: 0.92rem;
	margin-bottom: var(--space-sm);
	flex: 1;
}

.furniture-variety__field {
	margin-bottom: var(--space-sm);
}

.furniture-variety__field label {
	display: block;
	margin-bottom: 0.3rem;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--color-accent);
}

.furniture-variety__field select {
	width: 100%;
	min-height: 44px;
	padding: 0 0.75rem;
	border: 2px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.95rem;
	background: #fff;
}

.furniture-variety__price {
	display: flex;
	align-items: baseline;
	gap: 0.35rem;
	margin-bottom: var(--space-sm);
}

.furniture-variety__price-prefix {
	font-size: 0.85rem;
	color: var(--color-text-muted);
}

.furniture-variety__price-value {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-primary-dark);
	line-height: 1.2;
}

.furniture-variety__cta {
	margin-top: auto;
}

/* Sticky consultation CTA — furniture catalog on mobile */
.furniture-scroll-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 85;
	padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
	background: linear-gradient(180deg, rgba(250, 247, 242, 0) 0%, rgba(250, 247, 242, 0.92) 35%, rgba(250, 247, 242, 0.98) 100%);
	pointer-events: none;
}

.furniture-scroll-cta[hidden] {
	display: none !important;
}

.furniture-scroll-cta__btn {
	pointer-events: auto;
	display: block;
	width: min(100%, 420px);
	margin: 0 auto;
	box-shadow: 0 10px 28px rgba(62, 44, 28, 0.18);
}

.theme-mood--furniture.has-furniture-scroll-cta {
	padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
	.furniture-scroll-cta {
		display: none !important;
	}

	.theme-mood--furniture.has-furniture-scroll-cta {
		padding-bottom: 0;
	}
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-md);
	background: rgba(44, 24, 16, 0.88);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.lightbox[hidden] {
	display: none !important;
}

.lightbox:not([hidden]) {
	display: flex;
	opacity: 1;
}

.lightbox__close {
	position: absolute;
	top: var(--space-md);
	right: var(--space-md);
	width: 48px;
	height: 48px;
	background: rgba(255, 253, 249, 0.15);
	border: 1px solid rgba(255, 253, 249, 0.25);
	border-radius: 50%;
	color: #fff;
	font-size: 1.75rem;
	cursor: pointer;
	z-index: 1;
	transition: background var(--transition), transform 0.15s ease;
}

.lightbox__close:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	transform: scale(1.05);
}

.lightbox__content {
	max-width: 900px;
	width: 100%;
	animation: lightbox-in 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightbox-in {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* Pagination
   -------------------------------------------------------------------------- */

.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	gap: var(--space-xs);
	margin-top: var(--space-lg);
}

.pagination .page-numbers,
.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 0.75rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-accent);
}

.pagination .page-numbers.current,
.nav-links .page-numbers.current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/* Responsive — tablet+
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
	.testimonials {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-slider__slide {
		flex: 0 0 60%;
	}

	.post-list--grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.project-gallery {
		grid-template-columns: repeat(3, 1fr);
	}

	.about-grid {
		grid-template-columns: 1fr 1fr;
	}

	.cta-block {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__grid {
		grid-template-columns: 2fr 1fr 1fr 1fr;
	}

	.site-header__nav-row {
		display: block;
		padding: 0.35rem 0 0.65rem;
	}

	.nav-menu a {
		font-size: 0.875rem;
		padding: 0.35rem 0.15rem;
	}
}

@media (min-width: 1024px) {
	.gallery-slider__slide {
		flex: 0 0 40%;
	}

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

	.hero-categories {
		gap: clamp(0.5rem, 1vw, var(--space-sm));
	}

	.hero--home .hero-category__block {
		height: clamp(280px, 22vw, 360px);
	}
}

/* Responsive — mobile fixes
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
	:root {
		--header-logo-size: 80px;
		--header-logo-box: 96px;
		--header-bar-height: 100px;
		--header-title-size: clamp(1.15rem, 5.2vw, 1.65rem);
		--header-brand-text-size: clamp(0.95rem, 4vw, 1.2rem);
		--space-xl: 2.5rem;
		--space-2xl: 3.5rem;
	}

	.site-decor__scene {
		width: min(110vw, 520px);
		right: -18%;
		opacity: 0.14;
	}

	.section {
		padding: var(--space-lg) 0;
	}

	/* Single row: logo | title | phone + cart */
	.site-header__bar {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		gap: 0.45rem;
		height: auto;
		min-height: var(--header-bar-height);
		max-height: none;
		padding: 0.5rem 0;
		overflow: visible;
	}

	.site-header__brand {
		flex: 0 0 auto;
		width: auto;
		max-width: min(31vw, 7.5rem);
		padding: 0.35rem 0.4rem;
	}

	.site-header__brand:has(.site-logo) {
		max-width: min(34vw, 8rem);
	}

	.site-header__brand .custom-logo-link {
		width: 100%;
		max-width: 100%;
		min-height: var(--header-logo-size);
	}

	.site-header__brand-stack .custom-logo-link img,
	.site-header__brand .custom-logo-link img {
		max-height: var(--header-logo-size);
	}

	.site-header__title {
		flex: 1 1 auto;
		min-width: 0;
		width: auto;
		padding: 0 0.1rem;
		font-size: var(--header-title-size);
		text-align: center;
		overflow: visible;
	}

	.site-header__title-link::after {
		width: clamp(1.75rem, 12vw, 3rem);
		margin-top: 0.28rem;
	}

	.site-header__actions {
		flex: 0 0 auto;
		justify-content: flex-end;
		gap: 0.35rem;
		align-items: center;
	}

	.site-header__info-text {
		font-size: clamp(0.78rem, 3.1vw, 0.95rem);
		line-height: 1.4;
		padding: 0 0.35rem;
		letter-spacing: 0.06em;
	}

	.site-header__nav-row {
		display: none;
	}

	.site-header__phone-text {
		display: none;
	}

	.site-header__phone {
		width: 42px;
		height: 42px;
		padding: 0;
		justify-content: center;
		border-radius: 50%;
		flex-shrink: 0;
	}

	.site-header .chyzhwood-cart-link {
		width: 42px;
		height: 42px;
		flex-shrink: 0;
	}

	.btn--header.btn--sm {
		min-height: 40px;
		padding: 0.4rem 0.65rem;
		font-size: 0.8125rem;
	}

	.btn__text-full {
		display: none;
	}

	.btn__text-short {
		display: inline;
	}

	.hero--home {
		padding: var(--space-md) 0 0.25rem;
		margin-top: 0;
	}

	.hero--home .hero-categories,
	.hero--home .category-cards {
		gap: 0;
		grid-auto-rows: auto;
		max-width: min(340px, 88vw);
		margin-inline: auto;
	}

	.hero--home .hero-category {
		min-height: 0;
		width: 100%;
	}

	.category-cards {
		grid-template-columns: 1fr;
		margin: 0 auto;
	}

	.hero--home .hero-category__block {
		height: auto;
		aspect-ratio: 5 / 3;
	}

	.hero--home .chyzhwood-card-media--image {
		min-height: 0;
	}

	.hero-category__block .placeholder-image--card {
		min-height: 0;
		padding: 0.4rem 0.55rem;
		padding-bottom: clamp(2rem, 6vw, 2.5rem);
	}

	.chyzhwood-card-media--image .hero-category__headline {
		inset: auto 0 clamp(2rem, 6vw, 2.5rem);
		font-size: clamp(0.85rem, 3.6vw, 0.98rem);
	}

	.hero-category__overlay {
		padding: 0.45rem 0.55rem;
	}

	.hero-category__cta-text {
		font-size: clamp(0.78rem, 2.6vw, 0.88rem);
	}

	.hero-category__cta-icon {
		width: 28px;
		height: 28px;
	}

	.hero-category__headline--long {
		font-size: var(--card-headline-size, clamp(0.85rem, 3.8vw, 1.05rem));
		line-height: 1.34;
	}

	.section__subtitle {
		font-size: 1rem;
		padding: 0 0.25rem;
	}

	.home .section--cta {
		padding-top: var(--space-md);
	}

	.home .section--cta .container {
		padding-bottom: var(--space-lg);
	}

	.cta-block {
		gap: var(--space-md);
	}

	.consultation-form {
		padding: var(--space-sm);
	}

	.project-gallery {
		grid-template-columns: 1fr;
	}

	.placeholder-image {
		min-height: 200px;
		font-size: 0.9375rem;
	}

	.placeholder-image--gallery {
		min-height: 220px;
	}

	.modal {
		padding: var(--space-sm);
		align-items: flex-end;
	}

	.modal__dialog {
		max-height: 90vh;
		overflow-y: auto;
		padding: var(--space-md);
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.gallery-slider__slide {
		flex: 0 0 88%;
	}

	.post-card__title {
		font-size: 1.2rem;
	}

	.single-post__title,
	.page-content__title {
		font-size: clamp(1.75rem, 6vw, 2.25rem);
	}
}

@media (max-width: 380px) {
	.container {
		padding: 0 0.65rem;
	}

	:root {
		--header-logo-size: 72px;
		--header-logo-box: 88px;
		--header-title-size: clamp(1.02rem, 5.4vw, 1.35rem);
		--header-brand-text-size: clamp(0.88rem, 4.2vw, 1.05rem);
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.site-header__phone {
		width: auto;
		height: auto;
		padding: 0.45rem 0.65rem;
		border-radius: 999px;
	}

	.site-header__phone-text {
		display: inline;
		font-size: 0.78rem;
		max-width: 6.5rem;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.category-cards,
	.hero-categories {
		gap: clamp(0.4rem, 1.2vw, var(--space-sm));
	}

	.hero-category__headline:not(.hero-category__headline--long):not(.hero-category__headline--author) {
		font-size: clamp(1rem, 2.5vw, 1.5rem);
	}

	.hero-category__block .placeholder-image--card {
		min-height: 0;
	}
}

/* Language picker (first visit) */
.lang-picker {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-md);
}

.lang-picker__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 14, 10, 0.72);
	backdrop-filter: blur(6px);
}

.lang-picker__panel {
	position: relative;
	width: min(100%, 420px);
	padding: clamp(1.5rem, 4vw, 2.25rem);
	background: var(--color-surface, #faf7f2);
	border-radius: 20px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
	text-align: center;
}

.lang-picker__brand {
	margin: 0 0 0.75rem;
	font-family: var(--font-heading);
	font-size: 1.05rem;
	color: var(--color-muted, #6b5e52);
	letter-spacing: 0.02em;
}

.lang-picker__title {
	margin: 0 0 0.65rem;
	font-family: var(--font-heading);
	font-size: clamp(1.35rem, 4vw, 1.65rem);
	line-height: 1.25;
	color: var(--color-heading, #2a2118);
}

.lang-picker__text {
	margin: 0 0 1.35rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--color-muted, #6b5e52);
}

.lang-picker__actions {
	display: grid;
	gap: 0.75rem;
}

.lang-picker__btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	padding: 0.95rem 1rem;
}

.lang-picker__btn-label {
	font-size: 1.05rem;
	font-weight: 600;
}

.lang-picker__btn-note {
	font-size: 0.8rem;
	opacity: 0.75;
}

/* Header language switcher */
.lang-switcher-slot--mobile {
	display: none;
}

.lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 0.15rem;
	padding: 0.2rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.lang-switcher__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	padding: 0.3rem 0.55rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	color: inherit;
	opacity: 0.72;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.lang-switcher__btn:hover,
.lang-switcher__btn.is-active {
	opacity: 1;
	background: rgba(255, 255, 255, 0.18);
}

.site-header__top .lang-switcher {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.18);
}

.site-header__info .lang-switcher {
	background: rgba(42, 33, 24, 0.06);
	border-color: rgba(42, 33, 24, 0.12);
	color: var(--color-brown-deep);
}

.site-header__info .lang-switcher__btn.is-active,
.site-header__info .lang-switcher__btn:hover {
	background: rgba(42, 33, 24, 0.1);
}

@media (max-width: 767px) {
	.lang-switcher-slot--desktop {
		display: none;
	}

	.lang-switcher-slot--mobile {
		display: block;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		z-index: 1;
	}

	.site-header__info-wrap {
		padding-inline: clamp(3rem, 13vw, 3.75rem);
	}

	.site-header__info .lang-switcher__btn {
		min-width: 1.65rem;
		padding: 0.26rem 0.42rem;
		font-size: 0.66rem;
	}
}

@media (min-width: 768px) {
	.lang-switcher-slot--mobile {
		display: none;
	}
}

@media (max-width: 479px) {
	.lang-switcher-slot--desktop .lang-switcher__btn {
		min-width: 1.75rem;
		padding: 0.28rem 0.45rem;
		font-size: 0.68rem;
	}
}
