/* =========================================================================
   CopyShop Theme — CopyShop Arena visual system
   Code-first theme with the old dark/lime local print-shop feel.
   ========================================================================= */

:root {
	--cs-dark: #1c2431;
	--cs-dark-2: #232a32;
	--cs-dark-3: #2e3743;
	--cs-teal: #2596be;
	--cs-teal-deep: #1f7e9f;
	--cs-lime: #bbd78b;
	--cs-lime-strong: #a8ca71;
	--cs-paper: #f3f5ef;
	--cs-paper-soft: #f8fbf4;
	--cs-paper-tint: #edf3e4;
	--cs-white: #ffffff;
	--cs-ink: #1e2631;
	--cs-muted: #5c6775;
	--cs-line: rgba(28, 36, 49, 0.10);
	--cs-line-dark: rgba(255, 255, 255, 0.10);
	--cs-shadow: 0 30px 70px rgba(19, 28, 39, 0.14);
	--cs-shadow-soft: 0 20px 48px rgba(19, 28, 39, 0.10);
	--cs-shadow-card: 0 18px 38px rgba(19, 28, 39, 0.12);
	--cs-radius: 24px;
	--cs-radius-lg: 36px;
	--cs-radius-sm: 16px;
	--cs-container: 1400px;
	--cs-container-hero: 1480px;
	--cs-font-display: "Avenir Next", "Poppins", "Segoe UI", sans-serif;
	--cs-font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

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

html { scroll-behavior: smooth; }

body.cs-body {
	margin: 0;
	font-family: var(--cs-font-body);
	color: var(--cs-ink);
	background:
		radial-gradient(circle at top left, rgba(187, 215, 139, 0.24), transparent 26%),
		linear-gradient(180deg, #f8fbf3 0%, #f2f6ed 44%, #f4f6f1 100%);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--cs-teal); text-decoration: none; }
a:hover { color: var(--cs-teal-deep); }

.cs-page { min-height: 100vh; overflow: clip; }
.cs-main { position: relative; z-index: 1; }
.cs-container { width: 100%; max-width: var(--cs-container); margin: 0 auto; padding: 0 28px; }
.cs-header .cs-container,
.cs-hero .cs-container { max-width: var(--cs-container-hero); }
.cs-grid { display: grid; gap: 24px; }

.cs-skip-link { position: absolute; left: -9999px; }
.cs-skip-link:focus { left: 18px; top: 18px; z-index: 100000; background: #fff; padding: 12px 16px; border-radius: 10px; }

.cs-section { padding: 88px 0; }
.cs-section__head { max-width: 760px; margin: 0 0 38px; }
.cs-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.cs-section__eyebrow,
.cs-page-hero__eyebrow,
.cs-footer__eyebrow,
.cs-home-meta__label,
.cs-cta__eyebrow {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cs-teal);
}
.cs-section__title,
.cs-page-hero__title {
	margin: 0 0 14px;
	font-family: var(--cs-font-display);
	font-size: clamp(32px, 4.2vw, 54px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.05em;
	color: var(--cs-ink);
	text-wrap: balance;
}
.cs-section__summary,
.cs-page-hero__summary {
	margin: 0;
	font-size: 17px;
	color: var(--cs-muted);
	max-width: 60ch;
}

.cs-prose { color: #3a4451; }
.cs-prose > :first-child { margin-top: 0; }
.cs-prose > :last-child { margin-bottom: 0; }
.cs-prose h2,
.cs-prose h3 { font-family: var(--cs-font-display); letter-spacing: -0.03em; }
.cs-prose img { border-radius: 18px; margin: 20px 0; box-shadow: var(--cs-shadow-soft); }

.cs-card {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--cs-line);
	border-radius: var(--cs-radius);
	box-shadow: var(--cs-shadow-soft);
}

/* ------------------------------------------------------------------ Buttons */
.cs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 50px;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 800;
	font-family: var(--cs-font-body);
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
	text-align: center;
}
.cs-btn:hover { transform: translateY(-2px); }
.cs-btn--primary {
	background: var(--cs-lime);
	color: var(--cs-dark);
	box-shadow: 0 14px 28px rgba(187, 215, 139, 0.32);
}
.cs-btn--primary:hover {
	background: var(--cs-lime-strong);
	color: var(--cs-dark);
}
.cs-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.26);
	color: #fff;
}
.cs-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}
.cs-page-shell .cs-btn--ghost,
.cs-contact__map-card .cs-btn--ghost,
.cs-contact__form-card .cs-btn--ghost,
.cs-product-detail .cs-btn--ghost,
.cs-modal .cs-btn--ghost {
	border-color: var(--cs-line);
	color: var(--cs-ink);
	background: rgba(28, 36, 49, 0.04);
}
.cs-page-shell .cs-btn--ghost:hover,
.cs-contact__map-card .cs-btn--ghost:hover,
.cs-contact__form-card .cs-btn--ghost:hover,
.cs-product-detail .cs-btn--ghost:hover,
.cs-modal .cs-btn--ghost:hover {
	background: rgba(28, 36, 49, 0.08);
	color: var(--cs-ink);
}

