﻿:root {
  --dark: #070a0a;
  --dark-2: #0d1111;
  --panel: rgba(12, 16, 16, .82);
  --line: rgba(198, 154, 74, .42);
  --gold: #c69a4a;
  --gold-2: #edcf8d;
  --text: #d8cdbc;
  --muted: #a9a194;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(198, 154, 74, .12), transparent 24rem),
    radial-gradient(circle at 85% 4%, rgba(255, 255, 255, .055), transparent 24rem),
    linear-gradient(180deg, #090c0c, #060808 34%, #0a0d0d);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, .025) 36%, transparent 38%),
    linear-gradient(35deg, transparent 0 60%, rgba(198, 154, 74, .035) 61%, transparent 63%);
  opacity: .75;
}

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

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

.site-container {
  width: calc(100% - 96px);
  max-width: 1600px;
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  overflow: hidden;
  min-height: 680px;
  border-bottom: 1px solid rgba(198, 154, 74, .22);
  background:
    linear-gradient(90deg, rgba(5, 7, 7, .98) 0%, rgba(5, 7, 7, .86) 31%, rgba(5, 7, 7, .24) 68%, rgba(5, 7, 7, .5) 100%),
    linear-gradient(180deg, rgba(5, 7, 7, .35), rgba(5, 7, 7, .9)),
    url("images/hover.png") center center / cover no-repeat;
  box-shadow: inset 0 -120px 140px rgba(5, 7, 7, .84);
}

.site-header::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 50%, rgba(198, 154, 74, .18), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 42%);
  pointer-events: none;
}

.header-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 300px;
  align-items: center;
  gap: 28px;
  min-height: 142px;
}

.header-banner-content {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  padding-top: 56px;
  padding-bottom: 86px;
}

.header-kicker {
  margin: 0 0 18px;
  color: #d7c7ad;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.header-banner-content h1 {
  margin: 0;
  color: #ded4c6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 7.5vw, 92px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.header-banner-content h1 span {
  color: var(--gold-2);
}

.header-banner-content p:not(.header-kicker) {
  max-width: 560px;
  margin: 0;
  color: #e4ddd2;
  font-size: 15px;
  line-height: 1.72;
}

.header-ornament {
  margin: 20px 0 24px;
}

.header-actions {
  margin-top: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: rgba(5, 7, 7, .36);
  color: var(--gold-2);
  backdrop-filter: blur(8px);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.brand-title {
  display: block;
  color: #fff7ea;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 11px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  width: auto;
  min-width: 0;
  max-width: 100%;
  justify-self: center;
  border: 1px solid rgba(198, 154, 74, .16);
  border-radius: 999px;
  padding: 13px 24px;
  background: rgba(5, 7, 7, .42);
  backdrop-filter: blur(10px);
  color: #f3eadc;
  font-size: 12px;
  font-weight: 600;
}

.main-nav a {
  transition: color .25s ease;
}

.main-nav a:hover {
  color: var(--gold-2);
}

.header-contacts {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 16px;
  justify-self: end;
  border: 1px solid rgba(198, 154, 74, .16);
  border-radius: 999px;
  width: 300px;
  min-width: 0;
  min-height: 47px;
  padding: 8px 18px;
  background: rgba(5, 7, 7, .46);
  backdrop-filter: blur(10px);
}

@media (min-width: 1081px) {
  .header-contacts {
    position: fixed;
    top: 28px;
    right: 48px;
    z-index: 100;
  }
}

.mobile-call {
  display: none;
  justify-self: end;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(5, 7, 7, .42);
  padding: 10px 14px;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}

.mobile-call:hover {
  background: var(--gold);
  color: #111;
}

.messengers {
  display: flex;
  gap: 8px;
  grid-row: span 2;
}

.messenger {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  transition: transform .25s ease, filter .25s ease;
}

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

.messenger:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.messenger-whatsapp {
  background: #27b567;
}

.messenger-telegram {
  background: #4aa4df;
}

.messenger-max {
  background: #2b3440;
}

.phone {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.schedule {
  color: var(--text);
  font-size: 10px;
  line-height: 1.1;
}

.hero {
  position: relative;
  display: none;
  min-height: 610px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 10, 10, .98) 0%, rgba(7, 10, 10, .91) 42%, rgba(7, 10, 10, .32) 69%, rgba(7, 10, 10, .78) 100%),
    radial-gradient(circle at 70% 46%, rgba(198, 154, 74, .16), transparent 24rem),
    url("images/hero-product.jpg") center right / cover no-repeat;
  filter: saturate(.88);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 490px;
  align-items: center;
  min-height: 610px;
  padding-top: 18px;
}

