@font-face {
	font-display: swap;
	font-family: "Chillax";
	font-style: normal;
	font-weight: 200;
	src: url("../fonts/Chillax-Extralight.otf") format("opentype");
}

@font-face {
	font-display: swap;
	font-family: "Chillax";
	font-style: normal;
	font-weight: 300;
	src: url("../fonts/Chillax-Light.otf") format("opentype");
}

@font-face {
	font-display: swap;
	font-family: "Chillax";
	font-style: normal;
	font-weight: 500;
	src: url("../fonts/Chillax-Medium.otf") format("opentype");
}

:root {
	--color-ink: #15182f;
	--color-blue: #1f2b58;
	--color-blue-deep: #0f1530;
	--color-blue-soft: #f0f4fb;
	--color-honey: #d5a238;
	--color-honey-soft: #f4dfaa;
	--color-cream: #fffdf8;
	--color-paper: #ffffff;
	--color-line: #e3e1d8;
	--color-muted: #666a78;
	--shadow-soft: 0 20px 45px rgba(15, 21, 48, 0.13);
	--header-height: 74px;
	--radius: 8px;
	--inner: min(1120px, calc(100vw - 40px));
	font-family: "Chillax", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--color-cream);
	color: var(--color-ink);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.65;
	margin: 0;
}

body.admin-bar .site-header {
	top: 32px;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

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

button,
input,
select,
textarea {
	font: inherit;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	left: 16px;
	top: 16px;
	width: auto;
	z-index: 1000;
}

.site-header {
	background: rgba(255, 253, 248, 0.93);
	border-bottom: 1px solid rgba(31, 43, 88, 0.12);
	backdrop-filter: blur(12px);
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header__inner {
	align-items: center;
	display: flex;
	height: var(--header-height);
	justify-content: space-between;
	margin: 0 auto;
	width: var(--inner);
}

.site-header__status {
	border: 1px solid rgba(213, 162, 56, 0.45);
	border-radius: 999px;
	color: var(--color-blue);
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1;
	margin-left: 16px;
	margin-right: auto;
	padding: 7px 10px;
	white-space: nowrap;
}

.brand {
	align-items: center;
	display: inline-flex;
	gap: 12px;
	text-decoration: none;
}

.brand--logo .custom-logo-link {
	display: inline-flex;
}

.brand--logo .custom-logo {
	max-height: 52px;
	width: auto;
}

.brand__mark {
	background: #fff url("../images/isatis-illustration.webp") center / 180px auto no-repeat;
	border: 1px solid rgba(31, 43, 88, 0.18);
	border-radius: var(--radius);
	display: inline-flex;
	height: 42px;
	width: 42px;
}

.brand__text {
	display: grid;
	line-height: 1.1;
}

.brand__name {
	color: var(--color-blue-deep);
	font-size: 1.18rem;
	font-weight: 300;
	letter-spacing: 0;
}

.brand__tagline {
	color: var(--color-muted);
	font-size: 0.74rem;
}

.site-menu {
	align-items: center;
	display: flex;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-menu a {
	color: var(--color-ink);
	font-size: 0.94rem;
	font-weight: 500;
	text-decoration: none;
}

.site-menu a:hover,
.site-menu a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
	color: var(--color-honey);
}

.nav-toggle {
	align-items: center;
	background: transparent;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	display: none;
	height: 42px;
	justify-content: center;
	padding: 0;
	width: 42px;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	background: var(--color-ink);
	content: "";
	display: block;
	height: 2px;
	width: 18px;
}

.nav-toggle__bar {
	position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
	left: 0;
	position: absolute;
}

.nav-toggle__bar::before {
	top: -6px;
}

.nav-toggle__bar::after {
	top: 6px;
}

.hero {
	align-items: center;
	background:
		linear-gradient(90deg, rgba(15, 21, 48, 0.86), rgba(15, 21, 48, 0.48), rgba(15, 21, 48, 0.18)),
		var(--hero-image) center / cover;
	color: var(--color-paper);
	display: grid;
	min-height: min(790px, 82svh);
	padding: clamp(72px, 10vw, 132px) max(20px, calc((100vw - 1120px) / 2));
}

.hero__content {
	max-width: 760px;
}

.eyebrow {
	color: var(--color-honey);
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.page-content h1 {
	font-size: clamp(3rem, 8vw, 7rem);
	font-weight: 200;
	letter-spacing: 0;
	line-height: 0.96;
	margin: 0;
}

.hero__subtitle {
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(1.2rem, 2.5vw, 2rem);
	line-height: 1.22;
	margin: 12px 0 0;
	max-width: 520px;
}

.hero__lead {
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	margin: 24px 0 0;
	max-width: 620px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	display: inline-flex;
	font-weight: 500;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--color-honey);
	color: #12100b;
}

.button--primary:hover,
.button--primary:focus-visible {
	background: var(--color-honey-soft);
}

.button--secondary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--color-blue);
	border-radius: var(--radius);
	color: var(--color-paper);
	font-weight: 500;
}