/* ------------------------------------------------------------------- Header */
.cs-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 18px 0 12px;
	background: linear-gradient(180deg, rgba(244, 247, 239, 0.94) 0%, rgba(244, 247, 239, 0) 100%);
}
.admin-bar .cs-header { top: 32px; }
.cs-header__surface {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 16px 22px;
	background: rgba(23, 31, 42, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	box-shadow: 0 24px 50px rgba(12, 18, 28, 0.22);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}
.cs-header__brand { flex: 0 0 auto; min-width: 0; }
.cs-header__brand .custom-logo-link { display: inline-flex; align-items: center; }
.cs-header__brand .custom-logo { max-height: 88px; width: auto; }
.cs-header__title {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	color: #fff;
}
.cs-header__title:hover { color: #fff; }
.cs-header__title-mark {
	font-family: var(--cs-font-display);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.04em;
}
.cs-header__title-meta {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
}
.cs-header__dock {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: 0;
}
.cs-header__nav { flex: 1 1 auto; min-width: 0; }
.cs-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.cs-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.cs-menu li { position: relative; }
.cs-menu > li > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 20px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.10);
	transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.cs-menu > li > a:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}
.cs-menu .current-menu-item > a,
.cs-menu .current_page_item > a,
.cs-menu .current-menu-ancestor > a {
	background: var(--cs-lime);
	border-color: rgba(187, 215, 139, 0.4);
	color: var(--cs-dark);
	box-shadow: 0 12px 24px rgba(187, 215, 139, 0.22);
}
.cs-menu .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: rgba(23, 31, 42, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	box-shadow: var(--cs-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.cs-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.cs-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	color: rgba(255, 255, 255, 0.82);
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
}
.cs-menu .sub-menu a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

.cs-contact-buttons { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.cs-contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}
.cs-contact-btn:hover { color: #fff; transform: translateY(-2px); }
.cs-contact-btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.cs-contact-btn--whatsapp { background: #25d366; box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22); }
.cs-contact-btn--telegram { background: #2596be; box-shadow: 0 12px 24px rgba(37, 150, 190, 0.20); }
.cs-contact-btn--email { background: #d65454; box-shadow: 0 12px 24px rgba(214, 84, 84, 0.20); }
.cs-contact-buttons--header .cs-contact-btn {
	width: 46px;
	height: 46px;
	min-height: 46px;
	padding: 0;
	border-radius: 14px;
}
.cs-contact-buttons--header .cs-contact-btn span { display: none; }

.cs-contact-buttons--inline .cs-contact-btn,
.cs-contact-buttons--footer .cs-contact-btn,
.cs-contact-buttons--contact .cs-contact-btn,
.cs-contact-buttons--stacked .cs-contact-btn {
	padding-inline: 16px;
	border-radius: 999px;
}
.cs-contact-buttons--stacked {
	flex-direction: column;
	align-items: stretch;
}
.cs-contact-buttons--stacked .cs-contact-btn { justify-content: flex-start; }

.cs-lang-switcher {
	display: inline-flex;
	align-items: center;
	padding: 4px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 999px;
}
.cs-lang-switcher__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 38px;
	padding: 0 12px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-radius: 999px;
}
.cs-lang-switcher__link:hover { color: #fff; background: rgba(255, 255, 255, 0.10); }
.cs-lang-switcher__link.is-active { background: var(--cs-lime); color: var(--cs-dark); }

.cs-header__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	cursor: pointer;
}
.cs-header__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 0 auto;
	background: #fff;
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.cs-header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cs-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.cs-header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.cs-header__mobile {
	margin-top: 12px;
	padding: 18px 0 4px;
}
.cs-header__mobile .cs-container {
	padding-top: 20px;
	padding-bottom: 22px;
	background: rgba(23, 31, 42, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	box-shadow: var(--cs-shadow);
}
.cs-menu--mobile {
	flex-direction: column;
	align-items: stretch;
}
.cs-menu--mobile > li > a { width: 100%; justify-content: flex-start; }
.cs-menu--mobile .sub-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 8px 0 0 14px;
}
.cs-header__mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 18px;
}

/* --------------------------------------------------------------------- Hero */
.cs-home { position: relative; }
.cs-hero {
	padding: 6px 0 0;
}
.cs-hero__frame {
	position: relative;
	overflow: hidden;
	border-radius: 38px;
	background: #111822;
	box-shadow: 0 36px 70px rgba(14, 20, 29, 0.24);
}
.cs-hero__track { position: relative; height: clamp(620px, 72vh, 760px); }
.cs-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transform: scale(1.03);
	transition: opacity .8s ease, transform 5s ease;
}
.cs-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.cs-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: fill;
}
.cs-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(15, 21, 30, 0.68) 0%, rgba(15, 21, 30, 0.34) 42%, rgba(15, 21, 30, 0.12) 100%),
		linear-gradient(180deg, rgba(15, 21, 30, 0.10), rgba(15, 21, 30, 0.26));
}
.cs-hero__content {
	position: absolute;
	left: clamp(28px, 5vw, 64px);
	right: clamp(28px, 5vw, 64px);
	bottom: clamp(28px, 5vw, 54px);
	z-index: 2;
	max-width: min(520px, 100%);
	padding: 18px 22px;
	background: rgba(17, 24, 34, 0.26);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	color: #fff;
}
.cs-hero__title {
	margin: 0;
	font-family: var(--cs-font-display);
	font-size: clamp(20px, 2.6vw, 34px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.05em;
	text-wrap: balance;
}
.cs-hero__nav {
	position: absolute;
	top: 50%;
	z-index: 4;
	width: 54px;
	height: 54px;
	margin-top: -27px;
	border: 0;
	border-radius: 999px;
	background: rgba(23, 31, 42, 0.82);
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}
.cs-hero__nav:hover { background: rgba(23, 31, 42, 0.94); }
.cs-hero__nav--prev { left: 22px; }
.cs-hero__nav--next { right: 22px; }
.cs-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 20px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 10px;
	transform: translateX(-50%);
}
.cs-hero__dot {
	width: 12px;
	height: 12px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.34);
	cursor: pointer;
}
.cs-hero__dot.is-active {
	width: 30px;
	background: var(--cs-lime);
}

