@font-face {
	font-family: "IB Roboto";
	src: url("../fonts/Roboto-Regular.ttf") format("truetype");
	font-display: swap;
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "IB Roboto";
	src: url("../fonts/Roboto-Medium.ttf") format("truetype");
	font-display: swap;
	font-style: normal;
	font-weight: 500;
}

@font-face {
	font-family: "IB Roboto";
	src: url("../fonts/Roboto-Bold.ttf") format("truetype");
	font-display: swap;
	font-style: normal;
	font-weight: 700;
}

:root {
	--paper: #f3f0eb;
	--paper-warm: #e9e1d6;
	--card: #f9f7f3;
	--ink: #1f1c19;
	--muted: #746c65;
	--line: #d4cdc4;
	--clay: #ad4f31;
	--clay-dark: #71301f;
	--brown: #312720;
	--sand: #cda781;
	--white: #fffdf9;
	--gutter: clamp(20px, 4.6vw, 72px);
	--section: clamp(84px, 10vw, 156px);
	--serif: Georgia, "Times New Roman", serif;
	--sans: "IB Roboto", Arial, sans-serif;
	--shadow: 0 24px 70px rgba(48, 35, 27, 0.12);
}

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

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

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

body.menu-open {
	overflow: hidden;
}

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

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

a {
	color: inherit;
}

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

h1,
h2,
h3 {
	text-wrap: balance;
}

em {
	color: var(--clay);
	font-weight: 400;
}

.shell {
	width: min(100%, 1512px);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 12px 16px;
	border-radius: 4px;
	background: var(--ink);
	color: var(--white);
	transform: translateY(-150%);
}

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

:focus-visible {
	outline: 3px solid #d97955;
	outline-offset: 4px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	background: rgba(243, 240, 235, 0.92);
	transition: border-color 180ms ease, box-shadow 180ms ease;
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
	border-color: rgba(63, 53, 46, 0.12);
	box-shadow: 0 12px 40px rgba(51, 38, 28, 0.06);
}

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

.site-header__inner {
	display: grid;
	min-height: 88px;
	grid-template-columns: 230px 1fr 220px;
	align-items: center;
	gap: 32px;
}

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

.brand img {
	width: 35px;
	height: 40px;
	object-fit: contain;
}

.brand span,
.brand strong,
.brand small {
	display: block;
}

.brand strong {
	font-size: 0.96rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	text-transform: uppercase;
}

.brand small {
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.62rem;
	letter-spacing: 0.15em;
	line-height: 1;
	text-transform: uppercase;
}

.desktop-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 2.7vw, 44px);
}

.desktop-nav a {
	position: relative;
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: #4b4540;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
}

.desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 1px;
	background: var(--clay);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-contact {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
}

.header-contact a {
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
}

.header-contact span {
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.62rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.menu-toggle,
.mobile-nav {
	display: none;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: clamp(52px, 7vw, 102px) 0 34px;
	background:
		radial-gradient(circle at 72% 44%, rgba(205, 167, 129, 0.15), transparent 30%),
		var(--paper);
}

.hero::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(50% + 80px);
	width: 1px;
	background: rgba(75, 62, 52, 0.08);
	content: "";
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 560px;
	grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
	align-items: center;
	gap: clamp(42px, 5vw, 88px);
}

.eyebrow,
.section-number {
	margin-bottom: 24px;
	color: var(--clay);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
}

.eyebrow span {
	display: block;
	width: 36px;
	height: 1px;
	background: currentColor;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 30px;
	font-family: var(--serif);
	font-size: clamp(3.6rem, 6.3vw, 7.2rem);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 0.88;
}

.hero h1 em {
	display: inline-block;
	font-size: 0.82em;
	font-style: italic;
}

.hero__lead {
	max-width: 570px;
	margin-bottom: 34px;
	color: #5c554f;
	font-size: clamp(0.98rem, 1.2vw, 1.17rem);
	line-height: 1.65;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 28px;
}

.button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 1px;
	cursor: pointer;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button span {
	font-size: 1rem;
	font-weight: 400;
}

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

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

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

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

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

.button--light:hover {
	background: var(--sand);
}

.text-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid var(--ink);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

.hero__visual {
	position: relative;
}