.button--secondary:hover,
.button--secondary:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--color-blue-deep);
	color: var(--color-paper);
}

.button--light {
	background: var(--color-paper);
	color: var(--color-blue-deep);
}

.button--light:hover,
.button--light:focus-visible {
	background: var(--color-honey-soft);
	color: #12100b;
}

.button--ghost {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.56);
	color: var(--color-paper);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.2);
}

.hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 34px 0 0;
	padding: 0;
}

.hero__facts li {
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: var(--radius);
	color: rgba(255, 255, 255, 0.9);
	padding: 8px 10px;
}

.section {
	padding: clamp(58px, 9vw, 104px) 0;
}

.section--intro,
.section--tinted {
	background: var(--color-paper);
	border-bottom: 1px solid var(--color-line);
	border-top: 1px solid var(--color-line);
}

.section--tinted {
	background: var(--color-blue-soft);
}
.section--galerie {
	background: var(--color-paper);
}

.section--map {
	background: var(--color-paper);
	border-bottom: 1px solid var(--color-line);
	border-top: 1px solid var(--color-line);
}

.section--order {
	background: var(--color-blue-deep);
	color: var(--color-paper);
}

.section__inner {
	margin: 0 auto;
	width: var(--inner);
}

.split {
	align-items: start;
	display: grid;
	gap: clamp(28px, 6vw, 72px);
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split--reverse {
	align-items: center;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.section h2 {
	font-size: clamp(2rem, 4.4vw, 3.6rem);
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 0;
}

.section p {
	margin: 0;
}

.lead-stack {
	color: var(--color-muted);
	display: grid;
	gap: 14px;
	font-size: 1.04rem;
}

.brand-panel {
	border-left: 2px solid var(--color-honey);
	display: grid;
	gap: 20px;
	padding-left: clamp(18px, 4vw, 34px);
}

.brand-panel img {
	background: var(--color-paper);
	max-height: 180px;
	object-fit: contain;
	object-position: left center;
	width: 100%;
}

.section-heading {
	display: grid;
	gap: 12px;
	margin-bottom: 28px;
	max-width: 760px;
}

.section-heading p:not(.eyebrow) {
	color: var(--color-muted);
}

.section-heading--row {
	align-items: end;
	display: flex;
	justify-content: space-between;
	max-width: none;
}

.text-link {
	color: var(--color-blue);
	font-weight: 500;
}

.section-action {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.order-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.product-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
	background: var(--color-paper);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	display: grid;
	overflow: hidden;
}

.product-card__media {
	aspect-ratio: 4 / 3;
	background: var(--color-blue-soft);
	margin: 0;
	overflow: hidden;
}

.product-card__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.product-card__body {
	display: grid;
	gap: 12px;
	padding: 22px;
}

.product-card h3 {
	font-size: 1.45rem;
	font-weight: 500;
	line-height: 1.16;
	margin: 0;
}

.product-card p {
	color: var(--color-muted);
}

.product-card__kicker {
	color: var(--color-honey) !important;
	font-size: 0.76rem;
	font-weight: 500;
	text-transform: uppercase;
}

.product-card__price {
	color: var(--color-ink) !important;
	font-weight: 500;
	margin-top: 4px !important;
}

.sales-map-block {
	display: grid;
	gap: 18px;
}

.sales-map {
	background: var(--color-blue-soft);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	height: clamp(320px, 42vw, 460px);
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.sales-map--unavailable {
	align-items: center;
	box-shadow: none;
	color: var(--color-muted);
	display: flex;
	justify-content: center;
	padding: 24px;
	text-align: center;
}

.sales-map .leaflet-popup-content {
	display: grid;
	gap: 4px;
	line-height: 1.35;
	margin: 12px 14px;
}

.sales-map .leaflet-popup-content span,
.sales-map .leaflet-popup-content a {
	display: block;
}

.sales-map .leaflet-popup-content a {
	color: var(--color-blue);
	font-weight: 500;
}

.sales-grid,
.service-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sales-card,
.service-card {
	background: var(--color-cream);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	display: grid;
	gap: 10px;
	padding: 22px;
}

.sales-card {
	border-top: 3px solid var(--color-honey);
}

.service-card {
	background: var(--color-paper);
}

.sales-card h3,
.service-card h3 {
	font-size: 1.28rem;
	font-weight: 500;
	line-height: 1.18;
	margin: 0;
}

.sales-card p,
.service-card p {
	color: var(--color-muted);
}

.sales-card__address {
	color: var(--color-ink) !important;
	font-weight: 500;
}

.sales-card__content {
	color: var(--color-muted);
	display: grid;
	gap: 8px;
}

.sales-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.sales-card__links a {
	color: var(--color-blue);
	font-weight: 500;
	text-decoration: none;
}

.sales-card__meta {
	color: var(--color-honey) !important;
	font-size: 0.78rem;
	font-weight: 500;
	text-transform: uppercase;
}

.image-panel {
	aspect-ratio: 4 / 3;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.image-panel img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.content-panel {
	display: grid;
	gap: 20px;
}

.content-panel p {
	color: var(--color-muted);
}

.check-list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.check-list li {
	padding-left: 28px;
	position: relative;
}

.check-list li::before {
	background: var(--color-honey);
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 0.75em;
	width: 8px;
}

.photo-strip,
.gallery-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-strip figure,
.gallery-grid figure {
	aspect-ratio: 4 / 3;
	background: var(--color-blue-soft);
	border-radius: var(--radius);
	margin: 0;
	overflow: hidden;
}

.photo-strip img,
.gallery-grid img {
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
	width: 100%;
}

.photo-strip figure:hover img,
.gallery-grid figure:hover img {
	transform: scale(1.03);
}

.order-card {
	background: var(--color-paper);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	color: var(--color-ink);
	padding: clamp(20px, 4vw, 32px);
}

.order-form {
	display: grid;
	gap: 16px;
}

.form-row {
	display: grid;
	gap: 6px;
}

.form-row label {
	font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
	background: #fffdfa;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	color: var(--color-ink);
	min-height: 44px;
	padding: 10px 12px;
	width: 100%;
}

.form-row textarea {
	resize: vertical;
}

.form-row--hidden {
	left: -9999px;
	position: absolute;
}

.form-notice {
	border-radius: var(--radius);
	font-weight: 500;
	margin-bottom: 16px;
	padding: 12px;
}

.form-notice--success {
	background: #f2f7e4;
	color: #2c3b16;
}

.form-notice--error {
	background: #fee9df;
	color: #82351f;
}

.page-hero {
	background: var(--color-blue-deep);
	color: var(--color-paper);
	padding: clamp(64px, 12vw, 128px) 0;
}

.page-hero--photo {
	background:
		linear-gradient(90deg, rgba(15, 21, 48, 0.86), rgba(15, 21, 48, 0.42)),
		var(--page-hero-image) center / cover;
}

.page-hero p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.86);
	max-width: 660px;
}

.entry-content {
	max-width: 920px;
}

.entry-content > * + * {
	margin-top: 1.1em;
}

.gallery-content .wp-block-gallery {
	gap: 14px;
}

.archive-list {
	display: grid;
	gap: 24px;
}

.archive-item {
	background: var(--color-paper);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	padding: 18px;
}

.archive-item h2 {
	font-size: 1.4rem;
	font-weight: 500;
	margin: 0 0 8px;
}

.woocommerce-page-shell {
	max-width: 1180px;
}

.woocommerce-page-shell .woocommerce-products-header,
.woocommerce-page-shell .woocommerce-notices-wrapper,
.woocommerce-page-shell .woocommerce-result-count,
.woocommerce-page-shell .woocommerce-ordering {
	margin-bottom: 18px;
}

.woocommerce-page-shell .woocommerce-products-header__title,
.woocommerce-page-shell .product_title,
.woocommerce-page-shell .entry-title,
.wp-block-woocommerce-coming-soon h1 {
	color: var(--color-blue-deep);
	font-size: clamp(2.1rem, 4.4vw, 3.8rem);
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0 0 18px;
}

.woocommerce-page-shell .woocommerce-result-count {
	color: var(--color-muted);
	float: none;
}

.woocommerce-page-shell .woocommerce-ordering {
	float: none;
}

.woocommerce-page-shell .woocommerce-ordering select,
.woocommerce-page-shell .quantity .qty {
	background: var(--color-paper);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	color: var(--color-ink);
	min-height: 44px;
	padding: 8px 12px;
}

.woocommerce-slot ul.products,
.woocommerce-page-shell ul.products,
.woocommerce .woocommerce-page-shell ul.products {
	clear: both;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 28px 0 0;
	padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	content: none;
}

.woocommerce ul.products li.product {
	background: var(--color-paper);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: 0 12px 28px rgba(15, 21, 48, 0.08);
	display: flex;
	flex-direction: column;
	float: none;
	margin: 0;
	min-height: 100%;
	overflow: hidden;
	padding: 0;
	width: auto;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	color: inherit;
	display: grid;
	gap: 0;
	text-decoration: none;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 4 / 3;
	background: var(--color-blue-soft);
	height: auto;
	margin: 0;
	object-fit: cover;
	width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--color-ink);
	font-size: 1.18rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0;
	min-height: 2.9em;
	overflow-wrap: anywhere;
	padding: 18px 18px 8px;
}

.woocommerce ul.products li.product .price {
	color: var(--color-blue);
	font-weight: 500;
	margin: auto 18px 0;
	padding-top: 6px;
}

.woocommerce ul.products li.product .button {
	align-self: flex-start;
	margin: 18px;
}

.woocommerce span.onsale {
	background: var(--color-honey);
	border-radius: 999px;
	color: #12100b;
	font-weight: 500;
	left: 14px;
	line-height: 1;
	min-height: 0;
	min-width: 0;
	padding: 8px 10px;
	top: 14px;
}

.woocommerce-page-shell div.product {
	background: transparent;
	border: 0;
	box-shadow: none;
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 1.08fr);
	padding: 0;
}