.cs-home-meta {
	position: relative;
	z-index: 3;
	margin-top: -64px;
	padding: 0 0 24px;
}
.cs-home-meta__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.cs-home-meta__card {
	padding: 24px 26px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(28, 36, 49, 0.08);
	border-radius: 26px;
	box-shadow: var(--cs-shadow-soft);
}
.cs-home-meta__value {
	margin: 0 0 6px;
	font-family: var(--cs-font-display);
	font-size: clamp(24px, 3vw, 30px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.05em;
	color: var(--cs-ink);
}
.cs-home-meta__value a { color: inherit; }
.cs-home-meta__text { margin: 0; color: var(--cs-muted); font-size: 15px; }

/* ------------------------------------------------------------- Home sections */
.cs-featured { padding-top: 40px; }
.cs-featured__shell {
	padding: clamp(30px, 4vw, 40px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 250, 237, 0.95) 100%);
	border: 1px solid rgba(28, 36, 49, 0.08);
	border-radius: 40px;
	box-shadow: var(--cs-shadow);
}
.cs-product-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cs-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(28, 36, 49, 0.08);
	border-radius: 24px;
	box-shadow: var(--cs-shadow-soft);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cs-product-card:hover {
	transform: translateY(-4px);
	border-color: rgba(37, 150, 190, 0.22);
	box-shadow: var(--cs-shadow-card);
}
.cs-product-card__trigger {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	font: inherit;
	color: inherit;
}
.cs-product-card__trigger:focus-visible,
.cs-product-card__action:focus-visible {
	outline: 3px solid rgba(37, 150, 190, 0.22);
	outline-offset: -3px;
}
.cs-product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e8edf2;
}
.cs-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.cs-product-card:hover .cs-product-card__media img { transform: scale(1.06); }
.cs-product-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 18px 20px 20px;
	flex: 1 1 auto;
}
.cs-product-card__category {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cs-muted);
}
.cs-product-card__title {
	margin: 0;
	font-family: var(--cs-font-display);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.04em;
	color: var(--cs-ink);
}
.cs-product-card__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--cs-muted);
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.cs-product-card__actions {
	margin-top: auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding-top: 8px;
}
.cs-product-card__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 16px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-align: center;
	transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.cs-product-card__action:hover {
	transform: translateY(-1px);
}
.cs-product-card__action--primary {
	background: var(--cs-lime);
	color: var(--cs-dark);
	box-shadow: 0 10px 20px rgba(187, 215, 139, 0.24);
}
.cs-product-card__action--primary:hover {
	background: var(--cs-lime-strong);
	color: var(--cs-dark);
}
.cs-product-card__action--secondary {
	background: rgba(28, 36, 49, 0.04);
	border-color: rgba(28, 36, 49, 0.10);
	color: var(--cs-ink);
}
.cs-product-card__action--secondary:hover {
	background: rgba(28, 36, 49, 0.08);
	color: var(--cs-ink);
}
.cs-featured__more { margin-top: 38px; text-align: center; }

