:root {
	--color-paper: #f4efe7;
	--color-paper-deep: #ebe2d6;
	--color-white: #fffdf9;
	--color-ink: #211c19;
	--color-ink-soft: #655c56;
	--color-line: #d9cdc0;
	--color-clay: #a53f24;
	--color-clay-dark: #7e2d18;
	--color-clay-light: #d9825f;
	--color-moss: #536149;
	--color-sand: #d3b485;
	--color-success: #2f6948;
	--color-error: #a72b24;
	--font-display: Georgia, "Times New Roman", serif;
	--font-body: "Segoe UI", Arial, sans-serif;
	--container: 1240px;
	--gutter: clamp(20px, 4vw, 40px);
	--section-space: clamp(76px, 10vw, 136px);
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 28px;
	--shadow-card: 0 16px 48px rgba(69, 48, 35, 0.08);
	--shadow-float: 0 20px 60px rgba(31, 22, 17, 0.16);
	--focus: 0 0 0 3px rgba(165, 63, 36, 0.32);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

svg {
	display: block;
}

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: none;
	box-shadow: var(--focus);
}

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

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 999;
	transform: translateY(-150%);
	padding: 12px 18px;
	border-radius: var(--radius-sm);
	background: var(--color-ink);
	color: var(--color-white);
	text-decoration: none;
	transition: transform 180ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.container {
	width: min(100% - (2 * var(--gutter)), var(--container));
	margin-inline: auto;
}

.section {
	padding-block: var(--section-space);
}

