/* The House of Prouds Gallery: one responsive stylesheet for every page. */

/* --- Tokens ------------------------------------------------------------------------------- */
:root {
	--bg: #faf8f4;
	--bg-2: #f2ece2;
	--surface: #ffffff;
	--tint: #f5f1e9;
	--ink: #2b221c;
	--ink-soft: #55473d;
	--muted: #8b7a6b;
	--brand: #6b1c13;
	--brand-600: #8a2a1e;
	--brand-900: #3c0f0a;
	--gold: #c19248;
	--gold-dark: #976d27;
	--cream: #f6e9cd;
	--line: #e9e1d4;
	--line-soft: #f1ebe1;
	--radius: 14px;
	--radius-lg: 24px;
	--shadow-sm: 0 1px 2px rgba(43, 34, 28, .05);
	--shadow: 0 12px 32px -14px rgba(43, 34, 28, .22);
	--shadow-lg: 0 28px 70px -24px rgba(43, 34, 28, .32);
	--serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--wrap: 1180px;
	--ease: cubic-bezier(.2, .7, .3, 1);
	--header-h: 84px;
}

/* --- Base --------------------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0; min-height: 100dvh; display: flex; flex-direction: column;
	background: var(--bg);
	color: var(--ink);
	font: 400 16.5px/1.65 var(--sans);
	font-feature-settings: "kern" 1, "liga" 1, "cv11" 1;
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .18s var(--ease); }
a:hover { color: var(--gold-dark); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--brand); line-height: 1.12; font-weight: 600; letter-spacing: -.005em; }
h1 { font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3.1rem); margin: 0 0 .35em; }
h2 { font-size: clamp(1.55rem, 1.25rem + 1.1vw, 2.05rem); margin: 2.2rem 0 1rem; }
h3 { font-size: 1.4rem; margin: 0 0 .3em; }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 8px; z-index: 60; background: var(--surface); border-radius: 8px; padding: 10px 14px; box-shadow: var(--shadow); }

.eyebrow {
	display: block; margin: 0 0 .9rem;
	font: 600 .72rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark);
}
.lead { max-width: 62ch; color: var(--ink-soft); font-size: 1.14rem; line-height: 1.6; }
.empty { margin-top: 1.6rem; color: var(--muted); }

/* --- Header ------------------------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(250, 248, 244, .82);
	border-bottom: 1px solid var(--line);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
}
.header-inner { display: flex; align-items: center; gap: 28px; min-height: var(--header-h); }
.logo { display: block; flex: none; line-height: 0; transition: opacity .2s var(--ease); }
.logo:hover { opacity: .82; }
.logo img { display: block; width: 74px; height: auto; }
.header-menu { display: flex; flex: 1; align-items: center; gap: 28px; }
.site-nav { margin-right: auto; }
.site-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.site-nav a {
	position: relative; display: block; padding: 10px 14px;
	color: var(--ink-soft); font-size: .945rem; font-weight: 500; letter-spacing: .005em; text-decoration: none;
	border-radius: 8px; transition: color .18s var(--ease), background-color .18s var(--ease);
}
.site-nav a::after {
	content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1.5px;
	background: var(--gold); border-radius: 2px; transform: scaleX(0); transform-origin: left;
	transition: transform .28s var(--ease);
}
.site-nav a:hover { color: var(--brand); }
.site-nav a:hover::after, .site-nav a[aria-current]::after { transform: scaleX(1); }
.site-nav a[aria-current] { color: var(--brand); font-weight: 600; }

.search { display: flex; align-items: center; gap: 6px; flex: none; }
.search input {
	width: 190px; min-width: 0; font: inherit; font-size: .92rem; color: var(--ink);
	background: var(--surface); padding: 9px 14px;
	border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm);
	transition: width .28s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.search input::placeholder { color: var(--muted); }
.search input:focus { width: 230px; outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(193, 146, 72, .18); }
.search button {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	width: 40px; height: 40px; padding: 0;
	font: inherit; color: #fff; background: var(--brand); border: 0; border-radius: 999px; cursor: pointer;
	transition: background-color .18s var(--ease), transform .18s var(--ease);
}
.search button:hover { background: var(--brand-600); transform: translateY(-1px); }
.search button svg { width: 17px; height: 17px; }
.search button .label { display: none; }

.nav-toggle {
	display: none; align-items: center; justify-content: center; width: 42px; height: 42px; flex: none;
	color: var(--brand); background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
	box-shadow: var(--shadow-sm); cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .close, html[data-nav="open"] .nav-toggle .open { display: none; }
html[data-nav="open"] .nav-toggle .close { display: block; }

/* --- Page shell --------------------------------------------------------------------------- */
main { display: block; flex: 1 0 auto; padding: 44px 0 72px; }
.page > :first-child { margin-top: 0; }
.page > h1 { margin-top: 0; }