.cs-services {
	background: transparent;
}
.cs-services__grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cs-service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 28px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(28, 36, 49, 0.08);
	border-radius: 28px;
	color: var(--cs-ink);
	box-shadow: var(--cs-shadow-soft);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.cs-service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(187, 215, 139, 0.40);
	box-shadow: var(--cs-shadow-card);
}
.cs-service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	background: linear-gradient(135deg, rgba(37, 150, 190, 0.12), rgba(187, 215, 139, 0.28));
	border-radius: 18px;
	color: var(--cs-teal);
}
.cs-service-card__icon svg { width: 30px; height: 30px; }
.cs-service-card__title {
	font-family: var(--cs-font-display);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.04em;
}
.cs-service-card__text { color: var(--cs-muted); font-size: 15px; }
.cs-service-card__arrow { margin-top: auto; font-size: 20px; color: var(--cs-teal); }

.cs-why {
	background:
		radial-gradient(circle at top right, rgba(187, 215, 139, 0.20), transparent 22%),
		linear-gradient(180deg, #eef4e6 0%, #f6f8f1 100%);
}
.cs-why__grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cs-why__item {
	padding: 28px 24px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(28, 36, 49, 0.08);
	border-radius: 26px;
	box-shadow: var(--cs-shadow-soft);
}
.cs-why__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 16px;
	background: var(--cs-dark);
	border-radius: 18px;
	color: var(--cs-lime);
}
.cs-why__icon svg { width: 28px; height: 28px; }
.cs-why__title {
	margin: 0 0 10px;
	font-family: var(--cs-font-display);
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -0.03em;
}
.cs-why__text { margin: 0; color: var(--cs-muted); font-size: 15px; }

.cs-hours__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
	gap: 28px;
	align-items: stretch;
}
.cs-hours__copy,
.cs-hours__list {
	padding: 32px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(28, 36, 49, 0.08);
	border-radius: 34px;
	box-shadow: var(--cs-shadow-soft);
}
.cs-hours__copy {
	background: linear-gradient(145deg, #232a32 0%, #171f29 100%);
	color: #fff;
}
.cs-hours__copy .cs-section__eyebrow { color: var(--cs-lime); }
.cs-hours__copy .cs-section__title { color: #fff; }
.cs-hours__copy .cs-section__summary { color: rgba(255, 255, 255, 0.74); }
.cs-hours__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}
.cs-hours__list {
	list-style: none;
	margin: 0;
	display: grid;
	gap: 14px;
}
.cs-hours__list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px;
	background: var(--cs-paper-soft);
	border: 1px solid rgba(28, 36, 49, 0.06);
	border-radius: 18px;
	font-size: 15px;
}
.cs-hours__list span { color: var(--cs-muted); }
.cs-hours__list strong { color: var(--cs-ink); font-size: 16px; }