.eyebrow {
	margin: 0 0 16px;
	color: var(--color-clay);
	font-size: 0.75rem;
	font-weight: 750;
	letter-spacing: 0.13em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eyebrow--light {
	color: #e5b195;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.06;
}

h1 {
	font-size: clamp(2.75rem, 6vw, 5.45rem);
}

h2 {
	font-size: clamp(2.15rem, 4.4vw, 4rem);
}

h3 {
	font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--primary {
	background: var(--color-clay);
	color: var(--color-white);
}

.button--primary:hover {
	background: var(--color-clay-dark);
}

.button--outline {
	border-color: var(--color-ink);
	background: transparent;
	color: var(--color-ink);
}

.button--outline:hover {
	background: var(--color-ink);
	color: var(--color-white);
}

.button--dark {
	background: var(--color-ink);
	color: var(--color-white);
}

.button--dark:hover {
	background: var(--color-clay);
}

.button--cream {
	background: var(--color-white);
	color: var(--color-ink);
}

.button--cream:hover {
	background: #f4d7c5;
}

.button--small {
	min-height: 44px;
	padding: 10px 18px;
	font-size: 0.84rem;
}

.button--full {
	width: 100%;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-clay);
	font-weight: 700;
	text-decoration: none;
}

.text-link span {
	transition: transform 180ms ease;
}

.text-link:hover span {
	transform: translateX(4px);
}

.text-link--strong {
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
}

.site-topbar {
	background: var(--color-ink);
	color: rgba(255, 253, 249, 0.78);
	font-size: 0.78rem;
}

.site-topbar__inner {
	display: flex;
	min-height: 34px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.site-topbar p {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	border-bottom: 1px solid rgba(85, 65, 54, 0.12);
	background: rgba(244, 239, 231, 0.96);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

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

.site-header__inner {
	display: grid;
	min-height: 78px;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
	color: var(--color-ink);
	text-decoration: none;
}

.site-brand__text {
	display: flex;
	flex-direction: column;
}

.site-brand__text strong {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1;
}

.site-brand__text small {
	margin-top: 5px;
	color: var(--color-ink-soft);
	font-size: 0.62rem;
	letter-spacing: 0.04em;
	line-height: 1.1;
	text-transform: uppercase;
}

.site-brand__logo {
	width: auto;
	max-width: 210px;
	height: 52px;
	object-fit: contain;
}

.brand-mark {
	display: grid;
	width: 45px;
	height: 38px;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 3px;
	transform: skewY(-4deg);
}

.brand-mark span {
	border-radius: 2px;
	background: var(--color-clay);
}

.brand-mark span:nth-child(1) {
	grid-column: span 2;
}

.brand-mark span:nth-child(3) {
	grid-column: span 2;
}

.brand-mark span:nth-child(5) {
	display: none;
}

.primary-navigation {
	justify-self: center;
}

.menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.2vw, 34px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu a {
	display: flex;
	min-height: 44px;
	align-items: center;
	color: var(--color-ink-soft);
	font-size: 0.85rem;
	font-weight: 650;
	text-decoration: none;
}

.menu a:hover,
.menu .current-menu-item > a {
	color: var(--color-clay);
}

.site-header__contact {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
}

.site-header__phone {
	font-size: 0.93rem;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
}

.site-header__cta {
	color: var(--color-clay);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.4;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid var(--color-line);
	border-radius: 50%;
	background: transparent;
	color: var(--color-ink);
	cursor: pointer;
}

.menu-toggle__lines {
	display: grid;
	width: 19px;
	gap: 4px;
}

.menu-toggle__lines span {
	width: 100%;
	height: 1.5px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
	overflow: hidden;
	padding-block: clamp(44px, 7vw, 90px) clamp(70px, 8vw, 110px);
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
	align-items: center;
	gap: clamp(48px, 7vw, 100px);
}

.hero__content {
	position: relative;
	z-index: 2;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 28px;
}

.hero__lead {
	max-width: 640px;
	margin-bottom: 32px;
	color: var(--color-ink-soft);
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
	line-height: 1.65;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 38px;
}

.hero__facts {
	display: grid;
	gap: 12px;
	padding: 24px 0 0;
	margin: 0;
	border-top: 1px solid var(--color-line);
	list-style: none;
}

.hero__facts li {
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--color-ink-soft);
	font-size: 0.86rem;
}

.hero__facts svg {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	padding: 4px;
	border-radius: 50%;
	background: rgba(165, 63, 36, 0.1);
	color: var(--color-clay);
}

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

.hero__visual {
	position: relative;
}

.hero__visual::before {
	position: absolute;
	inset: -7% -24% 13% 27%;
	z-index: -1;
	border-radius: 48% 0 0 52%;
	background: var(--color-paper-deep);
	content: "";
}

.hero__image-frame {
	overflow: hidden;
	border-radius: 50% 50% 18px 18px;
	box-shadow: var(--shadow-card);
}

.hero__image-frame img {
	width: 100%;
	aspect-ratio: 1 / 1.08;
	object-fit: cover;
}

.hero__note {
	position: absolute;
	right: -16px;
	bottom: 34px;
	display: flex;
	width: min(360px, 82%);
	align-items: center;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: var(--radius-md);
	background: var(--color-white);
	box-shadow: var(--shadow-float);
}

.hero__note-icon {
	display: grid;
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: rgba(165, 63, 36, 0.1);
	color: var(--color-clay);
}

.hero__note-icon svg {
	width: 24px;
	height: 24px;
}

.hero__note p {
	margin: 0;
}

.hero__note strong,
.hero__note span {
	display: block;
}

.hero__note strong {
	font-family: var(--font-display);
	font-size: 1rem;
	line-height: 1.2;
}

.hero__note span {
	margin-top: 4px;
	color: var(--color-ink-soft);
	font-size: 0.7rem;
	line-height: 1.45;
}

.proof-strip {
	border-block: 1px solid var(--color-line);
	background: rgba(255, 253, 249, 0.45);
}

.proof-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-strip__item {
	display: flex;
	min-height: 118px;
	align-items: center;
	gap: 16px;
	padding: 22px clamp(16px, 2.2vw, 30px);
	border-right: 1px solid var(--color-line);
}

.proof-strip__item:first-child {
	padding-left: 0;
}

.proof-strip__item:last-child {
	padding-right: 0;
	border-right: 0;
}

.proof-strip__number {
	color: var(--color-clay);
	font-family: var(--font-display);
	font-size: 1.5rem;
}

.proof-strip p {
	margin: 0;
}

.proof-strip strong,
.proof-strip p span {
	display: block;
}

.proof-strip strong {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
}

.proof-strip p span {
	margin-top: 5px;
	color: var(--color-ink-soft);
	font-size: 0.74rem;
	line-height: 1.4;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
	align-items: end;
	gap: clamp(32px, 7vw, 100px);
	margin-bottom: clamp(40px, 6vw, 70px);
}

.section-heading h2 {
	max-width: 820px;
	margin-bottom: 0;
}

.section-heading > p {
	margin-bottom: 5px;
	color: var(--color-ink-soft);
	font-size: 0.94rem;
}

.section-heading--center {
	display: block;
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.section-heading--center > p {
	max-width: 560px;
	margin: 20px auto 0;
}

.selection {
	background: var(--color-white);
}

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

.selection-card {
	position: relative;
	min-height: 420px;
	overflow: hidden;
	padding: clamp(28px, 3vw, 42px);
	border-radius: var(--radius-lg);
	background: var(--color-paper);
}

.selection-card::after {
	position: absolute;
	right: -52px;
	bottom: -86px;
	width: 220px;
	height: 220px;
	border: 28px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	content: "";
}

.selection-card--clay {
	background: #a64b31;
	color: var(--color-white);
}

.selection-card--sand {
	background: #d7bd92;
	color: #30251f;
}

.selection-card--charcoal {
	background: #30322f;
	color: var(--color-white);
}

.selection-card__icon {
	display: grid;
	width: 66px;
	height: 66px;
	place-items: center;
	margin-bottom: 54px;
	border: 1px solid currentColor;
	border-radius: 50%;
	opacity: 0.85;
}

.selection-card__icon svg {
	width: 32px;
	height: 32px;
}

.selection-card__label {
	margin-bottom: 10px;
	font-size: 0.73rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	opacity: 0.72;
	text-transform: uppercase;
}

.selection-card h3 {
	margin-bottom: 14px;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.selection-card > p:not(.selection-card__label) {
	max-width: 370px;
	margin-bottom: 28px;
	font-size: 0.88rem;
	opacity: 0.82;
}

.selection-card a {
	position: absolute;
	bottom: 38px;
	left: clamp(28px, 3vw, 42px);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.84rem;
	font-weight: 750;
	text-decoration: none;
}

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

.section-heading--catalog > p {
	padding: 18px;
	border-left: 3px solid var(--color-clay);
	background: rgba(255, 253, 249, 0.62);
	font-size: 0.82rem;
}

.catalog-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: -16px 0 34px;
}

.catalog-filter__button {
	min-height: 44px;
	padding: 8px 17px;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: transparent;
	color: var(--color-ink-soft);
	cursor: pointer;
	font-size: 0.8rem;
	font-weight: 700;
}

.catalog-filter__button:hover,
.catalog-filter__button.is-active {
	border-color: var(--color-ink);
	background: var(--color-ink);
	color: var(--color-white);
}

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

.product-card {
	overflow: hidden;
	border: 1px solid rgba(90, 68, 55, 0.12);
	border-radius: var(--radius-md);
	background: var(--color-white);
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}

.product-card[hidden] {
	display: none;
}

.product-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--color-paper-deep);
}

.product-card__media img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 400ms ease;
}

.product-card:hover .product-card__media img {
	transform: scale(1.035);
}