.hero-copy {
  max-width: 600px;
}

.hero h1 {
  margin: 0;
  color: #ded4c6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 7vw, 82px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--gold-2);
}

.eyebrow {
  margin: 16px 0 0;
  color: #d7c7ad;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 390px;
  max-width: 100%;
  margin: 18px 0 22px;
  color: var(--gold);
}

.ornament span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-text {
  max-width: 560px;
  margin: 0;
  color: #e4ddd2;
  font-size: 15px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 5px;
  padding: 0 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

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

.btn-gold {
  border: 1px solid #d9b66d;
  background: linear-gradient(135deg, #b78332, #e6c476 52%, #b58335);
  box-shadow: 0 18px 46px rgba(198, 154, 74, .23);
  color: #16120a;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: #fff1d4;
}

.btn-outline:hover {
  border-color: var(--gold-2);
  box-shadow: 0 16px 35px rgba(198, 154, 74, .12);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 560px;
  margin-top: 34px;
}

.hero-benefits div {
  text-align: center;
}

.hero-benefits i {
  display: block;
  color: var(--gold);
  font-size: 39px;
  font-style: normal;
  line-height: 1;
}

.hero-benefits span {
  display: block;
  margin-top: 10px;
  color: #e6ddd0;
  font-size: 11px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-product {
  position: absolute;
  right: 48px;
  top: 50px;
  width: clamp(260px, 29vw, 320px);
  height: clamp(340px, 38vw, 420px);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .68);
  transform: rotate(3deg);
}

.lilies {
  position: absolute;
  right: -28px;
  bottom: 56px;
  width: 178px;
  height: 250px;
  background:
    radial-gradient(ellipse at 45% 16%, #fff7e8 0 11%, transparent 12%),
    radial-gradient(ellipse at 70% 31%, #f4ead6 0 13%, transparent 14%),
    radial-gradient(ellipse at 28% 39%, #fdf7ec 0 11%, transparent 12%),
    linear-gradient(84deg, transparent 48%, #678148 49% 51%, transparent 52%),
    linear-gradient(105deg, transparent 42%, #7c944f 43% 45%, transparent 46%),
    radial-gradient(ellipse at 56% 88%, #29221a 0 32%, transparent 33%);
  opacity: .9;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, .6));
}

.section {
  padding: 48px 0;
}

.section-tight {
  padding-top: 12px;
}

.section-compact {
  padding-top: 12px;
  padding-bottom: 28px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 0 24px;
  color: #d9cfc0;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .085em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.section-title span {
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

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

.size-card {
  position: relative;
  min-height: 196px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(198, 154, 74, .27);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.price-card {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 18px 24px;
}

.size-card:hover,
.size-card.is-popular {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(198, 154, 74, .1), 0 20px 60px rgba(0, 0, 0, .28);
}

.size-card:hover {
  transform: translateY(-4px);
}

.size-card b {
  position: absolute;
  top: -11px;
  left: 50%;
  border-radius: 14px;
  padding: 5px 16px;
  background: linear-gradient(135deg, #b78332, #e3c174);
  color: #19130b;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.size-card img {
  width: 74px;
  height: 96px;
  margin: 0 auto 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 7px;
  object-fit: cover;
}

.size-card h3 {
  margin: 0;
  color: #dacbb5;
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 600;
}

.size-card p {
  margin: 4px 0 0;
  color: #ded7ce;
  font-size: 13px;
  line-height: 1.35;
}

.price-card strong {
  display: block;
  margin-top: 18px;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.price-card::after {
  width: 58px;
  height: 1px;
  margin-top: 18px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.benefit-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  min-height: 108px;
  padding: 0 24px;
  border-right: 1px solid rgba(198, 154, 74, .25);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-item i {
  color: var(--gold);
  font-size: 43px;
  font-style: normal;
  line-height: 1;
}

.benefit-item h3 {
  margin: 0 0 7px;
  color: #efe5d6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.benefit-item p {
  margin: 0;
  color: #bbb2a5;
  font-size: 13px;
  line-height: 1.45;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
}

.step {
  position: relative;
  text-align: center;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 35px;
  right: -34px;
  width: 40px;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--gold) 0 3px, transparent 3px 7px);
}

.step i {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #f0d28d;
  font-size: 28px;
  font-style: normal;
}

.step b {
  display: grid;
  width: 22px;
  height: 22px;
  margin: -10px auto 8px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #b78332, #e3c174);
  color: #15100a;
  font-size: 12px;
}

.step p {
  margin: 0;
  color: #e3dbcf;
  font-size: 13px;
  line-height: 1.35;
}

.gallery-wrap {
  display: block;
}

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

.gallery article {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(198, 154, 74, .35);
  border-radius: 7px;
  background: #111;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery article:hover img {
  transform: scale(1.06);
}

.gallery p {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  margin: 0;
  padding: 28px 10px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .84));
  color: #fff1df;
  font-size: 11px;
}

.gallery-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-2);
  cursor: pointer;
  font-size: 31px;
  line-height: 1;
  transition: background .25s ease, color .25s ease;
}

.gallery-arrow:hover {
  background: var(--gold);
  color: #111;
}

.more-link {
  display: flex;
  width: min(300px, 100%);
  height: 31px;
  align-items: center;
  justify-content: center;
  margin: 12px auto 0;
  border: 1px solid rgba(198, 154, 74, .7);
  border-radius: 6px;
  color: #c9b27f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.delivery-section {
  padding-top: 12px;
  padding-bottom: 24px;
}

.delivery-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(198, 154, 74, .34);
  border-radius: 10px;
  background:
    radial-gradient(circle at 8% 18%, rgba(198, 154, 74, .14), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .014));
  padding: 28px 34px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, .28);
}

.delivery-kicker {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.delivery-card h2 {
  margin: 0;
  color: #efe4d5;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.delivery-card > div > p:not(.delivery-kicker) {
  max-width: 430px;
  margin: 14px 0 0;
  color: #c9c0b3;
  font-size: 13px;
  line-height: 1.6;
}

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

.delivery-options article {
  min-height: 142px;
  border: 1px solid rgba(198, 154, 74, .24);
  border-radius: 9px;
  background: rgba(5, 7, 7, .42);
  padding: 18px;
}

.delivery-options i {
  display: inline-flex;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(198, 154, 74, .55);
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: normal;
  line-height: .8;
}

.delivery-options h3 {
  margin: 0 0 8px;
  color: #f0e7d9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.delivery-options p {
  margin: 0;
  color: #bcb3a7;
  font-size: 12px;
  line-height: 1.45;
}

.request-section {
  padding-top: 12px;
  padding-bottom: 34px;
}

.request-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  overflow: hidden;
  min-height: 285px;
  padding: 24px 36px;
  border: 1px solid rgba(198, 154, 74, .35);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(12, 16, 16, .96), rgba(12, 16, 16, .82)),
    url("images/hero-product.jpg") center / cover no-repeat;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .35);
}

