/* ==========================================================================
   HomeDecorBest — industrial metal-sign theme
   ========================================================================== */

:root {
	--ink: #16181b;
	--steel: #2a2e33;
	--steel-2: #3b4148;
	--steel-3: #5a626b;
	--rust: #c4552b;
	--rust-dark: #a4431f;
	--copper: #b87333;
	--brass: #d9a441;
	--paper: #f4f1ec;
	--paper-2: #e9e4dc;
	--white: #fff;
	--text: #1d1f22;
	--muted: #676d74;
	--line: #d9d3c9;

	--font-head: "Oswald", "Arial Narrow", Impact, sans-serif;
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--container: 1320px;
	--gutter: 24px;
	--radius: 4px;
	--shadow: 0 10px 30px -12px rgba(22, 24, 27, .35);
	--ease: cubic-bezier(.2, .7, .2, 1);

	/* brushed steel texture used on dark panels */
	--brushed: repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 3px), linear-gradient(180deg, #2f343a, #22262a);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--text);
	font: 400 15px/1.6 var(--font-body);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--rust); }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: .01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

.icon { flex: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 72px 0; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
	clip: auto; width: auto; height: auto; z-index: 1000; top: 8px; left: 8px;
	padding: 10px 16px; background: var(--white); color: var(--ink);
}
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

/* ---------- Buttons ---------- */
.btn, .button, button.button, input[type="submit"] {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 48px; padding: 0 28px;
	border: 2px solid transparent; border-radius: var(--radius);
	font: 600 14px/1 var(--font-head); letter-spacing: .12em; text-transform: uppercase;
	transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--rust { background: var(--rust); color: var(--white); }
.btn--rust:hover { background: var(--rust-dark); color: var(--white); }
.btn--steel { background: var(--steel); color: var(--white); }
.btn--steel:hover { background: var(--ink); color: var(--brass); }
.btn--ghost { border-color: rgba(255,255,255,.7); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--ink); }

.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font: 500 13px/1 var(--font-head); letter-spacing: .22em; text-transform: uppercase;
	color: var(--brass); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow--dark { color: var(--rust); }

/* rivet dot used as decoration */
.rivet {
	display: inline-block; width: 8px; height: 8px; border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #f6d488, var(--copper) 60%, #6b3e17);
	box-shadow: 0 1px 1px rgba(0,0,0,.4);
}

/* steel "plate" panel with four rivets in the corners */
.plate {
	position: relative;
	background: var(--white);
	border: 1px solid var(--line);
}
.plate::before, .plate::after {
	content: ""; position: absolute; inset: 14px; pointer-events: none;
	background:
		radial-gradient(circle, var(--steel-3) 3px, transparent 3.5px) left top / 8px 8px no-repeat,
		radial-gradient(circle, var(--steel-3) 3px, transparent 3.5px) right top / 8px 8px no-repeat;
}
.plate::after { background:
		radial-gradient(circle, var(--steel-3) 3px, transparent 3.5px) left bottom / 8px 8px no-repeat,
		radial-gradient(circle, var(--steel-3) 3px, transparent 3.5px) right bottom / 8px 8px no-repeat; }

/* ---------- Announcement ---------- */
.announcement {
	background: var(--rust); color: var(--white);
	font: 500 12px/1 var(--font-head); letter-spacing: .16em; text-transform: uppercase;
	text-align: center; padding: 11px 0;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: var(--brushed); color: var(--white);
	transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 8px 24px -10px rgba(0,0,0,.5); }

.header-main {
	display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
	min-height: 84px;
	transition: min-height .25s var(--ease);
}
.site-header.is-stuck .header-main { min-height: 68px; }

.header-burger { display: none; background: none; border: 0; color: inherit; padding: 8px; margin-left: -8px; }
.header-burger .icon { width: 24px; height: 24px; }

.header-search {
	display: flex; align-items: center; gap: 10px;
	max-width: 340px; height: 44px; padding: 0 14px;
	background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
	transition: border-color .2s var(--ease), background .2s var(--ease);
}
.header-search:focus-within { border-color: var(--brass); background: rgba(255,255,255,.1); }
.header-search .icon { color: rgba(255,255,255,.6); }
.header-search input { flex: 1; min-width: 0; background: none; border: 0; outline: 0; color: var(--white); font-size: 14px; }
.header-search input::placeholder { color: rgba(255,255,255,.5); }