.product-card__tag {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(33, 28, 25, 0.9);
	color: var(--color-white);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.product-card__body {
	padding: 22px;
}

.product-card__eyebrow {
	margin-bottom: 8px;
	color: var(--color-clay);
	font-size: 0.66rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.product-card h3 {
	margin-bottom: 12px;
	font-size: 1.4rem;
}

.product-card h3 a {
	text-decoration: none;
}

.product-card h3 a:hover {
	color: var(--color-clay);
}

.product-card__benefit {
	min-height: 3.9em;
	margin-bottom: 22px;
	color: var(--color-ink-soft);
	font-size: 0.78rem;
	line-height: 1.55;
}

.product-card__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	padding-top: 18px;
	border-top: 1px solid var(--color-line);
}

.product-card__price {
	margin: 0;
}

.product-card__price span,
.product-card__price strong {
	display: block;
}

.product-card__price span {
	color: var(--color-ink-soft);
	font-size: 0.65rem;
	line-height: 1.2;
}

.product-card__price strong {
	margin-top: 4px;
	font-size: 0.9rem;
	line-height: 1.2;
}

.catalog-empty {
	padding: 48px;
	border: 1px dashed var(--color-line);
	border-radius: var(--radius-lg);
	text-align: center;
}

.catalog-note {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 36px;
	padding: 24px 28px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: rgba(255, 253, 249, 0.55);
}

.catalog-note > div {
	display: flex;
	align-items: center;
	gap: 14px;
}

.catalog-note svg {
	width: 32px;
	height: 32px;
	flex: 0 0 auto;
	color: var(--color-clay);
}

.catalog-note p {
	margin: 0;
}

.catalog-note p strong,
.catalog-note p span {
	display: block;
}

.catalog-note p strong {
	font-family: var(--font-display);
	font-size: 1.08rem;
}

.catalog-note p span {
	margin-top: 3px;
	color: var(--color-ink-soft);
	font-size: 0.78rem;
}

.project-cta {
	padding-block: 0;
	background: var(--color-paper);
}

.project-cta__box {
	position: relative;
	display: grid;
	overflow: hidden;
	grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
	align-items: center;
	gap: 40px;
	padding: clamp(44px, 6vw, 76px);
	border-radius: var(--radius-lg);
	background: var(--color-clay-dark);
	color: var(--color-white);
}

.project-cta__box::after {
	position: absolute;
	top: -170px;
	right: -100px;
	width: 440px;
	height: 440px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	box-shadow: 0 0 0 54px rgba(255, 255, 255, 0.04), 0 0 0 108px rgba(255, 255, 255, 0.025);
	content: "";
}

.project-cta__content,
.project-cta__action {
	position: relative;
	z-index: 1;
}

.project-cta h2 {
	max-width: 800px;
	margin-bottom: 20px;
	font-size: clamp(2rem, 4vw, 3.6rem);
}

.project-cta__content > p:last-child {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 253, 249, 0.72);
	font-size: 0.92rem;
}

.project-cta__action {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 18px;
}

.project-cta__action p {
	margin: 0;
	color: rgba(255, 253, 249, 0.68);
	font-size: 0.72rem;
	text-align: center;
}

.project-cta__action p a {
	color: var(--color-white);
	font-size: 0.9rem;
	font-weight: 750;
}

.delivery {
	background: var(--color-white);
}

.delivery__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	align-items: center;
	gap: clamp(50px, 8vw, 110px);
}

.delivery__visual {
	position: relative;
}

.delivery__visual::before {
	position: absolute;
	inset: 28px 34px -28px -34px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	content: "";
}

.delivery__visual img {
	position: relative;
	width: 100%;
	min-height: 500px;
	border-radius: var(--radius-lg);
	object-fit: cover;
}

.delivery__badge {
	position: absolute;
	right: -30px;
	bottom: 40px;
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 310px;
	padding: 18px 20px;
	border-radius: var(--radius-md);
	background: var(--color-ink);
	color: var(--color-white);
	box-shadow: var(--shadow-float);
}

.delivery__badge svg {
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	color: var(--color-clay-light);
}

.delivery__badge p {
	margin: 0;
}

.delivery__badge strong,
.delivery__badge span {
	display: block;
}

.delivery__badge strong {
	font-family: var(--font-display);
	font-size: 0.98rem;
}

.delivery__badge span {
	margin-top: 3px;
	color: rgba(255, 253, 249, 0.66);
	font-size: 0.7rem;
}

.delivery h2 {
	margin-bottom: 24px;
}

.delivery__lead {
	margin-bottom: 32px;
	color: var(--color-ink-soft);
}

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

.feature-list li {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 14px;
	padding: 18px 0;
	border-top: 1px solid var(--color-line);
}

.feature-list li:last-child {
	border-bottom: 1px solid var(--color-line);
}

.feature-list > li > span {
	color: var(--color-clay);
	font-family: var(--font-display);
	font-size: 1.2rem;
}

.feature-list p {
	margin: 0;
	color: var(--color-ink-soft);
	font-size: 0.82rem;
}

.feature-list strong {
	display: block;
	margin-bottom: 4px;
	color: var(--color-ink);
	font-family: var(--font-display);
	font-size: 1.06rem;
	font-weight: 600;
}

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

.process-list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.process-list::before {
	position: absolute;
	top: 28px;
	left: 10%;
	width: 80%;
	height: 1px;
	background: var(--color-line);
	content: "";
}

.process-list li {
	position: relative;
	z-index: 1;
	text-align: center;
}

.process-list__number {
	display: grid;
	width: 56px;
	height: 56px;
	place-items: center;
	margin: 0 auto 24px;
	border: 1px solid var(--color-clay);
	border-radius: 50%;
	background: var(--color-paper);
	color: var(--color-clay);
	font-family: var(--font-display);
	font-size: 1.3rem;
}

.process-list h3 {
	margin-bottom: 10px;
	font-size: 1.35rem;
}

.process-list p {
	max-width: 230px;
	margin: 0 auto;
	color: var(--color-ink-soft);
	font-size: 0.82rem;
}

.faq {
	background: var(--color-white);
}

.faq__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(54px, 10vw, 150px);
}

.faq__intro {
	position: sticky;
	top: 130px;
	align-self: start;
}

.faq__intro h2 {
	margin-bottom: 24px;
}