.cs-cta { padding-top: 24px; }
.cs-cta__panel {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	padding: clamp(28px, 4vw, 38px);
	background: linear-gradient(130deg, #1d2531 0%, #2a313d 54%, #1b2029 100%);
	border-radius: 38px;
	box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
}
.cs-cta__copy { max-width: 640px; }
.cs-cta__eyebrow { color: var(--cs-lime); }
.cs-cta__title {
	margin: 0 0 10px;
	font-family: var(--cs-font-display);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
	color: #fff;
}
.cs-cta__text {
	margin: 0 0 10px;
	font-size: 17px;
	color: rgba(255, 255, 255, 0.78);
}
.cs-cta__meta {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 700;
}
.cs-cta__meta a { color: #fff; text-decoration: underline; }
.cs-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}

/* ----------------------------------------------------------------- Pages */
.cs-page-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
	gap: 28px;
	padding: clamp(30px, 4vw, 42px);
	background: linear-gradient(140deg, #232a32 0%, #161d26 100%);
	border-radius: 36px;
	box-shadow: var(--cs-shadow);
}
.cs-page-hero__copy { color: #fff; }
.cs-page-hero__eyebrow { color: var(--cs-lime); }
.cs-page-hero__title { color: #fff; }
.cs-page-hero__summary { color: rgba(255, 255, 255, 0.78); }
.cs-page-hero__stats {
	display: grid;
	gap: 14px;
	align-content: stretch;
}
.cs-page-hero__stat {
	display: grid;
	gap: 8px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
}
.cs-page-hero__stat span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.64);
}
.cs-page-hero__stat strong {
	font-family: var(--cs-font-display);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.06;
	color: #fff;
}

.cs-page-shell {
	margin-top: 26px;
	padding: clamp(28px, 3vw, 36px);
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(28, 36, 49, 0.08);
	border-radius: 34px;
	box-shadow: var(--cs-shadow-soft);
}
.cs-page-shell--intro { margin-top: 22px; }
.cs-page-copy { max-width: 82ch; }

.cs-catalog__toolbar {
	display: grid;
	grid-template-columns: 2.2fr 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
	padding: 22px;
	background: linear-gradient(180deg, #f9fbf6 0%, #f2f6ed 100%);
	border: 1px solid rgba(28, 36, 49, 0.08);
	border-radius: 24px;
}
.cs-catalog__field { display: flex; flex-direction: column; gap: 8px; }
.cs-catalog__field label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--cs-muted);
}
.cs-catalog__field input,
.cs-catalog__field select {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(28, 36, 49, 0.12);
	border-radius: 16px;
	font: inherit;
	color: var(--cs-ink);
	background: #fff;
}
.cs-catalog__field input:focus,
.cs-catalog__field select:focus,
.cs-form__field input:focus,
.cs-form__field textarea:focus {
	outline: 2px solid rgba(37, 150, 190, 0.22);
	border-color: rgba(37, 150, 190, 0.42);
}
.cs-catalog__count {
	margin: 0 0 18px;
	font-size: 14px;
	font-weight: 700;
	color: var(--cs-muted);
}
.cs-catalog__count span { color: var(--cs-ink); font-size: 20px; font-weight: 800; }
.cs-product-card[hidden] { display: none; }
.cs-empty {
	padding: 34px 24px;
	background: #fff;
	border: 1px dashed rgba(28, 36, 49, 0.18);
	border-radius: 24px;
	text-align: center;
	color: var(--cs-muted);
}

/* ------------------------------------------------------------ Product detail */
.cs-product-detail { padding: 36px 0 0; }
.cs-product-detail__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 30px;
	align-items: stretch;
}
.cs-product-detail__media {
	position: relative;
	overflow: hidden;
	border-radius: 36px;
	box-shadow: var(--cs-shadow);
}
.cs-product-detail__blur {
	position: absolute;
	inset: -20px;
	background-size: cover;
	background-position: center;
	filter: blur(28px) saturate(1.08);
	opacity: 0.45;
}
.cs-product-detail__image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}
.cs-product-detail__content {
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 34px;
	background: linear-gradient(145deg, #232a32 0%, #161d26 100%);
	border-radius: 36px;
	box-shadow: var(--cs-shadow);
}
.cs-product-detail__eyebrow {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cs-lime);
}
.cs-product-detail__eyebrow a { color: inherit; }
.cs-product-detail__title {
	margin: 0 0 16px;
	font-family: var(--cs-font-display);
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.06em;
	color: #fff;
}
.cs-product-detail__summary {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
}
.cs-product-detail__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.cs-product-detail__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}
.cs-product-detail__fact {
	display: grid;
	gap: 8px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 22px;
}
.cs-product-detail__fact span {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.64);
}
.cs-product-detail__fact strong {
	font-size: 15px;
	line-height: 1.35;
	color: #fff;
}
.cs-product-detail__story {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 28px;
	margin-top: 28px;
}
.cs-product-detail__body {
	padding: 30px 32px;
}
.cs-product-detail__order {
	padding: 30px;
	align-self: start;
}
.cs-product-detail__order h2 {
	margin: 0 0 10px;
	font-family: var(--cs-font-display);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.04em;
}
.cs-product-detail__order-text {
	margin: 0 0 20px;
	color: var(--cs-muted);
}
.cs-product-detail__order-actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: stretch;
}
.cs-related { padding-top: 72px; }