.hero__image-wrap {
	position: relative;
	min-height: 530px;
	overflow: hidden;
	border-radius: 48% 48% 2px 2px / 20% 20% 2px 2px;
	background: #e6e5e2;
	box-shadow: var(--shadow);
}

.hero__image-wrap::before {
	position: absolute;
	inset: 24px;
	z-index: 1;
	border: 1px solid rgba(77, 60, 48, 0.14);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.hero__image-wrap img {
	position: absolute;
	inset: 24px;
	width: calc(100% - 48px);
	height: calc(100% - 48px);
	min-height: 0;
	object-fit: cover;
	object-position: 84% center;
}

.hero__stamp {
	position: absolute;
	right: -18px;
	bottom: 36px;
	display: flex;
	width: 178px;
	min-height: 104px;
	align-items: center;
	gap: 14px;
	padding: 18px;
	background: var(--brown);
	box-shadow: 0 20px 50px rgba(37, 25, 18, 0.22);
	color: var(--white);
}

.hero__stamp strong {
	font-family: var(--serif);
	font-size: 2.7rem;
	font-weight: 400;
	line-height: 1;
}

.hero__stamp span {
	color: rgba(255, 253, 249, 0.65);
	font-size: 0.58rem;
	letter-spacing: 0.08em;
	line-height: 1.45;
	text-transform: uppercase;
}

.hero__facts {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(130px, 180px)) minmax(260px, 1fr);
	align-items: center;
	margin-top: 58px;
	border-top: 1px solid var(--line);
}

.hero__facts p {
	display: flex;
	min-height: 98px;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding-right: 22px;
	border-right: 1px solid var(--line);
}

.hero__facts p + p {
	padding-left: 22px;
}

.hero__facts strong {
	font-family: var(--serif);
	font-size: 2.2rem;
	font-weight: 400;
}

.hero__facts span {
	color: var(--muted);
	font-size: 0.6rem;
	letter-spacing: 0.06em;
	line-height: 1.4;
	text-transform: uppercase;
}

.hero__facts .hero__fact-note {
	justify-content: flex-end;
	border-right: 0;
	color: var(--muted);
	font-size: 0.72rem;
	letter-spacing: 0.02em;
	text-align: right;
	text-transform: none;
}

.catalog-section {
	padding-block: var(--section);
	background: var(--card);
}

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

.catalog-section--blocks {
	background: #dedbd6;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.52fr);
	align-items: end;
	justify-content: space-between;
	gap: 60px;
	margin-bottom: clamp(50px, 7vw, 96px);
}

.section-heading h2,
.calculation-band h2,
.about h2,
.request h2 {
	margin-bottom: 0;
	font-family: var(--serif);
	font-size: clamp(3.2rem, 6vw, 6.4rem);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 0.9;
}

.section-heading h2 em,
.about h2 em,
.request h2 em {
	font-style: italic;
}

.section-heading__aside {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 18px;
	padding-bottom: 7px;
}

.section-heading__aside p {
	margin-bottom: 10px;
	color: #5f5852;
	font-size: 0.95rem;
	line-height: 1.7;
}

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

.product-card {
	min-width: 0;
}

.product-card__image {
	position: relative;
	overflow: hidden;
	background: #ece9e4;
}

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

.product-grid--color .product-card {
	grid-column: span 1;
}

.product-grid--color .product-card--wide {
	grid-column: span 2;
}

.product-grid--color .product-card__image {
	height: clamp(300px, 31vw, 470px);
}

.product-grid--color .product-card--wide .product-card__image {
	height: clamp(300px, 31vw, 470px);
}

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

.product-grid--color .product-card:nth-child(1) img,
.product-grid--color .product-card:nth-child(3) img,
.product-grid--color .product-card:nth-child(4) img {
	object-position: 72% center;
}

.product-grid--color .product-card:nth-child(2) img {
	object-position: 64% center;
}

.product-card__body {
	padding-top: 18px;
	border-top: 1px solid var(--ink);
}

.product-card h3 {
	margin-bottom: 5px;
	font-family: var(--serif);
	font-size: clamp(1.3rem, 1.8vw, 1.75rem);
	font-weight: 400;
	line-height: 1.1;
}

