@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
	--bg: #f7f3ee;
	--surface: #ffffff;
	--accent: #d3a26f;
	--accent-strong: #b07c4a;
	--text: #2c2a27;
	--muted: #6a6157;
	--line: #e7dfd5;
	--shadow: 0 18px 40px rgba(27, 25, 23, 0.12);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

body {
	font-family: 'Manrope', sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	background: none;
	border: none;
	cursor: pointer;
}

input {
	font: inherit;
	border: none;
	outline: none;
}

.page {
	position: relative;
	min-height: 100vh;
	overflow-x: hidden;
}

.bg {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}

.bg__ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(176, 124, 74, 0.25);
}

.bg__ring--1 {
	width: 520px;
	height: 520px;
	top: -200px;
	left: -120px;
}

.bg__ring--2 {
	width: 680px;
	height: 680px;
	bottom: -280px;
	right: -200px;
}

.bg__grain {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
	background-size: 14px 14px;
	opacity: 0.15;
}

.container {
	width: min(1380px, 92vw);
	margin: 0 auto;
}

.header {
	position: sticky;
	top: 0;
	z-index: 5;
	backdrop-filter: blur(10px);
	background: rgba(247, 243, 238, 0.9);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 0;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.logo__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: var(--text);
	color: var(--bg);
	font-family: 'Playfair Display', serif;
	font-size: 18px;
}

.logo--small .logo__mark {
	width: 36px;
	height: 36px;
}

.nav {
	display: flex;
	align-items: center;
	gap: 20px;
	font-weight: 500;
}

.nav__link {
	position: relative;
	padding-bottom: 4px;
}

.nav__link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--accent-strong);
	transition: width 0.3s ease;
}

.nav__link:hover::after {
	width: 100%;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: 0 6px 16px rgba(27, 25, 23, 0.08);
}

.lang-switch__btn {
	font-size: 12px;
	font-weight: 600;
	padding: 6px 10px;
	border-radius: 999px;
	color: var(--muted);
	letter-spacing: 0.06em;
}

.lang-switch__btn.is-active {
	background: var(--text);
	color: #fff;
}

.burger {
	display: none;
	flex-direction: column;
	gap: 6px;
}

.burger__line {
	width: 26px;
	height: 2px;
	background: var(--text);
}

.btn {
	padding: 12px 20px;
	border-radius: 999px;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn--primary {
	background: var(--accent-strong);
	color: #fff;
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.btn--light {
	background: #fff;
	border-color: var(--line);
}

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

.btn--ghost {
	border-color: var(--line);
}

.btn--dark {
	background: var(--text);
	color: #fff;
}

.hero {
	padding: 96px 0 60px;
}

.hero__content {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	align-items: center;
}

.hero__label {
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: var(--muted);
	margin-bottom: 16px;
	font-size: 12px;
}

.hero__title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.15;
	margin-bottom: 20px;
}

.hero__subtitle {
	color: var(--muted);
	margin-bottom: 28px;
	max-width: 520px;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 32px;
}

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

.hero__stat {
	padding: 16px;
	background: #fff;
	border-radius: 20px;
	border: 1px solid var(--line);
}

.hero__value {
	font-weight: 700;
	font-size: 20px;
}

.hero__desc {
	color: var(--muted);
	font-size: 13px;
}

.hero__card {
	background: #fff;
	border-radius: 28px;
	padding: 28px;
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 28px;
	box-shadow: var(--shadow);
}

.hero__tag {
	background: rgba(176, 124, 74, 0.12);
	color: var(--accent-strong);
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	display: inline-flex;
}

.hero__card-title {
	font-size: 26px;
	margin: 16px 0 10px;
}

.hero__card-text {
	color: var(--muted);
}

.hero__card-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.hero__price {
	font-weight: 700;
	font-size: 20px;
}

.section {
	padding: 70px 0;
}

.section--split {
	padding: 80px 0;
}

.section--accent {
	background: #f0e7dc;
}

.section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 36px;
}

.section__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 10px;
}

.section__title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(26px, 3.2vw, 40px);
	max-width: 560px;
}

.filter {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.filter__btn {
	border: 1px solid var(--line);
	padding: 10px 16px;
	border-radius: 999px;
	font-size: 14px;
}

.filter__btn--active {
	background: var(--text);
	color: #fff;
	border-color: var(--text);
}
.catalog__container {
	max-width: 1880px;
	margin: 0 auto;
	padding: 0 10px 0 10px;
}
.catalog {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 10px;
}

.product {
	background: #fff;
	border-radius: 20px;
	border: 1px solid var(--line);
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 220px;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.product__media {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 14px;
	background: #f4ede4;
}

.product__image {
	width: 50%;
	margin: 0 auto;
	height: 150px;
	object-fit: cover;
	display: block;
}

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

.product__label {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.12em;
	color: var(--muted);
}

.product__title {
	font-size: 20px;
	margin: 12px 0 6px;
}

.product__text {
	color: var(--muted);
}

.product__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 18px;
}

.product__price {
	font-weight: 700;
}

.split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	align-items: center;
}