/* -------------------------------------------------------------------- Contact */
.cs-contact { padding-top: 26px; }
.cs-contact__shell { display: grid; gap: 24px; }
.cs-contact__intro,
.cs-contact__board {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
	gap: 24px;
	align-items: stretch;
}
.cs-contact__intro-copy,
.cs-contact__intro-meta,
.cs-contact__map-card,
.cs-contact__info-card,
.cs-contact__form-card {
	border: 1px solid rgba(28, 36, 49, 0.08);
	border-radius: 34px;
	box-shadow: var(--cs-shadow-soft);
}
.cs-contact__intro-copy {
	position: relative;
	padding: clamp(34px, 4vw, 48px);
	overflow: hidden;
	background:
		radial-gradient(circle at top right, rgba(187, 215, 139, 0.18), transparent 28%),
		linear-gradient(145deg, #232a32 0%, #171e28 100%);
	color: #fff;
}
.cs-contact__intro-copy::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -110px;
	width: 240px;
	height: 240px;
	background: rgba(187, 215, 139, 0.12);
	border-radius: 38%;
}
.cs-contact__intro-copy > * { position: relative; z-index: 1; }
.cs-contact__intro-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 243, 0.98));
}
.cs-contact__meta-tile {
	display: grid;
	gap: 8px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(28, 36, 49, 0.06);
	border-radius: 22px;
}
.cs-contact__eyebrow,
.cs-contact__card-eyebrow,
.cs-contact__meta-label,
.cs-contact__info-label,
.cs-contact__hours-label {
	margin: 0;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.cs-contact__eyebrow,
.cs-contact__card-eyebrow,
.cs-contact__info-label { color: var(--cs-lime); }
.cs-contact__meta-label,
.cs-contact__hours-label { color: #7ea145; }
.cs-contact__title,
.cs-contact__card-title,
.cs-contact__meta-value,
.cs-contact__info-value {
	margin: 0;
	font-family: var(--cs-font-display);
	font-weight: 800;
	letter-spacing: -0.05em;
}
.cs-contact__title {
	font-size: clamp(42px, 5vw, 72px);
	line-height: 0.94;
	max-width: 13ch;
	color: #fff;
}
.cs-contact__summary,
.cs-contact__card-copy,
.cs-contact__meta-text,
.cs-contact__info-text,
.cs-contact__map-note,
.cs-form__checkbox span {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: var(--cs-muted);
}
.cs-contact__summary {
	max-width: 64ch;
	color: rgba(255, 255, 255, 0.80);
}
.cs-contact__meta-value {
	font-size: 26px;
	line-height: 1.04;
	color: var(--cs-ink);
}
.cs-contact__meta-value a { color: inherit; }
.cs-contact__notice,
.cs-notice {
	padding: 14px 18px;
	border-radius: 18px;
	font-weight: 700;
}
.cs-notice--sent { background: rgba(187, 215, 139, 0.38); color: #24532b; }
.cs-notice--validation,
.cs-notice--invalid,
.cs-notice--failed { background: rgba(251, 191, 36, 0.22); color: #7c2d12; }
.cs-contact__map-card,
.cs-contact__info-card,
.cs-contact__form-card {
	display: grid;
	gap: 22px;
	padding: clamp(28px, 3vw, 36px);
}
.cs-contact__map-card,
.cs-contact__form-card {
	background: rgba(255, 255, 255, 0.96);
}
.cs-contact__info-card {
	align-content: start;
	background: linear-gradient(145deg, #232a32 0%, #171e28 100%);
	color: #fff;
}
.cs-contact__card-head { display: grid; gap: 10px; }
.cs-contact__card-title {
	font-size: clamp(28px, 3vw, 38px);
	line-height: 0.98;
	color: var(--cs-ink);
}
.cs-contact__info-card .cs-contact__card-title { color: #fff; }
.cs-contact__info-card .cs-contact__card-copy { color: rgba(255, 255, 255, 0.78); }
.cs-contact__map-frame {
	min-height: 560px;
	overflow: hidden;
	border-radius: 26px;
	box-shadow: inset 0 0 0 1px rgba(28, 36, 49, 0.08);
}
.cs-contact__map-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 560px;
	border: 0;
}
.cs-contact__map-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.cs-contact__info-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.cs-contact__info-item {
	display: grid;
	gap: 8px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 22px;
}
.cs-contact__info-value {
	font-size: 24px;
	line-height: 1.04;
	color: #fff;
}
.cs-contact__info-value a,
.cs-contact__info-text a { color: inherit; }
.cs-contact__info-text { color: rgba(255, 255, 255, 0.72); }
.cs-contact__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.cs-contact__hours-card {
	padding: 22px;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 26px;
}
.cs-contact__hours-list {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	display: grid;
	gap: 12px;
}
.cs-contact__hours-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 16px;
	background: linear-gradient(180deg, #f9fbf4 0%, #f2f6eb 100%);
	border: 1px solid rgba(28, 36, 49, 0.06);
	border-radius: 18px;
	font-size: 15px;
}
.cs-contact__hours-list span { color: var(--cs-muted); }
.cs-contact__hours-list strong { color: var(--cs-ink); font-size: 15px; }

.cs-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cs-form__field { display: flex; flex-direction: column; gap: 8px; }
.cs-form__field--full { grid-column: 1 / -1; }
.cs-form__field label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cs-muted);
}
.cs-form__field input,
.cs-form__field textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(28, 36, 49, 0.12);
	border-radius: 16px;
	font: inherit;
	color: var(--cs-ink);
	background: #fff;
}
.cs-form__field textarea {
	min-height: 170px;
	resize: vertical;
}
.cs-form__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.cs-form__checkbox input { margin-top: 4px; }

/* -------------------------------------------------------------------- Footer */
.cs-footer {
	margin-top: 34px;
	padding-top: 28px;
	padding-bottom: 0;
	background: linear-gradient(180deg, rgba(17, 23, 31, 0) 0%, rgba(17, 23, 31, 0.03) 100%);
}
.cs-footer__spotlight {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
	gap: 24px;
	padding: 34px;
	background: linear-gradient(145deg, #232a32 0%, #151d25 100%);
	border-radius: 38px;
	box-shadow: 0 28px 60px rgba(15, 23, 42, 0.20);
}
.cs-footer__col--brand { display: flex; flex-direction: column; gap: 16px; }
.cs-footer__eyebrow { color: var(--cs-lime); }
.cs-footer__brand {
	margin: 0;
	font-family: var(--cs-font-display);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.05em;
	color: #fff;
}
.cs-footer__text {
	margin: 0;
	max-width: 58ch;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.76);
}
.cs-footer__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.cs-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-content: start;
}
.cs-footer__grid .cs-footer__col {
	padding: 24px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 26px;
}
.cs-footer__heading {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
}
.cs-footer__hours,
.cs-footer__contact,
.cs-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
.cs-footer__hours li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.76);
}
.cs-footer__hours strong { color: #fff; }
.cs-footer__contact li,
.cs-footer__menu li {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.76);
}
.cs-footer__contact a,
.cs-footer__menu a { color: rgba(255, 255, 255, 0.82); }
.cs-footer__contact a:hover,
.cs-footer__menu a:hover { color: var(--cs-lime); }
.cs-footer__bar {
	padding: 22px 0 34px;
}
.cs-footer__bar p {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: rgba(28, 36, 49, 0.64);
}