.woocommerce-page-shell div.product::before,
.woocommerce-page-shell div.product::after {
	content: none;
	display: none;
}

.woocommerce-page-shell div.product > * {
	min-width: 0;
}

.woocommerce-page-shell div.product div.images {
	align-self: start;
	margin: 0;
	max-width: none;
	position: relative;
	width: 100% !important;
}

.woocommerce-page-shell div.product div.summary {
	align-self: start;
	float: none;
	margin: 0;
	padding-top: clamp(4px, 1vw, 14px);
	width: 100% !important;
}

.woocommerce-page-shell div.product .woocommerce-product-gallery__wrapper {
	margin: 0;
}

.woocommerce-page-shell div.product div.images .woocommerce-product-gallery__image {
	background: var(--color-paper);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.woocommerce-page-shell div.product div.images img {
	aspect-ratio: 1 / 1;
	height: auto;
	margin: 0;
	object-fit: cover;
	width: 100%;
}

.woocommerce-page-shell div.product .product_title {
	font-size: clamp(2.45rem, 5vw, 4.8rem);
	hyphens: auto;
	line-height: 0.98;
	margin-bottom: 14px;
	overflow-wrap: anywhere;
}

.woocommerce-page-shell div.product p.price,
.woocommerce-page-shell div.product span.price {
	color: var(--color-blue);
	display: block;
	font-size: 1.45rem;
	font-weight: 500;
	margin: 0 0 18px;
}

.woocommerce-page-shell .woocommerce-product-details__short-description,
.woocommerce-page-shell .woocommerce-Tabs-panel {
	color: var(--color-muted);
}

.woocommerce-page-shell .woocommerce-product-details__short-description {
	font-size: 1.05rem;
	line-height: 1.65;
	max-width: 58ch;
}

.woocommerce-page-shell .cart {
	border-top: 1px solid var(--color-line);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
	padding-top: 22px;
}

.woocommerce-page-shell .woocommerce-tabs {
	grid-column: 2;
	margin-top: clamp(12px, 2vw, 24px);
}

.woocommerce-page-shell .woocommerce-tabs ul.tabs {
	background: color-mix(in srgb, var(--color-paper) 82%, #fff 18%);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-sm);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
	padding: 6px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	content: none;
}

.woocommerce-page-shell .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
}

.woocommerce-page-shell .woocommerce-tabs ul.tabs li a {
	border-radius: calc(var(--radius-sm) - 3px);
	color: var(--color-muted);
	font-weight: 500;
	line-height: 1.2;
	padding: 10px 13px;
}

.woocommerce-page-shell .woocommerce-tabs ul.tabs li.active a {
	background: var(--color-honey-soft);
	color: var(--color-blue-deep);
}

.woocommerce-page-shell .woocommerce-Tabs-panel {
	background: var(--color-paper);
	border: 1px solid var(--color-line);
	border-left: 4px solid var(--color-honey);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	line-height: 1.65;
	margin: 0 !important;
	padding: clamp(18px, 3vw, 28px);
}

.woocommerce-page-shell .woocommerce-Tabs-panel h2 {
	color: var(--color-blue-deep);
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 12px;
}

.woocommerce-page-shell .woocommerce-Tabs-panel p:last-child {
	margin-bottom: 0;
}

.woocommerce-page-shell .woocommerce-Reviews-title,
.woocommerce-page-shell .comment-reply-title {
	color: var(--color-blue-deep);
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 14px;
}

.woocommerce-page-shell .comment-form {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}

.woocommerce-page-shell .comment-form p {
	margin: 0;
}

.woocommerce-page-shell .comment-form label {
	color: var(--color-blue-deep);
	display: block;
	font-size: 0.95rem;
	font-weight: 500;
	margin-bottom: 7px;
}

.woocommerce-page-shell .comment-form input[type="text"],
.woocommerce-page-shell .comment-form input[type="email"],
.woocommerce-page-shell .comment-form textarea,
.woocommerce-page-shell .comment-form select {
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-sm);
	color: var(--color-ink);
	font: inherit;
	padding: 11px 12px;
	width: 100%;
}