.product-card p {
	min-height: 44px;
	margin-bottom: 10px;
	color: var(--muted);
	font-size: 0.68rem;
	line-height: 1.45;
}

.product-card__body > span {
	color: var(--clay);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-grid--handmade .product-card__image {
	aspect-ratio: 0.86 / 1;
	background: #dcd3c7;
}

.product-grid--handmade img {
	width: 100%;
	height: 100%;
	padding: 7%;
	object-fit: contain;
	filter: drop-shadow(0 22px 26px rgba(51, 31, 20, 0.13));
	transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.calculation-band {
	position: relative;
	overflow: hidden;
	padding-block: clamp(76px, 8vw, 112px);
	background: var(--brown);
	color: var(--white);
}

.calculation-band::after {
	position: absolute;
	right: -90px;
	bottom: -150px;
	width: 390px;
	height: 390px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
	content: "";
}

.calculation-band__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr) minmax(280px, 0.48fr);
	align-items: end;
	gap: 36px;
}

.calculation-band .section-number {
	align-self: start;
	color: var(--sand);
}

.calculation-band h2 {
	font-size: clamp(3rem, 5.2vw, 5.5rem);
}

.calculation-band__inner > div p {
	margin-bottom: 26px;
	color: rgba(255, 253, 249, 0.68);
	font-size: 0.9rem;
}

.block-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 30px);
}

.block-card {
	position: relative;
	padding: 12px 12px 28px;
	background: rgba(249, 247, 243, 0.72);
}

.block-card__index {
	position: absolute;
	top: 28px;
	left: 28px;
	z-index: 2;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	background: var(--ink);
	color: var(--white);
	font-size: 0.68rem;
	letter-spacing: 0.08em;
}

.block-card__image {
	position: relative;
	display: grid;
	height: clamp(300px, 34vw, 460px);
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 45%, rgba(173, 79, 49, 0.18), transparent 36%),
		linear-gradient(145deg, #d8d3cd, #bcb6af);
}

.block-card__image::before {
	position: absolute;
	right: 20px;
	bottom: 20px;
	left: 20px;
	height: 1px;
	background: rgba(69, 54, 44, 0.18);
	content: "";
}

.ceramic-block {
	position: relative;
	display: block;
	width: 62%;
	height: 38%;
	border-radius: 5px 3px 3px 5px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 16% 84%, rgba(71, 26, 14, 0.14)),
		linear-gradient(180deg, #c2673f, #a94b2d);
	box-shadow: 22px 28px 40px rgba(65, 39, 26, 0.22);
	transform: perspective(700px) rotateX(6deg) rotateY(-9deg);
}

.ceramic-block::before {
	position: absolute;
	top: -34px;
	right: 0;
	left: 14px;
	height: 36px;
	background:
		radial-gradient(ellipse at center, #702b1d 0 5px, #913b25 5px 7px, transparent 8px) 8px 5px / 33px 22px repeat,
		#bb5b37;
	content: "";
	transform: skewX(-22deg);
	transform-origin: bottom;
}

.ceramic-block::after {
	position: absolute;
	top: -17px;
	right: -22px;
	width: 23px;
	height: calc(100% + 17px);
	background: linear-gradient(180deg, #994026, #78301f);
	content: "";
	transform: skewY(-36deg);
	transform-origin: left top;
}

.block-card__image--1 .ceramic-block {
	width: 52%;
	height: 31%;
}

.block-card__image--2 .ceramic-block {
	width: 64%;
	height: 39%;
}

.block-card__image--3 .ceramic-block {
	width: 74%;
	height: 48%;
}

.block-card__body {
	padding: 24px 16px 0;
}

.block-card h3 {
	margin-bottom: 7px;
	font-family: var(--serif);
	font-size: clamp(1.6rem, 2.3vw, 2.4rem);
	font-weight: 400;
}

.block-card p {
	min-height: 50px;
	margin-bottom: 14px;
	color: var(--muted);
	font-size: 0.76rem;
}

.block-card__body span {
	display: block;
	padding-top: 12px;
	border-top: 1px solid var(--line);
	color: var(--clay);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.about {
	position: relative;
	min-height: 850px;
	overflow: hidden;
	background: #171514;
	color: var(--white);
}

.about__image {
	position: absolute;
	inset: 0;
}

.about__image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(17, 15, 14, 0.98) 0%, rgba(17, 15, 14, 0.84) 48%, rgba(17, 15, 14, 0.2) 100%);
	content: "";
}

.about__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% center;
}