.breadcrumb ol {
	list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 2px 8px;
	margin: 0 0 22px; padding: 0; font-size: .84rem; color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); text-decoration: underline; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--line); }
.breadcrumb [aria-current] { color: var(--ink-soft); }

.prose { max-width: 68ch; color: var(--ink-soft); }
.prose h2, .prose h3 { color: var(--brand); }
.prose > :last-child { margin-bottom: 0; }
.prose ul, .prose ol { margin: 0 0 1.1em; padding-left: 1.2em; }
.prose li { margin-bottom: .35em; }
.prose table { border-collapse: collapse; margin-bottom: 1.1em; }
.prose td { padding: 4px 16px 4px 0; vertical-align: top; }

/* The questions on /place-an-order: each one is a heading a search result can quote. */
.faq h3 { margin: 1.7rem 0 .35em; font-size: 1.22rem; }
.faq > h3:first-child { margin-top: 0; }

/* --- Buttons ------------------------------------------------------------------------------ */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font: inherit; font-size: .95rem; font-weight: 600; line-height: 1.2;
	color: #fff; background: var(--brand); border: 1px solid transparent; border-radius: 999px;
	padding: 12px 24px; cursor: pointer; text-decoration: none; white-space: nowrap;
	box-shadow: 0 6px 18px -8px rgba(107, 28, 19, .6);
	transition: background-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn:hover { color: #fff; background: var(--brand-600); transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(107, 28, 19, .55); }
.btn-secondary { color: var(--brand); background: transparent; border-color: rgba(107, 28, 19, .3); box-shadow: none; }
.btn-secondary:hover { color: var(--brand); background: rgba(107, 28, 19, .06); border-color: var(--brand); box-shadow: none; }
.btn-light { color: var(--brand-900); background: var(--cream); box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .5); }
.btn-light:hover { color: var(--brand-900); background: #fff; }
.btn-ghost-light { color: var(--cream); background: transparent; border-color: rgba(246, 233, 205, .38); box-shadow: none; }
.btn-ghost-light:hover { color: var(--brand-900); background: var(--cream); border-color: var(--cream); }

.linkmore {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: .92rem; font-weight: 600; text-decoration: none;
}
.linkmore::after { content: "→"; transition: transform .22s var(--ease); }
.linkmore:hover::after { transform: translateX(4px); }

/* --- Section headings --------------------------------------------------------------------- */
.section-head {
	display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 24px;
	margin: 2.6rem 0 1.2rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line);
}
.section-head > :is(h2, h3) { margin: 0; }
.page > .section-head:first-of-type { margin-top: 2.2rem; }

/* --- Cards -------------------------------------------------------------------------------- */
.grid {
	list-style: none; display: grid; gap: 22px; margin: 0; padding: 0;
	grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
}
.card a {
	display: flex; flex-direction: column; height: 100%; overflow: hidden;
	color: inherit; text-decoration: none;
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.card a:hover { transform: translateY(-4px); border-color: rgba(193, 146, 72, .5); box-shadow: var(--shadow); }
.thumb {
	position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden;
	background: var(--tint); border-bottom: 1px solid var(--line-soft);
}
.thumb img {
	position: absolute; inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px);
	object-fit: contain; mix-blend-mode: multiply; transition: transform .45s var(--ease);
}
.card a:hover .thumb img { transform: scale(1.055); }
.noimg {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	color: var(--muted); font-size: .8rem; letter-spacing: .04em;
}
.card-body { display: flex; flex: 1; flex-direction: column; gap: 5px; padding: 14px 16px 16px; }
.card-title { color: var(--brand); font-weight: 600; font-size: .97rem; line-height: 1.35; }
.card-sub { color: var(--muted); font-size: .84rem; line-height: 1.45; }
.card-price {
	margin-top: auto; padding-top: 10px;
	color: var(--ink); font-size: .95rem; font-weight: 600; font-variant-numeric: tabular-nums;
}