.request-form h2 {
  margin: 0 0 12px;
  color: #efe4d5;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.request-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.request-form input,
.request-form select,
.request-form textarea,
.file-field {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(216, 205, 188, .28);
  border-radius: 5px;
  background: rgba(12, 14, 14, .68);
  color: #f4eadc;
  font: inherit;
  font-size: 12px;
  outline: 0;
  padding: 0 14px;
  transition: border-color .25s ease, background .25s ease;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--gold);
  background: rgba(12, 14, 14, .9);
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #aaa296;
}

.request-form textarea {
  grid-column: 1 / -1;
  min-height: 46px;
  padding-top: 12px;
  resize: vertical;
}

.request-form button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 42px;
}

.consent-field {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 10px;
  color: #bdb4a8;
  font-size: 11px;
  line-height: 1.45;
}

.consent-field input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  accent-color: var(--gold);
}

.consent-field a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.file-field {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.file-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-field span {
  color: var(--gold-2);
  font-size: 18px;
}

.file-field em {
  color: #ddd4c7;
  font-size: 11px;
  font-style: normal;
  line-height: 1.15;
}

.privacy {
  margin: 10px 0 0;
  color: #afa79c;
  font-size: 11px;
}

.request-note {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(198, 154, 74, .32);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 14%, rgba(198, 154, 74, .18), transparent 14rem),
    rgba(5, 7, 7, .5);
  padding: 34px;
}