.about__content {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 850px;
	grid-template-columns: minmax(0, 0.85fr) minmax(440px, 0.72fr);
	align-items: center;
	gap: 70px;
	padding-block: var(--section);
}

.about .section-number {
	color: var(--sand);
}

.about h2 {
	font-size: clamp(3.3rem, 5.3vw, 5.8rem);
}

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

.process-list li {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 22px;
	padding: 24px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list > li > span {
	color: var(--sand);
	font-family: var(--serif);
	font-size: 1.8rem;
}

.process-list h3 {
	margin-bottom: 4px;
	font-family: var(--serif);
	font-size: 1.45rem;
	font-weight: 400;
}

.process-list p {
	margin-bottom: 0;
	color: rgba(255, 253, 249, 0.58);
	font-size: 0.74rem;
}

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

.request__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(440px, 0.64fr);
	gap: clamp(60px, 8vw, 130px);
}

.request .section-number {
	color: rgba(255, 253, 249, 0.72);
}

.request h2 em {
	color: var(--white);
}

.request__copy > p:not(.section-number) {
	max-width: 540px;
	margin-top: 28px;
	color: rgba(255, 253, 249, 0.76);
}

.request__contact {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	margin-top: 70px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.request__contact span {
	margin-bottom: 8px;
	font-size: 0.62rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.request__contact a {
	font-family: var(--serif);
	font-size: clamp(1.8rem, 3vw, 3rem);
	text-decoration: none;
}

.request__contact small {
	color: rgba(255, 253, 249, 0.62);
}

.request__form-wrap {
	padding: clamp(26px, 4vw, 52px);
	background: var(--paper);
	box-shadow: var(--shadow);
	color: var(--ink);
}

.lead-form {
	display: grid;
	gap: 21px;
}

.lead-form label,
.lead-form label > span {
	display: block;
}

.lead-form label > span {
	margin-bottom: 7px;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.lead-form label > span small {
	color: var(--muted);
	font-size: 0.58rem;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
	width: 100%;
	min-height: 52px;
	padding: 12px 0;
	border: 0;
	border-bottom: 1px solid #8e867e;
	border-radius: 0;
	background: transparent;
	color: var(--ink);
	outline: none;
}

.lead-form textarea {
	min-height: 88px;
	resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
	border-color: var(--clay);
	box-shadow: 0 2px 0 var(--clay);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
	color: #918981;
	opacity: 1;
}

.button--submit {
	width: 100%;
	min-height: 62px;
	margin-top: 6px;
}

.lead-form__privacy {
	margin: 0;
	color: var(--muted);
	font-size: 0.6rem;
	line-height: 1.5;
	text-align: center;
}

.lead-form__privacy a {
	text-underline-offset: 2px;
}

.honeypot {
	position: absolute;
	left: -9999px;
}

.form-notice {
	margin-bottom: 24px;
	padding: 16px 18px;
	border-left: 3px solid;
	background: #fff;
}

.form-notice--success {
	border-color: #367353;
}

.form-notice--error {
	border-color: #ae3d2d;
}

.form-notice strong,
.form-notice p {
	display: block;
	margin: 0;
}

.form-notice p {
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.76rem;
}

.site-footer {
	padding: 78px 0 24px;
	background: #171514;
	color: var(--white);
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1fr 0.65fr 0.8fr;
	gap: 60px;
	padding-bottom: 70px;
}

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

.brand--light small {
	color: rgba(255, 255, 255, 0.58);
}

.brand--light img {
	width: 42px;
	height: 48px;
}

.footer-brand p {
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.52);
	font-family: var(--serif);
	font-size: 1.1rem;
}

.footer-nav,
.footer-contacts {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}

.footer-nav > span,
.footer-contacts > span {
	margin-bottom: 10px;
	color: var(--sand);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.footer-nav a,
.footer-contacts a {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.8rem;
	text-decoration: none;
}

.footer-nav a:hover,
.footer-contacts a:hover {
	color: var(--white);
}

.footer-contacts p {
	max-width: 330px;
	margin: 5px 0 0;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.74rem;
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 20px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.61rem;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom p:last-child {
	text-align: right;
}

.site-footer__bottom a {
	color: inherit;
}

.mobile-order {
	display: none;
}

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

.reveal-ready [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@media (hover: hover) and (pointer: fine) {
	.product-card:hover .product-card__image img {
		transform: scale(1.035);
	}

	.product-grid--handmade .product-card:hover .product-card__image img {
		transform: scale(1.04) rotate(-1deg);
	}

	.product-card__image img {
		transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
	}
}

@media (max-width: 1180px) {
	.site-header__inner {
		grid-template-columns: 210px 1fr 190px;
		gap: 18px;
	}

	.desktop-nav {
		gap: 18px;
	}

	.hero__grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
		gap: 42px;
	}

	.hero__image-wrap {
		min-height: 480px;
	}

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

	.product-grid--color .product-card,
	.product-grid--color .product-card--wide {
		grid-column: span 1;
	}

	.calculation-band__inner {
		grid-template-columns: 130px minmax(0, 1fr) minmax(270px, 0.48fr);
	}
}

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

	.site-header__inner {
		min-height: 76px;
		grid-template-columns: 1fr auto;
	}

	.desktop-nav,
	.header-contact {
		display: none;
	}

	.menu-toggle {
		display: grid;
		width: 48px;
		height: 48px;
		place-items: center;
		padding: 0;
		border: 1px solid var(--line);
		background: transparent;
		cursor: pointer;
	}

	.menu-toggle__icon {
		display: grid;
		width: 21px;
		gap: 5px;
	}

	.menu-toggle i {
		display: block;
		height: 1px;
		background: var(--ink);
		transition: opacity 180ms ease, transform 180ms ease;
	}

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

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

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

	.mobile-nav {
		position: fixed;
		top: 76px;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 99;
		display: none;
		overflow-y: auto;
		align-items: stretch;
		flex-direction: column;
		padding: 22px var(--gutter) 50px;
		background: var(--paper);
	}

	.admin-bar .mobile-nav {
		top: 122px;
	}

	.mobile-nav.is-open {
		display: flex;
	}

	.mobile-nav a {
		display: flex;
		min-height: 62px;
		align-items: center;
		border-bottom: 1px solid var(--line);
		font-family: var(--serif);
		font-size: 1.55rem;
		text-decoration: none;
	}

	.mobile-nav .mobile-nav__phone {
		margin-top: 22px;
		border: 0;
		color: var(--clay);
		font-family: var(--sans);
		font-size: 1rem;
		font-weight: 700;
	}

	.hero__grid {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.hero__copy {
		max-width: 720px;
	}

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

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

	.hero__fact-note {
		display: none !important;
	}

	.section-heading,
	.calculation-band__inner,
	.about__content,
	.request__grid {
		grid-template-columns: 1fr;
	}

	.section-heading__aside {
		max-width: 620px;
	}

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

	.product-grid--color .product-card__image,
	.product-grid--color .product-card--wide .product-card__image {
		height: 400px;
	}

	.calculation-band__inner > .section-number {
		margin-bottom: 0;
	}

	.calculation-band__inner > div {
		max-width: 620px;
	}

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

	.block-card {
		display: grid;
		grid-template-columns: minmax(300px, 0.8fr) 1fr;
		align-items: center;
		gap: 24px;
		padding: 12px;
	}

	.block-card__image {
		height: 340px;
	}

	.block-card__body {
		padding: 28px;
	}

	.about__content {
		align-content: center;
	}

	.about__intro {
		max-width: 650px;
	}

	.process-list {
		max-width: 660px;
	}

	.request__copy {
		max-width: 700px;
	}

	.request__contact {
		margin-top: 46px;
	}

	.request__form-wrap {
		max-width: 700px;
	}
}

@media (max-width: 680px) {
	:root {
		--gutter: 20px;
		--section: 82px;
	}

	body {
		font-size: 16px;
	}

	.brand strong {
		font-size: 0.82rem;
	}

	.brand small {
		font-size: 0.54rem;
	}

	.hero {
		padding-top: 42px;
	}

	.hero::before {
		display: none;
	}

	.hero h1 {
		font-size: clamp(3.25rem, 15vw, 4.8rem);
		line-height: 0.91;
	}

	.hero h1 br:nth-of-type(2) {
		display: none;
	}

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

	.hero__actions .button,
	.hero__actions .text-link {
		width: 100%;
	}

	.hero__actions .text-link {
		justify-content: center;
	}

	.hero__image-wrap {
		min-height: 410px;
	}

	.hero__image-wrap {
		border-radius: 150px 150px 2px 2px;
	}

	.hero__stamp {
		right: 12px;
		bottom: 16px;
		width: 150px;
		min-height: 82px;
	}

	.hero__stamp strong {
		font-size: 2rem;
	}

	.hero__facts {
		margin-top: 42px;
	}

	.hero__facts p,
	.hero__facts p + p {
		min-height: 88px;
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		gap: 3px;
		padding: 10px 12px;
	}

	.hero__facts p:first-child {
		padding-left: 0;
	}

	.hero__facts p:last-of-type {
		border-right: 0;
	}

	.hero__facts strong {
		font-size: 1.65rem;
	}

	.hero__facts span {
		font-size: 0.48rem;
	}

	.section-heading {
		gap: 30px;
		margin-bottom: 42px;
	}

	.section-heading h2,
	.calculation-band h2,
	.about h2,
	.request h2 {
		font-size: clamp(3rem, 15vw, 4.3rem);
		line-height: 0.92;
	}

	.section-heading__aside p {
		font-size: 0.88rem;
	}

	.section-heading__aside .button {
		width: 100%;
	}

	.product-grid--color,
	.product-grid--handmade {
		display: flex;
		width: calc(100% + var(--gutter));
		overflow-x: auto;
		gap: 12px;
		padding-right: var(--gutter);
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.product-grid--color::-webkit-scrollbar,
	.product-grid--handmade::-webkit-scrollbar {
		display: none;
	}

	.product-grid--color .product-card,
	.product-grid--handmade .product-card {
		width: 78vw;
		max-width: 330px;
		flex: 0 0 auto;
		scroll-snap-align: start;
	}

	.product-grid--color .product-card__image,
	.product-grid--color .product-card--wide .product-card__image {
		height: 370px;
	}

	.product-grid--handmade .product-card__image {
		aspect-ratio: 0.87 / 1;
	}

	.calculation-band__inner {
		gap: 24px;
	}

	.calculation-band__inner > div .button {
		width: 100%;
	}

	.block-card {
		display: block;
		padding-bottom: 24px;
	}

	.block-card__image {
		height: 300px;
	}

	.block-card__body {
		padding: 22px 14px 0;
	}

	.about,
	.about__content {
		min-height: 930px;
	}

	.about__image::after {
		background: linear-gradient(0deg, rgba(17, 15, 14, 0.98) 0%, rgba(17, 15, 14, 0.85) 69%, rgba(17, 15, 14, 0.35) 100%);
	}

	.about__image img {
		object-position: 68% center;
	}

	.process-list li {
		grid-template-columns: 48px 1fr;
		gap: 14px;
		padding: 18px 0;
	}

	.process-list > li > span {
		font-size: 1.4rem;
	}

	.process-list h3 {
		font-size: 1.25rem;
	}

	.request__grid {
		gap: 48px;
	}

	.request__contact a {
		font-size: 1.85rem;
	}

	.request__form-wrap {
		margin-inline: -8px;
		padding: 28px 20px;
	}

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

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

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

	.site-footer__bottom p:last-child {
		text-align: left;
	}

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

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

	.mobile-order a {
		display: grid;
		min-height: 66px;
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		align-items: center;
		column-gap: 16px;
		padding: 11px 18px;
		border: 1px solid rgba(255, 255, 255, 0.15);
		background: rgba(31, 28, 25, 0.96);
		box-shadow: 0 20px 50px rgba(26, 18, 13, 0.3);
		color: var(--white);
		text-decoration: none;
		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);
	}

	.mobile-order span {
		color: rgba(255, 255, 255, 0.55);
		font-size: 0.54rem;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.mobile-order strong {
		grid-row: 2;
		font-size: 0.82rem;
	}

	.mobile-order svg {
		width: 22px;
		height: 22px;
		grid-row: 1 / 3;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.5;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