.faq__intro > p:not(.eyebrow) {
	margin-bottom: 26px;
	color: var(--color-ink-soft);
}

.faq__items {
	border-top: 1px solid var(--color-line);
}

.faq details {
	border-bottom: 1px solid var(--color-line);
}

.faq summary {
	display: grid;
	min-height: 84px;
	grid-template-columns: 1fr 28px;
	align-items: center;
	gap: 20px;
	padding: 20px 0;
	cursor: pointer;
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 600;
	line-height: 1.3;
	list-style: none;
}

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

.faq summary span {
	position: relative;
	width: 28px;
	height: 28px;
	border: 1px solid var(--color-line);
	border-radius: 50%;
}

.faq summary span::before,
.faq summary span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 1px;
	background: var(--color-ink);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 180ms ease;
}

.faq summary span::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
	transform: translate(-50%, -50%) rotate(0);
}

.faq details > div {
	max-width: 680px;
	padding: 0 48px 24px 0;
	color: var(--color-ink-soft);
	font-size: 0.9rem;
}

.faq details > div p {
	margin: 0;
}

.request {
	padding-block: var(--section-space);
	background: var(--color-ink);
	color: var(--color-white);
}

.request__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr);
	align-items: start;
	gap: clamp(52px, 10vw, 140px);
}

.request__content {
	padding-top: 28px;
}

.request h2 {
	margin-bottom: 24px;
}

.request__content > p:not(.eyebrow) {
	margin-bottom: 30px;
	color: rgba(255, 253, 249, 0.68);
}

.request__content ul {
	display: grid;
	gap: 12px;
	padding: 24px 0 0;
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	list-style: none;
}

.request__content li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 253, 249, 0.82);
	font-size: 0.84rem;
}

.request__content li span {
	color: var(--color-clay-light);
}

.request__form {
	padding: clamp(28px, 4vw, 48px);
	border-radius: var(--radius-lg);
	background: var(--color-white);
	color: var(--color-ink);
}

.lead-form-title {
	margin-bottom: 26px;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
}

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

.field {
	margin-bottom: 18px;
}

.field label {
	display: block;
	margin-bottom: 7px;
	font-size: 0.72rem;
	font-weight: 750;
}

.field-optional {
	color: var(--color-ink-soft);
	font-weight: 400;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--color-ink);
	font-size: 0.85rem;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
	min-height: 100px;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--color-clay);
	outline: none;
	box-shadow: 0 0 0 3px rgba(165, 63, 36, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
	color: #958b84;
}

.field-hp {
	position: absolute;
	left: -9999px;
}

.consent {
	display: grid;
	grid-template-columns: 18px 1fr;
	align-items: start;
	gap: 10px;
	margin: 4px 0 20px;
	color: var(--color-ink-soft);
	font-size: 0.67rem;
	line-height: 1.45;
}

.consent input {
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	accent-color: var(--color-clay);
}

.consent a {
	color: var(--color-clay);
}

.lead-submit[aria-busy="true"] {
	cursor: wait;
	opacity: 0.72;
}

.form-message {
	margin-bottom: 20px;
	padding: 14px 16px;
	border-radius: var(--radius-sm);
	font-size: 0.78rem;
}

.form-message--success {
	background: rgba(47, 105, 72, 0.12);
	color: var(--color-success);
}

.form-message--error {
	background: rgba(167, 43, 36, 0.1);
	color: var(--color-error);
}

.site-footer {
	padding: 70px 0 24px;
	background: #171412;
	color: rgba(255, 253, 249, 0.7);
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1.25fr 0.7fr 0.85fr;
	gap: clamp(42px, 8vw, 100px);
	padding-bottom: 56px;
}

.site-brand--footer {
	color: var(--color-white);
}

.site-brand--footer .site-brand__text small {
	color: rgba(255, 253, 249, 0.52);
}

.site-footer__brand > p {
	max-width: 390px;
	margin: 24px 0 0;
	font-size: 0.8rem;
}

.site-footer h2 {
	margin-bottom: 22px;
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 0.74rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer ul {
	display: grid;
	gap: 11px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer a {
	text-decoration-color: rgba(255, 255, 255, 0.3);
}

.site-footer__col {
	font-size: 0.8rem;
}

.site-footer__contacts {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 8px;
}

.site-footer__contacts h2 {
	margin-bottom: 14px;
}

.site-footer__contacts p {
	margin: 0;
}

.site-footer__phone {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	text-decoration: none;
}

.site-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 10px;
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: start;
	gap: 30px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.66rem;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom p:nth-child(2) {
	justify-self: center;
	text-align: center;
}

.content-page {
	min-height: 60vh;
	padding-block: clamp(70px, 10vw, 130px);
	background: var(--color-white);
}

.content-page__inner {
	max-width: 900px;
}

.content-page__header {
	margin-bottom: 50px;
}

.content-page__header h1 {
	margin-bottom: 18px;
}

.content-page__header > p:not(.eyebrow) {
	max-width: 620px;
	color: var(--color-ink-soft);
}

.entry-content {
	color: #3d3632;
}

.entry-content > * {
	max-width: 760px;
}

.entry-content h2 {
	margin-top: 1.8em;
	font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.entry-content h3 {
	margin-top: 1.6em;
}

.entry-content a {
	color: var(--color-clay);
}

.content-list {
	display: grid;
	gap: 18px;
}

.content-card {
	padding: 28px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
}

.content-card h2 {
	font-size: 1.7rem;
}

.content-card h2 a {
	text-decoration: none;
}

.catalog-archive .content-page__header {
	max-width: 760px;
}

.product-page {
	padding-block: 34px var(--section-space);
	background: var(--color-white);
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 34px;
	color: var(--color-ink-soft);
	font-size: 0.72rem;
}

.product-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
	align-items: center;
	gap: clamp(50px, 8vw, 110px);
}

.product-page__image {
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--color-paper);
}

.product-page__image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.product-page__content h1 {
	margin-bottom: 22px;
	font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.product-page__benefit,
.product-page__note {
	color: var(--color-ink-soft);
}

.product-page__benefit {
	font-size: 1.04rem;
}

.product-page__price {
	margin: 30px 0;
	padding-block: 20px;
	border-block: 1px solid var(--color-line);
}

.product-page__price span,
.product-page__price strong {
	display: block;
}

.product-page__price span {
	color: var(--color-ink-soft);
	font-size: 0.72rem;
}

.product-page__price strong {
	margin-top: 5px;
	font-family: var(--font-display);
	font-size: 1.7rem;
}

.product-page__note {
	max-width: 480px;
	margin: 18px 0 0;
	font-size: 0.72rem;
}

.product-page__details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(48px, 8vw, 100px);
	margin-top: 90px;
	padding-top: 60px;
	border-top: 1px solid var(--color-line);
}

.product-page__details h2 {
	font-size: 2rem;
}

.spec-list {
	margin: 0;
}

.spec-list div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 13px 0;
	border-bottom: 1px solid var(--color-line);
	font-size: 0.82rem;
}