/* --------------------------------------------------------------------- Modal */
body.cs-modal-open { overflow: hidden; }
.cs-modal { display: none; }
.cs-modal.is-open { display: block; }
.cs-modal__overlay {
	position: fixed;
	inset: 0;
	z-index: 99998;
	background: rgba(12, 18, 27, 0.72);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.cs-modal__dialog {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 99999;
	width: min(980px, 92vw);
	max-height: 90vh;
	overflow: auto;
	background: #fff;
	border-radius: 32px;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
	transform: translate(-50%, -50%);
}
.cs-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: var(--cs-ink);
	box-shadow: var(--cs-shadow-soft);
	cursor: pointer;
}
.cs-modal__close svg { width: 20px; height: 20px; }
.cs-modal__close:focus-visible { outline: 2px solid var(--cs-lime); outline-offset: 2px; }
.cs-modal__body { display: grid; grid-template-columns: 1fr 1fr; }
.cs-modal__media { background: var(--cs-paper); }
.cs-modal__media img { width: 100%; height: 100%; max-height: 90vh; object-fit: cover; }
.cs-modal__content { padding: 42px; }
.cs-modal__category {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cs-teal);
}
.cs-modal__title {
	margin: 0 0 16px;
	font-family: var(--cs-font-display);
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
}
.cs-modal__text {
	margin: 0 0 24px;
	font-size: 16px;
	color: var(--cs-muted);
}
.cs-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* ---------------------------------------------------------------- Utilities */
.pagination,
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.pagination .page-numbers,
.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	background: #fff;
	border: 1px solid rgba(28, 36, 49, 0.10);
	border-radius: 14px;
	font-weight: 800;
	color: var(--cs-ink);
}
.pagination .page-numbers.current { background: var(--cs-lime); border-color: var(--cs-lime); }

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* -------------------------------------------------------------- Responsive */
@media (max-width: 1260px) {
	.cs-header__dock { justify-content: space-between; }
	.cs-footer__spotlight,
	.cs-product-detail__story,
	.cs-contact__intro,
	.cs-contact__board,
	.cs-page-hero { grid-template-columns: 1fr; }
	.cs-footer__grid { grid-template-columns: 1fr; }
	.cs-product-detail__facts { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
	.cs-header__nav,
	.cs-header__actions { display: none; }
	.cs-header__toggle { display: flex; }
	.cs-hero__track { height: clamp(540px, 68vh, 680px); }
	.cs-home-meta { margin-top: 22px; }
	.cs-home-meta__grid,
	.cs-hours__inner { grid-template-columns: 1fr; }
	.cs-catalog__toolbar,
	.cs-form__grid,
	.cs-contact__intro-meta,
	.cs-contact__info-list { grid-template-columns: 1fr; }
	.cs-product-detail__hero { grid-template-columns: 1fr; }
	.cs-modal__body { grid-template-columns: 1fr; }
	.cs-modal__media img { max-height: 320px; }
	.cs-contact__map-frame,
	.cs-contact__map-frame iframe { min-height: 420px; }
}

@media (max-width: 720px) {
	.cs-section { padding: 62px 0; }
	.cs-container { padding: 0 20px; }
	.cs-header { padding: 12px 0 10px; }
	.cs-header__surface {
		padding: 12px 14px;
		border-radius: 24px;
	}
	.cs-header__brand .custom-logo { max-height: 72px; }
	.cs-header__title-mark { font-size: 20px; }
	.cs-header__title-meta { font-size: 11px; }
	.cs-hero__frame { border-radius: 0; }
	.cs-hero__track { height: 620px; }
	.cs-hero__content {
		left: 20px;
		right: 20px;
		bottom: 20px;
		padding: 16px 18px;
	}
	.cs-hero__title { font-size: clamp(18px, 7vw, 26px); }
	.cs-hero__nav { display: none; }
	.cs-home-meta__card,
	.cs-featured__shell,
	.cs-page-shell,
	.cs-contact__intro-copy,
	.cs-contact__intro-meta,
	.cs-contact__map-card,
	.cs-contact__info-card,
	.cs-contact__form-card,
	.cs-footer__spotlight,
	.cs-product-detail__content,
	.cs-hours__copy,
	.cs-hours__list,
	.cs-page-hero { border-radius: 28px; }
	.cs-contact__title { max-width: none; }
	.cs-contact__map-frame,
	.cs-contact__map-frame iframe { min-height: 340px; }
	.cs-footer__spotlight { padding: 24px; }
	.cs-modal__content { padding: 30px 26px; }
}

@media (max-width: 560px) {
	.cs-product-card__actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.cs-hero__slide { transition: opacity .4s ease; transform: none; }
	.cs-hero__slide.is-active { transform: none; }
	* { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