.header-logo { justify-self: center; }
.header-logo img { max-height: 54px; width: auto; }

.wordmark { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-head); line-height: 1; white-space: nowrap; }
.wordmark:hover { color: var(--white); }
.wordmark__plate {
	position: relative; padding: 8px 12px 8px 12px;
	background: linear-gradient(135deg, var(--copper), var(--rust)); color: var(--white);
	font-size: 15px; font-weight: 700; letter-spacing: .2em;
	border-radius: 2px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.15);
}
.wordmark__text { font-size: 26px; font-weight: 600; letter-spacing: .06em; }
.wordmark__text b { color: var(--brass); font-weight: 700; }

.header-icons { justify-self: end; display: flex; align-items: center; gap: 6px; }
.header-icon { position: relative; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--white); }
.header-icon:hover { color: var(--brass); background: rgba(255,255,255,.06); }
.header-icon .icon { width: 22px; height: 22px; }
.cart-count {
	position: absolute; top: 2px; right: 0;
	min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
	background: var(--rust); color: var(--white);
	font: 600 11px/18px var(--font-body); text-align: center;
}
.cart-count.is-empty { display: none; }

/* nav */
.header-nav { border-top: 1px solid rgba(255,255,255,.08); }
.top-links { list-style: none; display: flex; justify-content: center; gap: 36px; padding: 12px 0; }
.top-links a {
	font: 500 13px/1 var(--font-head); letter-spacing: .16em; text-transform: uppercase;
	color: rgba(255,255,255,.82);
}
.top-links a:hover, .top-links .current-menu-item > a { color: var(--brass); }