.request-note span {
  width: fit-content;
  border: 1px solid rgba(198, 154, 74, .55);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.request-note h3 {
  margin: 22px 0 0;
  color: #f0e5d7;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.request-note p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #c9c0b3;
  font-size: 14px;
  line-height: 1.65;
}

.request-note strong {
  display: block;
  margin-top: 22px;
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 700;
}

.request-product {
  position: relative;
  min-height: 250px;
}

.request-product img {
  position: absolute;
  right: 78px;
  top: -2px;
  width: 210px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 25px 55px rgba(0, 0, 0, .55);
  transform: rotate(-4deg);
}

.thickness {
  position: absolute;
  left: 26px;
  top: 32px;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: .85;
  text-align: center;
}

.thickness span {
  display: block;
  margin-top: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  line-height: 1.1;
  text-transform: uppercase;
}

.measure {
  position: absolute;
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 500;
}

.measure-width {
  right: 150px;
  bottom: 2px;
}

.measure-height {
  right: 24px;
  top: 118px;
}

.reviews {
  padding-top: 6px;
}

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

.review-grid blockquote {
  margin: 0;
  border: 1px solid rgba(198, 154, 74, .25);
  border-radius: 7px;
  background: rgba(255, 255, 255, .025);
  color: #d9d0c4;
  font-size: 13px;
  line-height: 1.55;
  padding: 18px;
}

.review-grid cite {
  display: block;
  margin-top: 12px;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 10, 10, .98);
  padding: 22px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, .8fr) minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 44px;
}

.footer p,
.footer a {
  display: block;
  color: #bfb5a7;
  font-size: 12px;
  line-height: 1.7;
}

.footer p {
  margin: 12px 0 0;
}

.footer h3 {
  margin: 0 0 10px;
  color: #eee4d5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer a:hover {
  color: var(--gold-2);
}

.footer-phone {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700;
}

.copyright {
  margin-top: 16px;
  color: #827a70;
  font-size: 11px;
  text-align: center;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(198, 154, 74, .12), transparent 24rem),
    linear-gradient(180deg, #090c0c, #060808);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
}

.legal-wrap {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 70px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
}

.legal-card {
  border: 1px solid rgba(198, 154, 74, .32);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  padding: 42px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, .28);
}

.legal-doc > h1 {
  margin: 0 0 28px;
  color: #efe4d5;
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
}

.legal-card + .legal-card {
  margin-top: 18px;
}