.woocommerce-page-shell .comment-form textarea {
	min-height: 132px;
	resize: vertical;
}

.woocommerce-page-shell table.shop_table,
.woocommerce-page-shell .cart_totals,
.woocommerce-page-shell .woocommerce-checkout-review-order {
	background: var(--color-paper);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	overflow: hidden;
}

.woocommerce-page-shell .woocommerce-message,
.woocommerce-page-shell .woocommerce-info,
.woocommerce-page-shell .woocommerce-error {
	background: var(--color-blue-soft);
	border-top-color: var(--color-honey);
	color: var(--color-ink);
}

.wp-block-woocommerce-coming-soon {
	background: var(--color-paper);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	margin: 0 auto;
	max-width: 820px;
	padding: clamp(32px, 7vw, 72px);
	text-align: center;
}

.wp-block-woocommerce-coming-soon p {
	color: var(--color-muted);
	margin-left: auto;
	margin-right: auto;
	max-width: 620px;
}

.site-footer {
	background: var(--color-blue-deep);
	color: rgba(255, 255, 255, 0.78);
	padding: 42px 0;
}

.site-footer__inner {
	display: grid;
	gap: 28px;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	margin: 0 auto;
	width: var(--inner);
}

.site-footer a {
	color: var(--color-paper);
	display: block;
	text-decoration: none;
}