.spec-list dt {
	color: var(--color-ink-soft);
}

.spec-list dd {
	margin: 0;
	font-weight: 650;
	text-align: right;
}

.error-page {
	text-align: center;
}

.error-page .hero__actions {
	justify-content: center;
}

/* Premium conversion concept: emotional result first, catalogue second. */
.hero-premium {
	position: relative;
	min-height: 760px;
	overflow: hidden;
	background: #1d1917;
	color: var(--color-white);
}

.hero-premium__media,
.hero-premium__shade {
	position: absolute;
	inset: 0;
}

.hero-premium__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 64% center;
}

.hero-premium__shade {
	background:
		linear-gradient(90deg, rgba(21, 17, 15, 0.97) 0%, rgba(24, 19, 16, 0.89) 35%, rgba(27, 21, 18, 0.34) 67%, rgba(27, 21, 18, 0.06) 100%),
		linear-gradient(0deg, rgba(19, 15, 13, 0.75) 0%, transparent 42%);
}

.hero-premium__inner {
	position: relative;
	z-index: 2;
	display: grid;
	min-height: 760px;
	grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
	align-content: center;
	gap: 72px;
	padding-block: 82px 132px;
}

.hero-premium__content {
	max-width: 790px;
}

.hero-premium__overline {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	color: #e5b195;
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.hero-premium__overline span {
	width: 34px;
	height: 1px;
	background: currentColor;
}

.hero-premium h1 {
	max-width: 850px;
	margin-bottom: 26px;
	color: var(--color-white);
	font-size: clamp(3.6rem, 6.4vw, 6.2rem);
	letter-spacing: -0.055em;
	text-wrap: balance;
}

.hero-premium__lead {
	max-width: 650px;
	margin-bottom: 34px;
	color: rgba(255, 253, 249, 0.77);
	font-size: clamp(1.02rem, 1.55vw, 1.22rem);
	line-height: 1.65;
}

.hero-premium__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px 28px;
}

.button--hero {
	min-height: 58px;
	padding-inline: 28px;
	background: #b94728;
	color: var(--color-white);
	box-shadow: 0 14px 34px rgba(85, 24, 10, 0.35);
}

.button--hero:hover {
	background: #d55b37;
	box-shadow: 0 18px 42px rgba(85, 24, 10, 0.45);
}

.hero-premium__link {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	gap: 12px;
	color: var(--color-white);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
}

.hero-premium__play {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 50%;
	transition: border-color 180ms ease, background-color 180ms ease;
}

.hero-premium__play svg {
	width: 20px;
	height: 20px;
}

.hero-premium__link:hover .hero-premium__play {
	border-color: var(--color-white);
	background: rgba(255, 255, 255, 0.12);
}

.hero-premium__micro {
	margin: 21px 0 0;
	color: rgba(255, 253, 249, 0.54);
	font-size: 0.7rem;
}

.hero-material {
	position: absolute;
	right: 0;
	bottom: 118px;
	display: grid;
	width: 330px;
	grid-template-columns: 106px 1fr 48px;
	align-items: center;
	gap: 14px;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 18px;
	background: rgba(255, 253, 249, 0.93);
	box-shadow: 0 28px 70px rgba(12, 8, 6, 0.34);
	color: var(--color-ink);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.hero-material__image {
	overflow: hidden;
	border-radius: 12px;
	background: #efe4d6;
}

.hero-material__image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.hero-material__body p {
	margin-bottom: 3px;
	color: var(--color-clay);
	font-size: 0.57rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero-material__body strong,
.hero-material__body span {
	display: block;
}

.hero-material__body strong {
	font-family: var(--font-display);
	font-size: 1.03rem;
	line-height: 1.1;
}

.hero-material__body span {
	margin-top: 6px;
	color: var(--color-ink-soft);
	font-size: 0.62rem;
}

.hero-material__button {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--color-ink);
	color: var(--color-white);
	cursor: pointer;
	transition: background-color 180ms ease, transform 180ms ease;
}

.hero-material__button:hover {
	background: var(--color-clay);
	transform: translateX(2px);
}

.hero-material__button svg {
	width: 20px;
	height: 20px;
}

.hero-premium__facts {
	position: absolute;
bottom: 36px;
	left: var(--gutter);
	display: grid;
	width: min(720px, calc(100% - (2 * var(--gutter))));
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.hero-premium__facts p {
	display: flex;
	min-height: 72px;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 18px 24px 0 0;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-premium__facts p + p {
	padding-left: 24px;
}

.hero-premium__facts p:last-child {
	border-right: 0;
}

.hero-premium__facts strong {
	color: #e5b195;
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
}

.hero-premium__facts span {
	color: rgba(255, 253, 249, 0.68);
	font-size: 0.67rem;
	line-height: 1.4;
}

.hero-premium__facts svg {
	width: 31px;
	height: 31px;
	color: #e5b195;
}

.hero-premium__scroll {
	position: absolute;
	right: 38px;
	bottom: 34px;
	z-index: 3;
	display: grid;
	width: 44px;
	height: 66px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.33);
	border-radius: 999px;
}

.hero-premium__scroll span {
	width: 4px;
	height: 14px;
	border-radius: 999px;
	background: var(--color-white);
	animation: kbl-scroll-cue 1.8s ease-in-out infinite;
}

@keyframes kbl-scroll-cue {
	0%,
	100% {
		opacity: 0.35;
		transform: translateY(-5px);
	}
	50% {
		opacity: 1;
		transform: translateY(6px);
	}
}

.proof-strip--premium {
	background: #191513;
	color: var(--color-white);
}

.proof-strip--premium .proof-strip__item {
	border-color: rgba(255, 255, 255, 0.11);
}

.proof-strip--premium .proof-strip__number {
	color: #d9825f;
}

.proof-strip--premium .proof-strip p span {
	color: rgba(255, 253, 249, 0.5);
}

.mood-section {
	overflow: hidden;
	background: #25211f;
	color: var(--color-white);
}

.mood-section__heading > p {
	color: rgba(255, 253, 249, 0.62);
}

.mood-section__heading h2 {
	color: var(--color-white);
}

.mood-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
	grid-template-rows: repeat(2, minmax(0, 360px));
	gap: 18px;
}

.mood-card {
	position: relative;
	display: grid;
	min-height: 300px;
	overflow: hidden;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-lg);
	isolation: isolate;
}