/* --- Home: hero --------------------------------------------------------------------------- */
.hero {
	position: relative; overflow: hidden; isolation: isolate;
	display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px;
	margin: 0 0 8px; padding: clamp(36px, 5vw, 64px);
	color: var(--cream); border-radius: var(--radius-lg);
	background: radial-gradient(120% 140% at 88% 12%, #8c2a1c 0%, #6b1c13 42%, #4a120c 100%);
	box-shadow: var(--shadow-lg);
}
.hero::before {
	content: ""; position: absolute; inset: 0; z-index: -1; opacity: .4;
	background:
		radial-gradient(40% 55% at 82% 26%, rgba(255, 233, 186, .3), transparent 70%),
		radial-gradient(60% 80% at 8% 100%, rgba(193, 146, 72, .28), transparent 70%);
}
.hero .eyebrow { color: rgba(246, 233, 205, .72); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 1.6rem + 3vw, 3.6rem); margin-bottom: .45em; }
.hero p { color: rgba(246, 233, 205, .88); }
.hero .lead { color: rgba(246, 233, 205, .88); max-width: 46ch; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
.hero-figure { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-figure::before {
	content: ""; position: absolute; width: 108%; aspect-ratio: 1; border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 246, 224, .3) 0%, rgba(255, 246, 224, 0) 66%);
}
.hero-figure img { position: relative; width: min(300px, 100%); filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .45)); }
.hero-note {
	display: inline-flex; align-items: center; gap: 10px; margin: 0 0 1.4rem; padding: 7px 16px 7px 12px;
	font: 600 .74rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--cream);
	background: rgba(246, 233, 205, .1); border: 1px solid rgba(246, 233, 205, .26); border-radius: 999px;
}
.hero-note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* --- Home: layout ------------------------------------------------------------------------- */
.home-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: start; }
.panel {
	padding: 26px 28px; background: var(--surface);
	border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.panel > :is(h2, h3):first-child { margin-top: 0; }
.visit { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px 40px; align-items: start; }
.visit h3 { font-size: 1.25rem; margin-bottom: .5em; }
.visit p { color: var(--ink-soft); }
.visit p:last-child { margin-bottom: 0; }

/* --- Teasers ------------------------------------------------------------------------------ */
.teasers { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.teaser {
	display: grid; grid-template-columns: 118px 1fr; gap: 20px; align-items: start;
	padding: 20px 0; border-top: 1px solid var(--line);
}
.teaser:first-child { border-top: 0; padding-top: 4px; }
.teaser.no-img { grid-template-columns: 1fr; }
.teaser > a:first-child {
	display: block; overflow: hidden; aspect-ratio: 1;
	background: var(--tint); border: 1px solid var(--line-soft); border-radius: 10px;
}
.teaser > a:first-child img { width: 100%; height: 100%; object-fit: contain; padding: 8px; mix-blend-mode: multiply; transition: transform .4s var(--ease); }
.teaser > a:first-child:hover img { transform: scale(1.06); }
.teaser :is(h2, h3) { margin: 0 0 .3em; font-size: 1.3rem; }
.teaser :is(h2, h3) a { text-decoration: none; }
.teaser :is(h2, h3) a:hover { text-decoration: underline; }
.teaser p { margin: 0 0 .6em; color: var(--ink-soft); font-size: .95rem; }
.teasers.compact .teaser { grid-template-columns: 84px 1fr; gap: 16px; padding: 16px 0; }
.teasers.compact .teaser:first-child { padding-top: 0; }
.teasers.compact .teaser.no-img { grid-template-columns: 1fr; }
.teasers.compact :is(h2, h3) { font-size: 1.15rem; }
.teasers.compact p { font-size: .9rem; }

/* --- Category / brand intro --------------------------------------------------------------- */
.intro {
	display: grid; grid-template-columns: fit-content(190px) 1fr; gap: 36px; align-items: center;
	margin: 0 0 8px; padding: 30px 34px;
	background: linear-gradient(180deg, var(--surface), var(--bg));
	border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.intro.no-img { grid-template-columns: 1fr; }
.intro h1 { margin-bottom: .3em; }
.intro .prose { margin-bottom: 0; }
.intro-img {
	width: auto; max-width: 180px; padding: 12px;
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}

/* --- Product ------------------------------------------------------------------------------ */
.product { display: grid; grid-template-columns: minmax(0, 420px) 1fr; gap: 48px; align-items: start; }
.product-media {
	position: relative; display: block; padding: 26px; text-align: center; text-decoration: none;
	background: linear-gradient(180deg, var(--surface), var(--tint));
	border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
	transition: box-shadow .3s var(--ease);
}
a.product-media:hover { box-shadow: var(--shadow); }
.product-media img { width: auto; max-height: 460px; mix-blend-mode: multiply; }
.enlarge {
	display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
	color: var(--muted); font-size: .82rem; letter-spacing: .02em;
}
.enlarge::before { content: "⤢"; }
.product-info h1 { margin-bottom: .25em; }
.price {
	display: inline-block; margin: 0 0 18px;
	color: var(--brand); font-family: var(--serif); font-size: 2.3rem; font-weight: 600; line-height: 1;
	font-variant-numeric: tabular-nums;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
.specs {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 0; margin: 0;
	border-top: 1px solid var(--line);
}
.specs > div { padding: 14px 20px 14px 0; border-bottom: 1px solid var(--line-soft); }
.specs dt { color: var(--muted); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.specs dd { margin: 5px 0 0; font-weight: 500; overflow-wrap: anywhere; }
.download {
	display: inline-flex; align-items: center; gap: 12px; margin-top: 4px; padding: 12px 20px 12px 14px;
	color: var(--ink); font-size: .94rem; font-weight: 500; text-decoration: none;
	background: var(--surface); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm);
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.download:hover { color: var(--ink); border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-1px); }
.download::before {
	content: attr(data-kind); padding: 4px 8px; color: #fff; background: var(--brand);
	border-radius: 6px; font-size: .64rem; font-weight: 700; letter-spacing: .06em;
}
.download small { color: var(--muted); }

/* --- Articles ----------------------------------------------------------------------------- */
.article { max-width: 78ch; }
.feature {
	float: right; width: fit-content; max-width: min(42%, 320px); margin: 4px 0 20px 32px; padding: 12px; display: block;
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.feature img, .feature-inline img { display: block; margin: 0 auto; border-radius: 6px; }
.feature-inline {
	display: inline-block; padding: 12px; background: var(--surface);
	border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.article::after { content: ""; display: table; clear: both; }

/* --- Contact ------------------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
.contact-grid > section {
	padding: 28px 30px; background: var(--surface);
	border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.contact-grid h2 { margin-top: 0; font-size: 1.5rem; }
.contact-grid h3 { margin: 1.5rem 0 .6em; font-size: 1.2rem; }
.hours { border-collapse: collapse; width: 100%; max-width: 340px; }
.hours td { padding: 9px 0; border-bottom: 1px solid var(--line-soft); vertical-align: top; color: var(--ink-soft); }
.hours tr:last-child td { border-bottom: 0; }
.hours td:last-child { text-align: right; font-weight: 600; color: var(--ink); white-space: nowrap; }
.details { margin: 0; }
.details dt { color: var(--muted); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.details dd { margin: 4px 0 16px; font-size: 1.02rem; font-weight: 500; }

/* --- Search ------------------------------------------------------------------------------- */
.search-page { display: flex; align-items: stretch; max-width: 560px; margin: 0 0 8px; }
.search-page input { flex: 1; width: auto; padding: 13px 20px; font-size: 1rem; }
.search-page input:focus { width: auto; }
.search-page button { width: auto; height: auto; padding: 0 22px; }
.search-page button .label { display: inline; font-size: .95rem; font-weight: 600; }
.search-page button svg { display: none; }
.search-status { margin: 22px 0 0; color: var(--muted); font-size: .92rem; }
.results { list-style: none; margin: 10px 0 0; padding: 0; }
.result a {
	display: grid; grid-template-columns: 72px 1fr auto; gap: 20px; align-items: center;
	padding: 16px; margin-bottom: 6px; color: inherit; text-decoration: none;
	border: 1px solid transparent; border-radius: var(--radius);
	transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.result a:hover { background: var(--surface); border-color: var(--line); }
.result-thumb {
	width: 72px; height: 72px; object-fit: contain; padding: 6px;
	background: var(--tint); border: 1px solid var(--line-soft); border-radius: 10px;
}
.result-title { display: block; color: var(--brand); font-weight: 600; font-size: 1.02rem; }
.result-context { display: block; margin-top: 2px; color: var(--muted); font-size: .78rem; letter-spacing: .03em; }
.result-snippet { margin: 5px 0 0; color: var(--ink-soft); font-size: .89rem; line-height: 1.5; }
.result-price { font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }

/* --- Sitemap ------------------------------------------------------------------------------ */
.sitemap { columns: 2; column-gap: 48px; }
.sitemap > ul { margin: 0; }
.sitemap ul { list-style: none; margin: 3px 0; padding-left: 0; }
.sitemap ul ul { padding-left: 18px; border-left: 1px solid var(--line); margin-left: 3px; }
.sitemap li { break-inside: avoid; }
.sitemap a { display: inline-block; padding: 3px 0; text-decoration: none; font-size: .95rem; }
.sitemap a:hover { text-decoration: underline; }
.sitemap > ul > li > a { font-weight: 600; font-size: 1rem; }

/* --- Footer ------------------------------------------------------------------------------- */
.site-footer {
	flex: none; margin-top: 40px; padding: 64px 0 28px; color: rgba(246, 233, 205, .78); font-size: .93rem;
	background: linear-gradient(180deg, var(--brand-900), #300b07);
}
.site-footer :is(h2, h3, strong) { color: #fff; }
.site-footer a { color: rgba(246, 233, 205, .92); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px 40px; }
.footer-brand img { width: 78px; margin-bottom: 14px; }
.footer-title {
	display: block; margin: 0 0 14px;
	font: 600 .72rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.footer-grid p { margin: 0 0 .7em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .55em; }
.footer-hours { display: flex; justify-content: space-between; gap: 16px; margin-bottom: .55em; }
.footer-hours span:last-child { color: rgba(246, 233, 205, .95); white-space: nowrap; }
.footer-bottom {
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px;
	margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(246, 233, 205, .16);
	font-size: .82rem; color: rgba(246, 233, 205, .6);
}
.footer-bottom p { margin: 0; }

/* --- Motion ------------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --- Tablet ------------------------------------------------------------------------------- */
@media (max-width: 1000px) {
	.hero { grid-template-columns: 1fr; text-align: center; }
	.hero .lead { margin-inline: auto; }
	.hero-actions, .hero .eyebrow { justify-content: center; }
	.hero-actions { justify-content: center; }
	.hero-figure { order: -1; }
	.hero-figure img { width: min(210px, 54%); }
	.product { grid-template-columns: minmax(0, 340px) 1fr; gap: 32px; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Phones ------------------------------------------------------------------------------- */
@media (max-width: 860px) {
	:root { --header-h: 68px; }
	.wrap { padding: 0 18px; }
	main { padding: 28px 0 56px; }
	.header-inner { gap: 14px; }
	.logo img { width: 58px; }
	.nav-toggle { display: inline-flex; margin-left: auto; }
	.header-menu {
		position: absolute; left: 0; right: 0; top: 100%; z-index: 1;
		display: none; flex-direction: column-reverse; align-items: stretch; gap: 4px;
		max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
		padding: 16px 18px 20px;
		background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
	}
	html[data-nav="open"] .header-menu { display: flex; }
	.site-nav { margin: 0; }
	.site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
	.site-nav a { padding: 14px 2px; font-size: 1.02rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
	.site-nav ul li:last-child a { border-bottom: 0; }
	.site-nav a::after { display: none; }
	.site-nav a[aria-current] { color: var(--brand); }
	.header-menu .search { margin-bottom: 8px; }
	.header-menu .search input, .header-menu .search input:focus { width: auto; flex: 1; padding: 12px 18px; font-size: 1rem; }
	.header-menu .search button { width: 44px; height: 44px; flex: none; }

	.hero { padding: 34px 22px 38px; border-radius: 18px; }
	.home-cols { grid-template-columns: 1fr; gap: 8px; }
	.panel { padding: 22px; }
	.intro { grid-template-columns: 1fr; gap: 20px; padding: 24px; text-align: left; }
	.intro-img { max-width: 130px; }
	.product { grid-template-columns: 1fr; gap: 26px; }
	.product-media { padding: 18px; }
	.product-media img { max-height: 340px; }
	.grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
	.card-body { padding: 12px 13px 14px; }
	.teaser { grid-template-columns: 92px 1fr; gap: 16px; }
	.contact-grid > section { padding: 22px; }
	.specs { grid-template-columns: 1fr; }
	.feature { float: none; max-width: min(100%, 340px); margin: 0 0 20px; }
	.sitemap { columns: 1; }
	.result a { grid-template-columns: 56px 1fr; gap: 14px; padding: 12px; }
	.result-thumb { width: 56px; height: 56px; }
	.result-price { grid-column: 2; }
	.site-footer { padding: 44px 0 24px; }
	.footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 420px) {
	.grid { grid-template-columns: repeat(2, 1fr); }
	.hero h1 { font-size: 2rem; }
}