.legal-label {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.legal-meta div {
  border: 1px solid rgba(198, 154, 74, .22);
  border-radius: 10px;
  background: rgba(5, 7, 7, .35);
  padding: 14px;
}

.legal-meta span {
  display: block;
  margin-bottom: 6px;
  color: #a99f91;
  font-size: 11px;
}

.legal-meta strong {
  color: #efe4d5;
  font-size: 13px;
}

.legal-card h1,
.legal-card h2 {
  color: #efe4d5;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.legal-card h1 {
  margin: 0 0 24px;
  font-size: 46px;
  line-height: 1;
}

.legal-card h2 {
  margin: 28px 0 10px;
  font-size: 26px;
}

.legal-card p {
  margin: 0;
  color: #c9c0b3;
  font-size: 14px;
  line-height: 1.75;
}

.legal-date {
  margin-top: 30px !important;
  color: var(--gold-2) !important;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: grid;
  width: min(520px, calc(100% - 48px));
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(198, 154, 74, .42);
  border-radius: 14px;
  background: rgba(7, 10, 10, .94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .45);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: #d5cabd;
  font-size: 12px;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner button {
  border: 1px solid #d9b66d;
  border-radius: 8px;
  background: linear-gradient(135deg, #b78332, #e6c476 52%, #b58335);
  color: #16120a;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 12px 18px;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .site-container {
    width: calc(100% - 32px);
    max-width: 1080px;
  }

  .header-grid {
    grid-template-columns: 220px minmax(0, 1fr) 292px;
    gap: 18px;
  }

  .header-contacts {
    width: 292px;
  }

  .main-nav {
    gap: 16px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 410px;
  }

  .hero-product {
    right: 26px;
  }

  .lilies {
    right: -42px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    min-height: 640px;
    background:
      linear-gradient(90deg, rgba(5, 7, 7, .98) 0%, rgba(5, 7, 7, .86) 31%, rgba(5, 7, 7, .24) 68%, rgba(5, 7, 7, .5) 100%),
      linear-gradient(180deg, rgba(5, 7, 7, .35), rgba(5, 7, 7, .9)),
      url("images/hover-1.png") center center / cover no-repeat;
  }

  .header-grid {
    grid-template-columns: 1fr auto;
    min-height: 118px;
  }

  .header-banner-content {
    padding-top: 64px;
  }

  .main-nav {
    display: none;
  }

  .mobile-call {
    position: fixed;
    top: 22px;
    right: 16px;
    z-index: 100;
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 46px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-product {
    right: 50%;
    top: 10px;
    transform: translateX(50%) rotate(2deg);
  }

  .lilies {
    right: calc(50% - 250px);
  }

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

  .benefit-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .benefit-item {
    border-right: 0;
    border-bottom: 1px solid rgba(198, 154, 74, .18);
    padding: 18px 12px;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .step::after {
    display: none;
  }

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

  .request-card {
    grid-template-columns: 1fr;
  }

  .delivery-card {
    grid-template-columns: 1fr;
  }

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

  .request-product {
    min-height: 310px;
  }

  .request-note {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .site-container {
    width: auto;
    margin-right: 15px;
    margin-left: 15px;
  }

  .header-grid {
    grid-template-columns: 1fr auto;
    min-height: 92px;
    gap: 10px;
  }

  .site-header {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(5, 7, 7, .98) 0%, rgba(5, 7, 7, .9) 48%, rgba(5, 7, 7, .58) 100%),
      linear-gradient(180deg, rgba(5, 7, 7, .1), rgba(5, 7, 7, .94)),
      url("images/hover-1.png") 61% center / cover no-repeat;
    box-shadow: inset 0 -82px 94px rgba(5, 7, 7, .9);
  }

  .header-banner-content {
    padding: 30px 10px 42px;
  }

  .header-kicker {
    max-width: 280px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.25;
  }

  .header-banner-content h1 {
    max-width: 330px;
    font-size: clamp(36px, 11.6vw, 48px);
    letter-spacing: .025em;
  }

  .header-banner-content p:not(.header-kicker) {
    max-width: 300px;
    font-size: 13px;
    line-height: 1.55;
  }

  .header-ornament {
    width: 240px;
    margin: 14px 0 16px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(290px, calc(100% - 12px));
    gap: 10px;
    margin-top: 22px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 11px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .header-contacts {
    display: none;
  }

  .mobile-call {
    display: inline-flex;
    backdrop-filter: blur(8px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: .025em;
  }

  .eyebrow {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.2;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
    margin-top: 26px;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 16px;
  }

  .hero-product {
    width: 230px;
    height: 300px;
  }

  .hero-visual {
    min-height: 318px;
  }

  .lilies {
    right: -18px;
    bottom: 30px;
    transform: scale(.72);
  }

  .section {
    padding: 28px 0;
  }

  .section-title {
    font-size: 24px;
    gap: 13px;
  }

  .section-title span {
    width: 38px;
  }

  .size-grid,
  .benefit-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .size-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .price-card {
    min-height: 170px;
  }

  .benefit-item {
    min-height: auto;
    grid-template-columns: 42px 1fr;
    padding: 18px 14px;
  }

  .benefit-item i {
    font-size: 35px;
  }

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

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 142px;
    border: 1px solid rgba(198, 154, 74, .22);
    border-radius: 10px;
    background: rgba(255, 255, 255, .025);
    padding: 16px 12px 14px;
    text-align: center;
  }

  .step i {
    margin: 0;
  }

  .step b {
    margin: -10px auto 8px;
  }

  .step p {
    margin: 0 auto;
    max-width: 150px;
  }

  .gallery-wrap {
    grid-template-columns: 1fr;
  }

  .gallery-arrow {
    display: none;
  }

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

  .gallery article {
    aspect-ratio: 4 / 3;
  }

  .gallery img {
    width: 100%;
    height: 100%;
  }

  .gallery p {
    padding: 36px 8px 9px;
    font-size: 10px;
    line-height: 1.25;
  }

  .request-card {
    width: auto;
    margin-right: 15px;
    margin-left: 15px;
    padding: 22px 18px 20px;
  }

  .delivery-card {
    padding: 22px 16px;
  }

  .delivery-card h2 {
    font-size: 28px;
  }

  .delivery-card > div > p:not(.delivery-kicker) {
    font-size: 12px;
  }

  .delivery-options {
    grid-template-columns: 1fr;
  }

  .request-form h2 {
    font-size: 25px;
    line-height: 1.05;
  }

  .request-form form {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .request-form input,
  .request-form select,
  .request-form textarea,
  .file-field {
    padding-inline: 16px;
  }

  .file-field {
    min-height: 50px;
  }

  .request-product {
    min-height: 300px;
  }

  .request-note {
    padding: 24px 18px;
  }

  .request-note h3 {
    font-size: 30px;
  }

  .request-note p {
    font-size: 13px;
  }

  .request-product img {
    right: 50%;
    width: 190px;
    height: 238px;
    transform: translateX(50%) rotate(-4deg);
  }

  .thickness {
    left: 8px;
    top: 12px;
  }

  .measure-height {
    right: 2px;
  }

  .measure-width {
    right: calc(50% - 42px);
    bottom: 12px;
  }

  .footer {
    padding-top: 28px;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 430px) {
  .site-container {
    width: auto;
    margin-right: 15px;
    margin-left: 15px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark svg {
    width: 25px;
    height: 25px;
  }

  .mobile-call {
    padding: 8px 9px;
    font-size: 9px;
    letter-spacing: .035em;
  }

  .hero h1 {
    font-size: 39px;
  }

  .site-header {
    background-position: 63% center;
  }

  .header-banner-content h1 {
    font-size: 34px;
  }

  .header-kicker {
    max-width: 250px;
    font-size: 12px;
  }

  .header-banner-content p:not(.header-kicker) {
    max-width: 280px;
    font-size: 12px;
  }

  .header-actions {
    width: min(260px, calc(100% - 8px));
  }

  .request-card {
    width: auto;
    margin-right: 15px;
    margin-left: 15px;
    padding-inline: 16px;
  }

  .hero-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .hero-product {
    width: 205px;
    height: 274px;
  }

  .hero-visual {
    min-height: 292px;
  }

  .lilies {
    right: -38px;
    bottom: 18px;
    transform: scale(.62);
  }

  .section-title {
    font-size: 22px;
  }

  .section-title span {
    width: 24px;
  }

  .gallery img {
    height: 100%;
  }

  .thickness {
    width: 78px;
    height: 78px;
    font-size: 20px;
  }

  .measure-height {
    right: -2px;
  }
}

/* Clean mobile layout override */
@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .site-container,
  .request-card {
    width: auto;
    max-width: none;
    margin-right: 15px;
    margin-left: 15px;
  }

  .site-header {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(5, 7, 7, .98) 0%, rgba(5, 7, 7, .9) 56%, rgba(5, 7, 7, .52) 100%),
      linear-gradient(180deg, rgba(5, 7, 7, .18), rgba(5, 7, 7, .96)),
      url("images/hover-1.png") 62% center / cover no-repeat;
    box-shadow: inset 0 -90px 110px rgba(5, 7, 7, .9);
  }

  .header-grid {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .brand-mark svg {
    width: 24px;
    height: 24px;
  }

  .brand-title {
    max-width: 160px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .main-nav,
  .header-contacts {
    display: none;
  }

  .mobile-call {
    position: fixed;
    top: 22px;
    right: 16px;
    z-index: 100;
    display: inline-flex;
    min-height: 36px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-size: 9px;
    letter-spacing: .04em;
    backdrop-filter: blur(8px);
  }

  .header-banner-content {
    padding: 26px 0 38px;
  }

  .header-kicker {
    max-width: 285px;
    margin: 0 0 11px;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: .055em;
  }

  .header-banner-content h1 {
    max-width: 330px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: .93;
    letter-spacing: .025em;
  }

  .header-ornament {
    width: min(245px, 100%);
    margin: 14px 0 16px;
  }

  .header-banner-content p:not(.header-kicker) {
    max-width: 305px;
    font-size: 13px;
    line-height: 1.55;
  }

  .header-actions {
    display: grid;
    width: min(285px, 100%);
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .btn,
  .hero-actions .btn,
  .header-actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    font-size: 11px;
  }

  .hero {
    display: none;
  }

  .section,
  .section-tight,
  .section-compact,
  .request-section,
  .reviews {
    padding: 30px 0;
  }

  .section-title {
    gap: 12px;
    margin-bottom: 20px;
    font-size: 23px;
    line-height: 1.1;
  }

  .section-title span {
    width: 30px;
  }

  .size-grid,
  .benefit-grid,
  .review-grid,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .size-card {
    min-height: auto;
    padding: 20px 16px 18px;
    border-radius: 12px;
  }

  .size-card img {
    width: 72px;
    height: 94px;
  }

  .size-card h3 {
    font-size: 29px;
  }

  .price-card strong {
    font-size: 34px;
  }

  .benefit-item {
    display: grid;
    min-height: auto;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    border-right: 0;
    border-bottom: 1px solid rgba(198, 154, 74, .18);
    padding: 16px 8px;
  }

  .benefit-item:nth-child(5) {
    grid-column: auto;
  }

  .benefit-item i {
    font-size: 34px;
  }

  .benefit-item h3 {
    font-size: 12px;
  }

  .benefit-item p {
    font-size: 12px;
  }

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

  .step {
    display: flex;
    min-height: 138px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(198, 154, 74, .24);
    border-radius: 12px;
    background: rgba(255, 255, 255, .025);
    padding: 15px 9px 13px;
    text-align: center;
  }

  .step::after {
    display: none !important;
  }

  .step i {
    width: 52px;
    height: 52px;
    margin: 0;
    font-size: 24px;
  }

  .step b {
    margin: -9px auto 7px;
  }

  .step p {
    max-width: 135px;
    margin: 0;
    font-size: 12px;
    line-height: 1.28;
  }

  .step:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 6px);
    justify-self: center;
  }

  .gallery-wrap {
    display: block;
  }

  .gallery-arrow {
    display: none;
  }

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

  .gallery article {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

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

  .gallery p {
    padding: 34px 8px 9px;
    font-size: 10px;
    line-height: 1.25;
  }

  .more-link {
    width: auto;
    min-height: 38px;
    margin: 14px 15px 0;
    padding: 0 12px;
    font-size: 10px;
    text-align: center;
  }

  .request-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    border-radius: 14px;
    padding: 20px 16px 18px;
  }

  .delivery-section {
    padding: 30px 0;
  }

  .delivery-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: 14px;
    padding: 20px 16px;
  }

  .delivery-card h2 {
    font-size: 27px;
    line-height: 1.05;
  }

  .delivery-card > div > p:not(.delivery-kicker) {
    max-width: none;
    font-size: 12px;
  }

  .delivery-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .delivery-options article {
    min-height: auto;
    padding: 15px;
  }

  .delivery-options i {
    margin-bottom: 12px;
  }

  .request-form h2 {
    font-size: 25px;
    line-height: 1.05;
  }

  .request-form form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .request-form input,
  .request-form select,
  .request-form textarea,
  .file-field {
    min-height: 46px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 12px;
  }

  .request-form textarea {
    min-height: 76px;
  }

  .request-product {
    min-height: 285px;
  }

  .request-note {
    min-height: auto;
    padding: 24px 18px;
  }

  .request-note h3 {
    font-size: 30px;
  }

  .request-note p {
    font-size: 13px;
  }

  .request-product img {
    right: 50%;
    top: 18px;
    width: 185px;
    height: 232px;
    transform: translateX(50%) rotate(-4deg);
  }

  .thickness {
    left: 0;
    top: 12px;
    width: 78px;
    height: 78px;
    font-size: 19px;
  }

  .measure-width {
    right: calc(50% - 42px);
    bottom: 6px;
  }

  .measure-height {
    right: 0;
    top: 125px;
  }

  .review-grid blockquote {
    padding: 16px;
  }

  .footer {
    padding-top: 28px;
  }

  .footer-grid {
    gap: 22px;
  }

  .legal-wrap {
    width: auto;
    margin-right: 15px;
    margin-left: 15px;
    padding: 28px 0 44px;
  }

  .legal-card {
    padding: 24px 18px;
  }

  .legal-doc > h1 {
    font-size: 34px;
  }

  .legal-meta {
    grid-template-columns: 1fr;
  }

  .legal-card h1 {
    font-size: 34px;
  }

  .legal-card h2 {
    font-size: 23px;
  }

  .cookie-banner {
    right: 15px;
    bottom: 15px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .cookie-banner button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .site-container,
  .request-card {
    margin-right: 12px;
    margin-left: 12px;
  }

  .brand-title {
    max-width: 132px;
    font-size: 10px;
  }

  .mobile-call {
    padding: 0 9px;
  }

  .header-banner-content h1 {
    font-size: 34px;
  }

  .header-banner-content p:not(.header-kicker) {
    max-width: 275px;
  }

  .steps {
    gap: 10px;
  }

  .step {
    min-height: 132px;
    padding-right: 7px;
    padding-left: 7px;
  }

  .gallery {
    gap: 10px;
  }
}