.mood-card--feature {
	min-height: 0;
	grid-row: span 2;
	grid-template-columns: 1fr;
	grid-template-rows: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.mood-card--terracotta {
	background: #a74329;
}

.mood-card--graphite {
	background: #343432;
}

.mood-card--sand {
	background: #d4b780;
	color: #2c231e;
}

.mood-card__copy {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	padding: clamp(28px, 3.4vw, 48px);
}

.mood-card--feature .mood-card__copy {
	justify-content: flex-end;
	padding-bottom: 34px;
}

.mood-card:not(.mood-card--feature) .mood-card__copy {
	padding: 26px 24px 26px 30px;
}

.mood-card__kicker {
	margin-bottom: 10px;
	font-size: 0.66rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	opacity: 0.66;
	text-transform: uppercase;
}

.mood-card h3 {
	margin-bottom: 14px;
	font-size: clamp(1.8rem, 3.2vw, 3.4rem);
}

.mood-card:not(.mood-card--feature) h3 {
	font-size: clamp(1.55rem, 2.3vw, 2.25rem);
	margin-bottom: 10px;
}

.mood-card__copy > p:not(.mood-card__kicker) {
	max-width: 470px;
	margin-bottom: 20px;
	font-size: 0.8rem;
	opacity: 0.75;
}

.mood-card:not(.mood-card--feature) .mood-card__copy > p:not(.mood-card__kicker) {
	margin-bottom: 12px;
	font-size: 0.7rem;
	line-height: 1.5;
}

.mood-card__copy ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0;
	margin: 0 0 24px;
	list-style: none;
}

.mood-card:not(.mood-card--feature) .mood-card__copy ul {
	margin-bottom: 12px;
}

.mood-card__copy li {
	padding: 6px 10px;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 0.59rem;
	opacity: 0.64;
}

.mood-card:not(.mood-card--feature) .mood-card__copy li {
	padding: 4px 7px;
	font-size: 0.5rem;
}

.mood-card__cta {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 10px;
	padding: 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font-size: 0.76rem;
	font-weight: 750;
}

.mood-card__cta span {
	transition: transform 180ms ease;
}

.mood-card__cta:hover span {
	transform: translateX(4px);
}

.mood-card__visual {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 100%;
	place-items: center;
	overflow: hidden;
}

.mood-card--feature .mood-card__visual {
	grid-row: 1;
}

.mood-card__halo {
	position: absolute;
	width: 76%;
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	box-shadow: 0 0 0 46px rgba(255, 255, 255, 0.045), 0 0 0 92px rgba(255, 255, 255, 0.025);
}

.mood-card--sand .mood-card__halo {
	border-color: rgba(63, 42, 28, 0.2);
	box-shadow: 0 0 0 46px rgba(67, 43, 24, 0.04), 0 0 0 92px rgba(67, 43, 24, 0.02);
}

