@font-face {
	font-family: "Bricolage Grotesque";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/bricolage-grotesque-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Source Sans 3";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Source Sans 3";
	font-style: italic;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/source-sans-3-latin-italic.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--paper: #f4f6f8;
	--paper-2: #e7ebef;
	--ink: #1c2428;
	--foam: #4a5560;
	--cta: #2f6f6a;
	--cta-ink: #f4f6f8;
	--leather: #6b3f32;
	--line: rgba(28, 36, 40, 0.14);
	--font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
	--font-body: "Source Sans 3", "Segoe UI", sans-serif;
	--wrap: 70rem;
	--space: 1.25rem;
	--pad-radius: 46% 46% 40% 40% / 52% 52% 42% 42%;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.55;
}

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

a {
	color: var(--cta);
	text-underline-offset: 0.15em;
}

a:hover {
	color: var(--ink);
}

:focus-visible {
	outline: 2px solid var(--cta);
	outline-offset: 3px;
}

.skip-link {
	position: absolute;
	left: 0.75rem;
	top: -3rem;
	background: var(--ink);
	color: var(--paper);
	padding: 0.4rem 0.7rem;
	z-index: 100;
}

.skip-link:focus {
	top: 0.75rem;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.wrap {
	width: min(100% - 2rem, var(--wrap));
	margin-inline: auto;
}

.section {
	padding-block: 2.5rem;
	border-top: 1px solid var(--line);
}

h1,
h2,
h3,
.site-brand__name,
.site-footer__brand {
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

h1 {
	font-size: clamp(2rem, 6vw, 3.25rem);
	margin: 0 0 0.75rem;
}

h2 {
	font-size: clamp(1.4rem, 3vw, 1.85rem);
	margin: 0 0 1rem;
}

.lede {
	max-width: 38rem;
	font-size: 1.15rem;
	color: var(--foam);
}

.site-header {
	position: relative;
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 3.75rem;
}

.site-brand__name {
	color: var(--ink);
	text-decoration: none;
	font-size: 1.35rem;
}

.custom-logo {
	max-height: 2.25rem;
	width: auto;
}

.nav-toggle {
	background: transparent;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 1.35rem;
	height: 2px;
	background: var(--ink);
	position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

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

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

.site-nav {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 3.75rem;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	padding: 1rem 1.25rem 1.25rem;
	z-index: 20;
}

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

.site-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.site-nav__list a {
	color: var(--ink);
	text-decoration: none;
	font-weight: 600;
}

.site-nav__phone {
	display: inline-block;
	margin-top: 0.85rem;
	color: var(--cta);
}

.site-nav__more summary {
	font-weight: 600;
	cursor: pointer;
}

.site-nav__more summary::-webkit-details-marker {
	display: none;
}

.site-nav__more ul {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.home-intro {
	padding-block: 2.75rem 2rem;
}

.home-intro .btn {
	margin-right: 0.6rem;
	margin-top: 0.4rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cta);
	color: var(--cta-ink);
	text-decoration: none;
	border: 0;
	padding: 0.8rem 1.15rem;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	border-radius: 0;
}

.btn:hover {
	color: var(--cta-ink);
	background: #255954;
}

.btn--ghost {
	background: transparent;
	color: var(--ink);
	box-shadow: inset 0 0 0 1px var(--ink);
}

.btn--ghost:hover {
	background: var(--ink);
	color: var(--paper);
}

.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.cat-grid,
.pad-grid,
.trust-strip,
.split-copy,
.site-footer__grid,
.product-hero__grid {
	display: grid;
	gap: 1.25rem;
}

.cat-tile {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1.15rem 0;
	border-top: 1px solid var(--line);
	color: inherit;
	text-decoration: none;
}

.cat-tile strong {
	font-family: var(--font-display);
	font-size: 1.35rem;
}

.cat-tile span {
	color: var(--foam);
}

.pad-card {
	display: grid;
	gap: 0.7rem;
}

.pad-card__media {
	background: var(--paper-2);
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.pad-card__media img,
.gallery__stage img {
	width: 78%;
	border-radius: var(--pad-radius);
	object-fit: cover;
	aspect-ratio: 1;
}

.pad-card__placeholder {
	width: 62%;
	aspect-ratio: 1;
	border-radius: var(--pad-radius);
	background: linear-gradient(160deg, #5a6570, #2c3338 55%, var(--leather));
}

.pad-card__material {
	margin: 0;
	color: var(--leather);
	font-size: 0.95rem;
}

.pad-card__title {
	margin: 0;
	font-size: 1.2rem;
}

.pad-card__title a {
	color: inherit;
	text-decoration: none;
}

.pad-card__meta {
	display: flex;
	gap: 0.75rem;
	align-items: baseline;
	margin: 0;
}

.pad-card__price {
	font-weight: 700;
}

.stock {
	color: var(--foam);
}

.stock--out_of_stock {
	color: var(--leather);
}

.trust-strip {
	padding-bottom: 3rem;
}

.trust-strip h2,
.split-copy h2 {
	margin-bottom: 0.4rem;
}

.crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	font-size: 0.95rem;
	margin-bottom: 1.25rem;
	color: var(--foam);
}

.crumbs a {
	color: inherit;
}

.product-hero {
	padding-top: 1.5rem;
	padding-bottom: 2rem;
}

.gallery__stage {
	background: var(--paper-2);
	min-height: 16rem;
	display: grid;
	place-items: center;
	padding: 1.25rem;
}

.gallery__stage img {
	display: none;
}

.gallery__stage img.is-active {
	display: block;
}

.gallery__thumbs {
	display: flex;
	gap: 0.4rem;
	margin-top: 0.6rem;
}

.gallery__thumb {
	border: 0;
	padding: 0;
	background: var(--paper-2);
	cursor: pointer;
	width: 3.4rem;
	opacity: 0.55;
}

.gallery__thumb.is-active,
.gallery__thumb:hover {
	opacity: 1;
}

.gallery__thumb img {
	width: 100%;
	border-radius: var(--pad-radius);
}

.buy-box__offer {
	font-size: 1.15rem;
	color: var(--foam);
	margin-top: 0;
}

.buy-box__price {
	display: flex;
	gap: 0.85rem;
	align-items: baseline;
	font-size: 1.7rem;
	font-family: var(--font-display);
	margin: 0.4rem 0;
}

.buy-box__sku,
.buy-box__rating {
	color: var(--foam);
	margin: 0 0 0.75rem;
}

.buy-box__benefits,
.plain-list,
.variant-list,
.writeup-list,
.review-list,
.site-footer__links,
.faq {
	margin: 0;
	padding: 0;
	list-style: none;
}

.buy-box__benefits li,
.plain-list li,
.variant-list li {
	padding: 0.45rem 0;
	border-top: 1px solid var(--line);
}

.buy-box__trust {
	display: grid;
	gap: 0.35rem;
	margin: 1rem 0;
	color: var(--foam);
}

.lead-form {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
}

.lead-form p {
	margin: 0 0 0.85rem;
}

.lead-form label {
	display: block;
	margin-bottom: 0.2rem;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	background: #fff;
	padding: 0.65rem 0.7rem;
	font: inherit;
	color: inherit;
	border-radius: 0;
}

.lead-form__hp {
	position: absolute;
	left: -9999px;
}

.lead-form__consent label {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}

.lead-form__status.is-error {
	color: var(--leather);
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
}

.spec-table th,
.spec-table td {
	text-align: left;
	padding: 0.65rem 0;
	border-top: 1px solid var(--line);
	vertical-align: top;
}

.spec-table th {
	width: 42%;
	color: var(--foam);
	font-weight: 600;
}

.cta-repeat {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
	justify-content: space-between;
	padding: 1.1rem 0;
	border-top: 1px solid var(--line);
}

.video-frame {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #111;
}

.video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.writeup-list li,
.review {
	padding: 0.85rem 0;
	border-top: 1px solid var(--line);
}

.writeup-list span,
.review__head {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	color: var(--foam);
	margin: 0 0 0.4rem;
}

.review__head strong {
	color: var(--ink);
}

.faq details {
	border-top: 1px solid var(--line);
	padding: 0.7rem 0;
}

.faq summary {
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq details[open] {
	border-left: 3px solid var(--cta);
	padding-left: 0.75rem;
}

.faq details div {
	margin-top: 0.5rem;
	color: var(--foam);
}

.prose > *:first-child {
	margin-top: 0;
}

.prose p,
.prose li {
	max-width: 40rem;
}

.empty-state {
	min-height: 50vh;
}

.search-form {
	display: flex;
	gap: 0.4rem;
	margin-top: 1rem;
}

.search-form label {
	flex: 1;
}

.search-form input[type="search"] {
	width: 100%;
	border: 1px solid var(--line);
	padding: 0.65rem;
	font: inherit;
	background: #fff;
}

.nav-links {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.has-sticky-cta .product {
	padding-bottom: 4.75rem;
}

.sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
	background: var(--paper);
	border-top: 1px solid var(--line);
	z-index: 15;
}

.has-sticky-cta .site-footer {
	padding-bottom: 1rem;
}

.site-footer {
	border-top: 1px solid var(--ink);
	padding: 2.5rem 0 1.5rem;
	background: #eef1f4;
}

.site-footer__brand {
	font-size: 1.4rem;
	margin: 0 0 0.5rem;
}

.site-footer__heading {
	font-size: 1.05rem;
	margin: 0 0 0.5rem;
}

.site-footer a {
	color: inherit;
}

.site-footer__copy {
	margin-top: 2rem;
	color: var(--foam);
}

@media (min-width: 48rem) {
	.nav-toggle {
		display: none;
	}

	.site-nav {
		display: flex;
		position: static;
		border: 0;
		padding: 0;
		align-items: center;
		gap: 1.5rem;
	}

	.site-nav__list {
		display: flex;
		gap: 1.15rem;
	}

	.site-nav__phone {
		margin: 0;
	}

	.site-nav__more {
		position: relative;
	}

	.site-nav__more ul {
		position: absolute;
		top: calc(100% + 0.35rem);
		right: 0;
		z-index: 30;
		min-width: 14rem;
		max-height: 70vh;
		overflow: auto;
		margin: 0;
		padding: 0.75rem 1rem;
		background: var(--paper);
		border: 1px solid var(--line);
	}

	.pad-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1.5rem;
	}

	.trust-strip,
	.split-copy,
	.site-footer__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	.split-copy {
		grid-template-columns: 1fr 1fr;
	}

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

	.product-hero__grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 2.5rem;
		align-items: start;
	}

	.sticky-cta {
		display: none;
	}

	.has-sticky-cta .product {
		padding-bottom: 0;
	}
}

@media (min-width: 70rem) {
	.pad-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}