.cat-bar { background: var(--paper); color: var(--text); border-bottom: 1px solid var(--line); }
.cat-menu { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 4px 30px; }
.cat-menu > li { position: relative; }
.cat-menu > li > a {
	display: flex; align-items: center; gap: 4px; padding: 13px 0;
	font-size: 14px; font-weight: 500; color: var(--text);
	border-bottom: 2px solid transparent;
}
.cat-menu > li > a:hover, .cat-menu > .current-menu-item > a { color: var(--rust); border-bottom-color: var(--rust); }
.cat-menu .menu-item-has-children > a::after {
	content: ""; width: 6px; height: 6px; margin: -3px 0 0 4px;
	border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg);
}
.cat-menu .sub-menu {
	list-style: none; position: absolute; top: 100%; left: -18px; z-index: 60;
	min-width: 230px; padding: 10px 0;
	background: var(--white); border-top: 3px solid var(--rust); box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.cat-menu li:hover > .sub-menu, .cat-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.cat-menu .sub-menu a { display: block; padding: 9px 20px; font-size: 14px; }
.cat-menu .sub-menu a:hover { background: var(--paper); }

/* ---------- Drawer (mobile) ---------- */
.drawer { position: fixed; inset: 0; z-index: 100; }
.drawer[hidden] { display: block; visibility: hidden; pointer-events: none; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(22,24,27,.6); opacity: 0; transition: opacity .3s var(--ease); }
.drawer__panel {
	position: absolute; top: 0; bottom: 0; left: 0; z-index: 1;
	width: min(360px, 88vw); overflow-y: auto;
	background: var(--brushed); color: var(--white);
	transform: translateX(-100%); transition: transform .3s var(--ease);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.drawer__head .wordmark__text { font-size: 20px; }
.drawer__close { background: none; border: 0; color: inherit; padding: 6px; }
.drawer-menu, .drawer-links { list-style: none; padding: 8px 0; }
.drawer-menu a { display: block; padding: 13px 20px; font: 500 16px/1.2 var(--font-head); letter-spacing: .06em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.06); }
.drawer-menu .sub-menu { list-style: none; background: rgba(0,0,0,.18); }
.drawer-menu .sub-menu a { padding-left: 36px; font: 400 14px/1.2 var(--font-body); text-transform: none; letter-spacing: 0; color: rgba(255,255,255,.75); }
.drawer-links { border-top: 1px solid rgba(255,255,255,.1); margin-top: 8px; }
.drawer-links a { display: block; padding: 10px 20px; font-size: 14px; color: rgba(255,255,255,.75); }
.drawer a:hover { color: var(--brass); }

/* ---------- Section head ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section-head__copy { max-width: 680px; }
.section-title {
	position: relative; margin: 0; padding-bottom: 14px;
	font-size: clamp(28px, 3.4vw, 42px); text-transform: uppercase; letter-spacing: .03em; color: var(--ink);
}
.section-title::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 64px; height: 4px; background: linear-gradient(90deg, var(--rust) 0 70%, var(--brass) 70%);
}
.section-intro { margin: 16px 0 0; color: var(--muted); font-size: 16px; }
.view-all {
	flex: none; display: inline-flex; align-items: center; gap: 10px;
	font: 600 13px/1 var(--font-head); letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
}
.view-all__icon {
	display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
	border: 1.5px solid currentColor; transition: background .2s var(--ease), color .2s var(--ease);
}
.view-all__icon .icon { width: 16px; height: 16px; }
.view-all:hover .view-all__icon { background: var(--rust); border-color: var(--rust); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
	position: relative; color: var(--white);
	background: var(--ink) var(--hero-img) center / cover no-repeat;
	min-height: clamp(460px, 62vh, 640px);
	display: flex; align-items: center;
	overflow: hidden;
}
.hero::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(22,24,27,.92) 0%, rgba(22,24,27,.7) 42%, rgba(22,24,27,.1) 75%);
}
.hero::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 10px;
	background: repeating-linear-gradient(-45deg, var(--brass) 0 14px, var(--ink) 14px 28px);
	opacity: .9;
}
.hero__inner { position: relative; z-index: 1; padding-top: 64px; padding-bottom: 72px; }
.hero__copy { max-width: 620px; }
.hero__title {
	font-size: clamp(40px, 6vw, 76px); font-weight: 700; line-height: 1;
	text-transform: uppercase; letter-spacing: .01em; margin-bottom: 22px;
}
.hero__text { font-size: 18px; color: rgba(255,255,255,.82); max-width: 520px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Perks ---------- */
.perks { background: var(--steel); color: var(--white); }
.perks__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.perk { display: flex; align-items: center; gap: 14px; padding: 24px 20px; }
.perk + .perk { border-left: 1px solid rgba(255,255,255,.1); }
.perk__icon { display: grid; place-items: center; width: 46px; height: 46px; flex: none; border-radius: 50%; background: rgba(217,164,65,.14); color: var(--brass); }
.perk__icon .icon { width: 22px; height: 22px; }
.perk__copy { display: flex; flex-direction: column; line-height: 1.3; }
.perk__copy strong { font: 600 15px/1.3 var(--font-head); letter-spacing: .06em; text-transform: uppercase; }
.perk__copy small { color: rgba(255,255,255,.65); font-size: 13px; }

/* ---------- Promo ---------- */
.promo__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 0; align-items: stretch; }
.promo__panel { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 56px; }
.promo__title { font-size: clamp(30px, 3.6vw, 46px); text-transform: uppercase; color: var(--ink); }
.promo__text { color: var(--muted); font-size: 16px; margin-bottom: 28px; }
.promo__media { background: var(--steel); min-height: 380px; }
.promo__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Collections ---------- */
.collections { background: var(--paper-2); }
.collections__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.tile { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--steel); border-radius: var(--radius); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(22,24,27,.85)); }
.tile:hover img { transform: scale(1.06); }
.tile__label { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; color: var(--white); }
.tile__name { font: 600 22px/1.1 var(--font-head); text-transform: uppercase; letter-spacing: .04em; }
.tile__count {
	flex: none; padding: 5px 10px; border: 1px solid rgba(255,255,255,.4); border-radius: 2px;
	font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
}
.tile:hover .tile__count { background: var(--rust); border-color: var(--rust); }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); color: var(--white); overflow: hidden; padding: 22px 0; border-top: 4px solid var(--rust); border-bottom: 4px solid var(--rust); }
.marquee__track { display: flex; width: max-content; animation: hdb-marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__group span {
	padding: 0 32px;
	font: 700 clamp(28px, 4vw, 52px)/1 var(--font-head); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap;
}
.marquee__group span:nth-of-type(even) { color: transparent; -webkit-text-stroke: 1.5px var(--brass); }
.marquee .rivet { width: 14px; height: 14px; }
@keyframes hdb-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Workshop ---------- */
.workshop { background: var(--brushed); color: var(--white); }
.workshop__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.workshop__media { position: relative; }
.workshop__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); }
.workshop__media::before {
	content: ""; position: absolute; inset: -14px 14px 14px -14px; z-index: -1;
	border: 2px solid var(--copper); border-radius: var(--radius);
}
.workshop__media { z-index: 0; }
.workshop__title { font-size: clamp(30px, 3.6vw, 46px); text-transform: uppercase; }
.workshop__text { color: rgba(255,255,255,.75); font-size: 16px; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 30px 0 34px; }
.stats div { padding: 16px 0 0; border-top: 2px solid rgba(255,255,255,.14); }
.stats dt { font: 700 34px/1 var(--font-head); color: var(--brass); }
.stats dd { margin: 8px 0 0; font-size: 13px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Reviews ---------- */
.slider { position: relative; }
.slider__track {
	display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px;
	overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
	scrollbar-width: none; padding: 4px 2px 8px;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__btn {
	position: absolute; top: 50%; z-index: 2; transform: translateY(-50%);
	display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
	background: var(--white); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow);
	transition: background .2s var(--ease), color .2s var(--ease), opacity .2s;
}
.slider__btn:hover { background: var(--rust); border-color: var(--rust); color: var(--white); }
.slider__btn:disabled { opacity: 0; pointer-events: none; }
.slider__btn--prev { left: -22px; }
.slider__btn--next { right: -22px; }

.review {
	scroll-snap-align: start; margin: 0; padding: 30px 28px;
	display: flex; flex-direction: column; gap: 14px;
	background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--rust); border-radius: var(--radius);
}
.review__quote { color: var(--paper-2); }
.review__quote .icon { width: 34px; height: 34px; fill: var(--paper-2); stroke: none; }
.review__stars { color: var(--brass); letter-spacing: 3px; font-size: 16px; }
.review blockquote { margin: 0; flex: 1; font-size: 16px; line-height: 1.65; color: var(--text); }
.review figcaption { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid var(--line); }
.review figcaption strong { font: 600 15px/1.3 var(--font-head); letter-spacing: .04em; text-transform: uppercase; }
.review figcaption span { font-size: 13px; color: var(--muted); }