.mood-card__visual > img {
	position: relative;
	z-index: 1;
	width: 86%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 30px 70px rgba(24, 12, 7, 0.2);
	transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mood-card--feature .mood-card__visual > img {
	width: min(78%, 430px);
}

.mood-card__product {
	position: absolute;
	right: 20px;
	bottom: 18px;
	z-index: 2;
	max-width: 175px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(255, 253, 249, 0.9);
	box-shadow: 0 10px 28px rgba(20, 12, 8, 0.16);
	color: var(--color-ink);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.mood-card__product span,
.mood-card__product strong {
	display: block;
}

.mood-card__product span {
	margin-bottom: 3px;
	color: var(--color-clay);
	font-size: 0.52rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mood-card__product strong {
	font-family: var(--font-display);
	font-size: 0.8rem;
	line-height: 1.15;
}

.mood-section__promise {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 34px;
	padding: 24px 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mood-section__promise p {
	margin: 0;
	color: rgba(255, 253, 249, 0.58);
	font-size: 0.82rem;
}

.mood-section__promise p span {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 1.05rem;
}

.mood-section__promise .text-link {
	color: #e5b195;
	white-space: nowrap;
}

.mobile-buy-bar {
	display: none;
}

.reveal-ready [data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
	.mood-card:hover .mood-card__visual > img {
		transform: scale(1.045) rotate(-1.2deg);
	}
}

@media (max-width: 1120px) {
	.site-header__inner {
		gap: 18px;
	}

	.menu {
		gap: 18px;
	}

	.site-header__contact {
		display: none;
	}

	.hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
		gap: 50px;
	}

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

	.proof-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.proof-strip__item:nth-child(2) {
		border-right: 0;
	}

	.proof-strip__item:nth-child(-n + 2) {
		border-bottom: 1px solid var(--color-line);
	}

	.proof-strip__item:first-child,
	.proof-strip__item:nth-child(3) {
		padding-left: 0;
	}

	.proof-strip__item:nth-child(2),
	.proof-strip__item:last-child {
		padding-right: 0;
	}
}

@media (max-width: 920px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

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

	.primary-navigation {
		position: fixed;
		top: 112px;
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		padding: 24px var(--gutter) 48px;
		background: var(--color-paper);
	}

	.admin-bar .primary-navigation {
		top: 158px;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation .menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-navigation .menu a {
		min-height: 58px;
		border-bottom: 1px solid var(--color-line);
		font-family: var(--font-display);
		font-size: 1.45rem;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(1) {
		transform: translateY(5.5px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(3) {
		transform: translateY(-5.5px) rotate(-45deg);
	}

	.hero__grid,
	.delivery__grid,
	.faq__grid,
	.request__grid,
	.product-page__grid {
		grid-template-columns: 1fr;
	}

	.hero__content {
		max-width: 720px;
	}

	.hero__visual {
		width: min(100%, 680px);
		margin-inline: auto;
	}

	.hero__image-frame img {
		aspect-ratio: 4 / 3;
	}

	.section-heading {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.selection-grid {
		grid-template-columns: 1fr;
	}

	.selection-card {
		min-height: 340px;
	}

	.selection-card__icon {
		margin-bottom: 36px;
	}

	.project-cta__box {
		grid-template-columns: 1fr;
	}

	.project-cta__action {
		align-items: flex-start;
	}

	.project-cta__action p {
		text-align: left;
	}

	.delivery__visual {
		width: calc(100% - 24px);
	}

	.delivery__visual img {
		min-height: 420px;
	}

	.faq__intro {
		position: static;
	}

	.request__content {
		max-width: 680px;
		padding-top: 0;
	}

	.product-page__content {
		max-width: 680px;
	}
}

@media (max-width: 740px) {
	:root {
		--gutter: 20px;
		--section-space: 76px;
	}

	body {
		font-size: 16px;
	}

	.site-topbar__work {
		display: none !important;
	}

	.site-topbar__inner {
		justify-content: center;
	}

	.site-header__inner {
		min-height: 70px;
	}

	.site-brand__text strong {
		font-size: 1.2rem;
	}

	.site-brand__text small {
		max-width: 190px;
		font-size: 0.56rem;
	}

	.brand-mark {
		width: 39px;
		height: 33px;
	}

	.primary-navigation {
		top: 104px;
	}

	.admin-bar .primary-navigation {
		top: 150px;
	}

	.hero {
		padding-top: 44px;
	}

	.hero__grid {
		gap: 42px;
	}

	.hero h1 {
		font-size: clamp(2.7rem, 13vw, 4rem);
	}

	.hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__image-frame {
		border-radius: 120px 120px 14px 14px;
	}

	.hero__image-frame img {
		aspect-ratio: 4 / 4.6;
	}

	.hero__note {
		right: 12px;
		bottom: 18px;
		width: calc(100% - 24px);
	}

	.proof-strip__grid {
		grid-template-columns: 1fr;
	}

	.proof-strip__item,
	.proof-strip__item:first-child,
	.proof-strip__item:nth-child(2),
	.proof-strip__item:nth-child(3),
	.proof-strip__item:last-child {
		min-height: 96px;
		padding: 18px 0;
		border-right: 0;
		border-bottom: 1px solid var(--color-line);
	}

	.proof-strip__item:last-child {
		border-bottom: 0;
	}

	.selection-card {
		min-height: 370px;
	}

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

	.product-card__body {
		padding: 16px;
	}

	.product-card h3 {
		font-size: 1.16rem;
	}

	.product-card__benefit {
		min-height: 0;
		font-size: 0.72rem;
	}

	.product-card__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.product-card__footer .button {
		width: 100%;
	}

	.catalog-note {
		align-items: flex-start;
		flex-direction: column;
	}

	.project-cta__box {
		padding: 38px 26px;
	}

	.delivery__visual::before {
		inset: 16px 18px -18px -18px;
	}

	.delivery__visual img {
		min-height: 330px;
	}

	.delivery__badge {
		right: -8px;
		bottom: 22px;
	}

	.process-list {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.process-list::before {
		top: 28px;
		bottom: 28px;
		left: 27px;
		width: 1px;
		height: auto;
	}

	.process-list li {
		display: grid;
		grid-template-columns: 56px 1fr;
		gap: 18px;
		padding-bottom: 30px;
		text-align: left;
	}

	.process-list__number {
		margin: 0;
	}

	.process-list p {
		max-width: none;
		margin: 0;
	}

	.request__form {
		padding: 26px 20px;
	}

	.lead-form-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.site-footer__bottom {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.site-footer__bottom p:nth-child(2) {
		justify-self: start;
		text-align: left;
	}

	.product-page__details {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 430px) {
	.site-brand__text small {
		display: none;
	}

	.hero__note {
		position: relative;
		right: auto;
		bottom: auto;
		width: 94%;
		margin: -28px auto 0;
	}

	.product-grid {
		grid-template-columns: 1fr;
	}

	.product-card__benefit {
		min-height: auto;
	}

	.product-card__footer {
		align-items: flex-end;
		flex-direction: row;
	}

	.product-card__footer .button {
		width: auto;
	}

	.delivery__badge {
		position: relative;
		right: auto;
		bottom: auto;
		max-width: calc(100% - 24px);
		margin: -24px auto 0;
	}
}

@media (max-width: 1120px) {
	.hero-premium__inner {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
		gap: 36px;
	}

	.hero-material {
		width: 306px;
	}

	.mood-grid {
		grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
	}
}

@media (max-width: 920px) {
	.hero-premium,
	.hero-premium__inner {
		min-height: 800px;
	}

	.hero-premium__inner {
		display: block;
		padding-block: 78px 160px;
	}

	.hero-premium__shade {
		background:
			linear-gradient(90deg, rgba(20, 16, 14, 0.95) 0%, rgba(23, 18, 15, 0.78) 58%, rgba(24, 18, 15, 0.28) 100%),
			linear-gradient(0deg, rgba(19, 15, 13, 0.82) 0%, transparent 55%);
	}

	.hero-premium__content {
		max-width: 690px;
	}

	.hero-material {
		right: var(--gutter);
		bottom: 105px;
	}

	.hero-premium__facts {
		width: min(620px, calc(100% - (2 * var(--gutter))));
	}

	.mood-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.mood-card--feature {
		min-height: 520px;
		grid-row: auto;
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		grid-template-rows: 1fr;
	}

	.mood-card--feature .mood-card__copy {
		justify-content: center;
	}

	.mood-card--feature .mood-card__visual {
		grid-row: auto;
	}
}

@media (max-width: 740px) {
	.hero-premium,
	.hero-premium__inner {
		min-height: 780px;
	}

	.hero-premium__media img {
		object-position: 67% center;
	}

	.hero-premium__shade {
		background:
			linear-gradient(90deg, rgba(19, 15, 13, 0.94) 0%, rgba(20, 16, 13, 0.76) 100%),
			linear-gradient(0deg, rgba(17, 13, 11, 0.9) 0%, transparent 54%);
	}

	.hero-premium__inner {
		padding-block: 58px 156px;
	}

	.hero-premium h1 {
		font-size: clamp(3.15rem, 14.7vw, 4.35rem);
		line-height: 0.98;
	}

	.hero-premium__lead {
		max-width: 520px;
		font-size: 0.98rem;
	}

	.hero-premium__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-premium__actions .button {
		width: 100%;
	}

	.hero-premium__link {
		width: 100%;
		justify-content: center;
	}

	.hero-premium__micro {
		text-align: center;
	}

	.hero-material {
		display: none;
	}

	.hero-premium__facts {
		right: var(--gutter);
		bottom: 22px;
		left: var(--gutter);
		width: auto;
	}

	.hero-premium__facts p {
		min-height: 76px;
		gap: 7px;
		padding: 15px 10px 0 0;
	}

	.hero-premium__facts p + p {
		padding-left: 10px;
	}

	.hero-premium__facts strong {
		font-size: 1.5rem;
	}

	.hero-premium__facts span {
		font-size: 0.55rem;
	}

	.hero-premium__facts svg {
		width: 25px;
		height: 25px;
	}

	.hero-premium__scroll {
		display: none;
	}

	.proof-strip--premium .proof-strip__item {
		border-color: rgba(255, 255, 255, 0.11);
	}

	.mood-section__heading {
		margin-bottom: 38px;
	}

	.mood-card,
	.mood-card--feature {
		min-height: 540px;
		grid-template-columns: 1fr;
		grid-template-rows: minmax(220px, 0.88fr) minmax(0, 1.12fr);
	}

	.mood-card__visual,
	.mood-card--feature .mood-card__visual {
		grid-row: 1;
	}

	.mood-card__copy,
	.mood-card--feature .mood-card__copy {
		grid-row: 2;
		justify-content: flex-end;
		padding: 28px;
	}

	.mood-card__visual > img,
	.mood-card--feature .mood-card__visual > img {
		width: min(72%, 310px);
	}

	.mood-card__halo {
		width: 58%;
	}

	.mood-card h3,
	.mood-card:not(.mood-card--feature) h3 {
		font-size: clamp(2rem, 10vw, 2.85rem);
	}

	.mood-section__promise {
		align-items: flex-start;
		flex-direction: column;
		padding-inline: 0;
	}

	.mobile-buy-bar {
		position: fixed;
		right: 10px;
		bottom: 0;
		left: 10px;
		z-index: 100;
		display: block;
		padding-bottom: max(10px, env(safe-area-inset-bottom));
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.mobile-buy-bar.is-hidden {
		pointer-events: none;
		opacity: 0;
		transform: translateY(120%);
	}

	.mobile-buy-bar a {
		display: grid;
		min-height: 66px;
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		align-items: center;
		column-gap: 16px;
		padding: 12px 18px;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 16px;
		background: rgba(29, 24, 21, 0.96);
		box-shadow: 0 18px 50px rgba(23, 14, 10, 0.34);
		color: var(--color-white);
		text-decoration: none;
		-webkit-backdrop-filter: blur(14px);
		backdrop-filter: blur(14px);
	}

	.mobile-buy-bar span {
		color: rgba(255, 253, 249, 0.58);
		font-size: 0.58rem;
		letter-spacing: 0.05em;
		text-transform: uppercase;
	}

	.mobile-buy-bar strong {
		grid-row: 2;
		font-size: 0.86rem;
	}

	.mobile-buy-bar svg {
		width: 24px;
		height: 24px;
		grid-row: 1 / 3;
	}

	.site-footer {
		padding-bottom: 112px;
	}
}

@media (max-width: 430px) {
	.hero-premium,
	.hero-premium__inner {
		min-height: 810px;
	}

	.hero-premium h1 {
		font-size: clamp(3rem, 15.2vw, 3.85rem);
	}

	.hero-premium__overline {
		font-size: 0.62rem;
	}

	.hero-premium__facts p:nth-child(2) span br {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	/*
	 * This is an accessibility override: all decorative motion must stop when
	 * the operating system requests reduced motion.
	 */
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