.card {
	background: #fff;
	border-radius: 28px;
	padding: 32px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.card--accent {
	background: #fdf9f4;
}

.card__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 12px;
}

.card__title {
	font-size: 28px;
	margin-bottom: 16px;
}

.card__text {
	color: var(--muted);
	margin-bottom: 18px;
}

.card__list {
	list-style: none;
	display: grid;
	gap: 8px;
}

.card__item {
	position: relative;
	padding-left: 18px;
}

.card__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-strong);
}

.metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 24px;
}

.metrics__item {
	background: #fff;
	border-radius: 16px;
	padding: 16px;
	border: 1px solid var(--line);
}

.metrics__value {
	font-weight: 700;
	font-size: 20px;
}

.metrics__label {
	font-size: 12px;
	color: var(--muted);
}

.note {
	background: #fff;
	border-radius: 24px;
	padding: 26px;
	border: 1px solid var(--line);
}

.note__title {
	font-size: 22px;
	margin-bottom: 10px;
}

.note__text {
	color: var(--muted);
	margin-bottom: 18px;
}

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

.advantage {
	background: #fff;
	border-radius: 20px;
	padding: 24px;
	border: 1px solid var(--line);
	min-height: 180px;
}

.advantage__title {
	font-size: 20px;
	margin-bottom: 10px;
}

.advantage__text {
	color: var(--muted);
}

.delivery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	align-items: center;
}

.delivery__text {
	color: var(--muted);
	margin: 18px 0 26px;
}

.delivery__list {
	display: grid;
	gap: 16px;
}

.delivery__item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px;
	background: #fff;
	border-radius: 16px;
	border: 1px solid var(--line);
}

.delivery__value {
	font-weight: 700;
}

.delivery__panel {
	display: flex;
	justify-content: center;
}

.delivery__card {
	background: #fff;
	border-radius: 26px;
	padding: 28px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	width: 100%;
	max-width: 360px;
}

.delivery__card-title {
	font-size: 22px;
	margin-bottom: 8px;
}

.delivery__card-text {
	color: var(--muted);
	margin-bottom: 18px;
}

.form {
	display: grid;
	gap: 12px;
}

.form__input {
	background: #f7f3ee;
	border-radius: 14px;
	padding: 12px 14px;
	border: 1px solid var(--line);
}

.contacts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	align-items: center;
}

.contacts__item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 16px 0;
}

.contacts__label {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.14em;
	color: var(--muted);
}

.contacts__value {
	font-weight: 600;
}

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

.map {
	background: #fff;
	border: 1px dashed var(--line);
	border-radius: 26px;
	padding: 32px;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--muted);
}

.map__badge {
	background: var(--text);
	color: #fff;
	padding: 6px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
	font-size: 12px;
}

.footer {
	padding: 40px 0 60px;
	border-top: 1px solid var(--line);
}

.footer__content {
	display: grid;
	grid-template-columns: 2fr 2fr 1fr;
	gap: 24px;
}

.footer__text {
	color: var(--muted);
	margin-top: 10px;
}

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

.footer__title {
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
}

.footer__link {
	color: var(--muted);
	display: block;
	margin-bottom: 6px;
}

.footer__note {
	font-size: 12px;
	color: var(--muted);
	align-self: flex-end;
}

@media (max-width: 960px) {
	.hero__content,
	.split,
	.delivery,
	.contacts {
		grid-template-columns: 1fr;
	}

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

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

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

@media (max-width: 720px) {
	.nav {
		position: absolute;
		right: 4vw;
		top: 70px;
		background: #fff;
		border: 1px solid var(--line);
		border-radius: 20px;
		padding: 16px;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		box-shadow: var(--shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition:
			opacity 0.2s ease,
			transform 0.2s ease;
	}

	.nav--open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.burger {
		display: flex;
	}

	.header__btn {
		display: none;
	}

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

	.catalog,
	.advantages {
		grid-template-columns: 1fr;
	}

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

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

@media (max-width: 560px) {
	.hero {
		padding-top: 72px;
	}

	.hero__card {
		padding: 20px;
	}
}