/* ---------- Blog ---------- */
.posts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.post-card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--steel); border-radius: var(--radius); margin-bottom: 16px; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__date { margin: 0 0 6px; font: 500 12px/1 var(--font-head); letter-spacing: .16em; text-transform: uppercase; color: var(--rust); }
.post-card__title { font-size: 22px; margin-bottom: 8px; }
.post-card__excerpt { color: var(--muted); margin: 0; }

.blog-strip { border-top: 1px solid var(--line); }

/* ---------- Generic pages ---------- */
.page-hero { background: var(--brushed); color: var(--white); padding: 52px 0 46px; border-bottom: 4px solid var(--rust); }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-title { margin: 0; font-size: clamp(30px, 4vw, 48px); text-transform: uppercase; letter-spacing: .03em; }
.entry-content { max-width: 780px; margin: 0 auto; font-size: 16px; }
.entry-content--wide { max-width: none; }
.entry-content h2 { font-size: 30px; margin-top: 1.4em; }
.entry-content h3 { font-size: 22px; margin-top: 1.2em; }
.entry-content a { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; margin-bottom: 1em; }
.entry-content blockquote { margin: 1.5em 0; padding: 4px 0 4px 20px; border-left: 4px solid var(--rust); font-size: 18px; }
.single-post__media { margin: 0 0 32px; }
.single-post__media img { width: 100%; border-radius: var(--radius); }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: 20px; max-width: 780px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--line); }
.post-navigation a { display: flex; flex-direction: column; font: 600 18px/1.3 var(--font-head); }
.post-navigation span { font: 500 12px/1.6 var(--font-body); color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.post-navigation .nav-next { text-align: right; margin-left: auto; }

.pagination, .woocommerce-pagination { margin-top: 48px; }
.nav-links, .woocommerce-pagination ul { display: flex; justify-content: center; gap: 8px; list-style: none; }
.page-numbers {
	display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 10px;
	border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); font-weight: 600;
}
.page-numbers.current, .page-numbers:hover { background: var(--steel); border-color: var(--steel); color: var(--white); }

.search-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 24px; }
.search-form input { flex: 1; min-width: 0; height: 48px; padding: 0 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }

.empty-state, .not-found { text-align: center; }
.not-found { padding: 96px var(--gutter); }
.not-found__code {
	margin: 0; font: 700 clamp(96px, 16vw, 180px)/1 var(--font-head);
	color: transparent; -webkit-text-stroke: 2px var(--rust);
}
.not-found .page-title { color: var(--ink); margin-bottom: 14px; }
.not-found p { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); font-size: 14px; }
.site-footer::before {
	content: ""; display: block; height: 6px;
	background: linear-gradient(90deg, var(--rust), var(--copper), var(--brass));
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; padding-top: 64px; padding-bottom: 48px; }
.footer-brand .wordmark { margin-bottom: 26px; }
.footer-news-title { font-size: 20px; color: var(--white); text-transform: uppercase; letter-spacing: .06em; }
.footer-news-text { margin-bottom: 18px; }
.newsletter { position: relative; display: flex; max-width: 380px; border-bottom: 2px solid rgba(255,255,255,.25); }
.newsletter:focus-within { border-color: var(--brass); }
.newsletter input { flex: 1; min-width: 0; height: 48px; background: none; border: 0; outline: 0; color: var(--white); }
.newsletter input::placeholder { color: rgba(255,255,255,.45); }
.newsletter button { background: none; border: 0; color: var(--brass); padding: 0 4px; }
.newsletter__ok { display: none; position: absolute; top: 100%; left: 0; padding-top: 8px; color: var(--brass); }
.newsletter.is-done .newsletter__ok { display: block; }
.footer-title { font-size: 15px; color: var(--white); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 11px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--brass); }
.footer-contact ul { list-style: none; }
.footer-contact li + li { margin-top: 12px; }
.footer-contact strong { color: var(--white); font-weight: 600; }

.footer-bottom {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px;
	padding-top: 22px; padding-bottom: 26px; border-top: 1px solid rgba(255,255,255,.1);
}
.socials { display: flex; gap: 8px; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); color: var(--white); }
.socials a:hover { background: var(--rust); border-color: var(--rust); color: var(--white); }
.socials .icon { width: 17px; height: 17px; }
.copyright { margin: 0; font-size: 13px; }
.payments { display: flex; flex-wrap: wrap; gap: 6px; }
.payments span {
	padding: 5px 9px; border-radius: 3px; background: rgba(255,255,255,.08);
	font: 600 11px/1 var(--font-body); letter-spacing: .04em; color: rgba(255,255,255,.8);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.slider__btn--prev { left: -8px; }
	.slider__btn--next { right: -8px; }
}

@media (max-width: 1024px) {
	.header-main { grid-template-columns: auto 1fr auto; min-height: 68px; }
	.header-burger { display: block; }
	.header-search { display: none; }
	.header-logo { justify-self: start; }
	.header-nav { display: none; }
	.perks__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.perk:nth-child(3) { border-left: 0; }
	.perk:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
	.promo__grid, .workshop__grid { grid-template-columns: 1fr; }
	.workshop__grid { gap: 48px; }
	.slider__track { grid-auto-columns: calc((100% - 24px) / 2); }
}

@media (max-width: 768px) {
	:root { --gutter: 16px; }
	body { font-size: 14px; }
	.section { padding: 52px 0; }
	.hide-sm { display: none; }
	.announcement { font-size: 11px; letter-spacing: .1em; padding: 9px 0; }
	.wordmark__plate { font-size: 12px; padding: 6px 9px; }
	.wordmark__text { font-size: 20px; }
	.header-icon { width: 38px; height: 38px; }
	.hero { min-height: 520px; }
	.hero::before { background: linear-gradient(180deg, rgba(22,24,27,.55), rgba(22,24,27,.9)); }
	.hero__inner { padding-top: 48px; padding-bottom: 56px; }
	.hero__text { font-size: 16px; }
	.hero__actions .btn { flex: 1 1 100%; }
	.section-head { flex-direction: column; align-items: flex-start; margin-bottom: 28px; }
	.perks__grid { grid-template-columns: 1fr 1fr; }
	.perk { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 12px; }
	.perk__copy strong { font-size: 13px; }
	.perk__copy small { font-size: 12px; }
	.promo__panel { padding: 40px 28px; }
	.promo__media { min-height: 260px; }
	.collections__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.tile { aspect-ratio: 1; }
	.tile__label { left: 12px; right: 12px; bottom: 12px; flex-direction: column; align-items: flex-start; gap: 6px; }
	.tile__name { font-size: 17px; }
	.tile__count { font-size: 10px; padding: 3px 7px; }
	.marquee { padding: 16px 0; }
	.stats dt { font-size: 26px; }
	.slider__track { grid-auto-columns: 86%; gap: 14px; }
	.slider__btn { display: none; }
	.posts-grid { grid-template-columns: 1fr; gap: 32px; }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
}