.site-footer__social {
	margin-top: 10px;
}

.site-footer__social span {
	color: rgba(255, 255, 255, 0.7);
	display: block;
	font-size: 0.92rem;
	margin-top: 2px;
}

.site-footer__status {
	border: 1px solid rgba(244, 223, 170, 0.42);
	border-radius: 999px;
	color: var(--color-honey-soft);
	display: inline-flex;
	font-size: 0.86rem;
	line-height: 1;
	margin-top: 14px;
	padding: 7px 10px;
}

.site-footer__brand,
.site-footer__label {
	color: var(--color-paper);
	font-weight: 500;
	margin: 0 0 8px;
}

.site-footer p {
	margin: 0;
}

.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__menu li + li {
	margin-top: 6px;
}

@media (max-width: 900px) {
	:root {
		--inner: min(100vw - 28px, 720px);
	}

	body.admin-bar .site-header {
		top: 46px;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		background: var(--color-paper);
		border: 1px solid var(--color-line);
		border-radius: var(--radius);
		box-shadow: var(--shadow-soft);
		display: none;
		padding: 12px;
		position: absolute;
		right: 14px;
		top: calc(var(--header-height) + 8px);
		width: min(280px, calc(100vw - 28px));
	}

	.site-nav.is-open {
		display: block;
	}

	.site-menu {
		align-items: stretch;
		display: grid;
		gap: 4px;
	}

	.site-menu a {
		border-radius: var(--radius);
		display: block;
		padding: 10px;
	}

	.hero {
		min-height: min(720px, 82svh);
		padding-bottom: 64px;
		padding-top: 64px;
	}

	.split,
	.split--reverse,
	.product-grid,
	.sales-grid,
	.service-grid,
	.photo-strip,
	.gallery-grid,
	.woocommerce-slot ul.products,
	.woocommerce-page-shell ul.products,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.woocommerce-page-shell div.product {
		grid-template-columns: 1fr;
	}

	.woocommerce-page-shell div.product div.summary {
		order: 1;
		padding-top: 0;
	}

	.woocommerce-page-shell div.product div.images {
		margin: 0;
		max-width: min(520px, 100%);
		order: 2;
		position: static;
	}

	.woocommerce-page-shell div.product div.images img {
		max-height: 420px;
		object-fit: cover;
	}

	.woocommerce-page-shell div.product .product_title {
		font-size: clamp(2.05rem, 8vw, 3.1rem);
	}

	.woocommerce-page-shell .woocommerce-tabs {
		grid-column: auto;
		margin-top: 0;
		order: 3;
	}

	.woocommerce-page-shell .woocommerce-tabs ul.tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: thin;
	}

	.woocommerce-page-shell .woocommerce-tabs ul.tabs li {
		flex: 0 0 auto;
	}

	.section-heading--row {
		align-items: start;
		display: grid;
		gap: 16px;
	}
}

@media (max-width: 560px) {
	.brand {
		gap: 10px;
	}

	.brand__mark {
		height: 38px;
		width: 38px;
	}

	.brand__tagline {
		display: none;
	}

	.site-header__status {
		font-size: 0.72rem;
		margin-left: 10px;
		padding: 6px 8px;
	}

	.hero h1,
	.page-hero h1,
	.page-content h1 {
		font-size: clamp(2.7rem, 16vw, 4.6rem);
	}

	.hero__facts {
		display: grid;
	}

	.hero__actions,
	.button,
	.woocommerce-page-shell .cart .button {
		width: 100%;
	}

	.woocommerce-page-shell div.product div.images {
		max-width: 100%;
	}

	.woocommerce-page-shell div.product div.images img {
		max-height: 360px;
	}

	.woocommerce-page-shell .woocommerce-Tabs-panel {
		padding: 18px;
	}

	.woocommerce-page-shell .cart {
		display: grid;
	}

	.woocommerce-page-shell .quantity .qty {
		width: 100%;
	}

	.section {
		padding: 52px 0;
	}

	.brand-panel {
		padding-left: 18px;
	}
}
