:root {
  --black: #060504;
  --black-soft: #11100d;
  --ink: #f8f2e5;
  --muted: #b9ad9a;
  --gold: #d9ad58;
  --gold-bright: #f3d18a;
  --line: rgba(217, 173, 88, 0.28);
  --panel: rgba(12, 10, 8, 0.78);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 173, 88, 0.14), transparent 32rem),
    linear-gradient(180deg, #030302 0%, var(--black) 42%, #0b0906 100%);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 42%, rgba(217, 173, 88, 0.16), transparent 28rem),
    #030302;
  opacity: 1;
  transition: opacity 520ms ease;
}

body.is-ready::before {
  opacity: 0;
}

body.is-leaving::before {
  opacity: 1;
}

body main,
body .site-header {
  transition: opacity 420ms ease, transform 520ms ease, filter 520ms ease;
}

body:not(.is-ready) main,
body:not(.is-ready) .site-header,
body.is-leaving main,
body.is-leaving .site-header {
  opacity: 0.01;
  filter: blur(8px);
  transform: translateY(10px);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(217, 173, 88, 0.1);
  background: rgba(3, 3, 2, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  transition:
    opacity 420ms ease,
    transform 520ms ease,
    filter 520ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(217, 173, 88, 0.24);
  background: rgba(3, 3, 2, 0.97);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.48);
}

.catalog-header {
  background: rgba(3, 3, 2, 0.96);
  border-bottom: 1px solid rgba(217, 173, 88, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  object-fit: cover;
  background: #050403;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: rgba(248, 242, 229, 0.78);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav a {
  transition: color 180ms ease;
}

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

.header-catalog-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.header-catalog-link:hover,
.header-catalog-link.is-current {
  background: var(--gold);
  color: #100c05;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 138px clamp(20px, 5vw, 72px) 42px;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../img/hero-sculptural-table-right.png");
  background-size: cover;
  background-position: center 56%;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.26) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.18) 54%, rgba(6, 5, 4, 0.98) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-bottom: 92px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 920px;
  font-size: clamp(68px, 11vw, 170px);
  color: #fff7e8;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(248, 242, 229, 0.84);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #120d05;
  box-shadow: 0 18px 42px rgba(217, 173, 88, 0.22);
}

.button-ghost {
  background: rgba(0, 0, 0, 0.24);
  color: var(--gold-bright);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  border: 1px solid var(--line);
  background: rgba(4, 3, 2, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel div {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 116px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
  container-type: inline-size;
}

.section-heading h2,
.contacts h2 {
  color: #fff4df;
  font-size: 54px;
  font-size: clamp(26px, 9cqw, 82px);
  line-height: 1.04;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 92px);
  max-width: 1120px;
  color: rgba(248, 242, 229, 0.76);
  font-size: clamp(18px, 2vw, 24px);
}

.intro-grid p {
  margin: 0;
}

.advantage-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(217, 173, 88, 0.04));
  border-block: 1px solid rgba(217, 173, 88, 0.12);
}

.advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.advantages article {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.advantages span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.advantages h3,
.work-card h3 {
  margin-top: 44px;
  color: #fff7e8;
  font-size: 32px;
}

.advantages p {
  margin: 18px 0 0;
  color: var(--muted);
}

.works {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 320px;
  gap: 18px;
}

.work-card {
  position: relative;
  display: flex;
  min-height: 320px;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.84)),
    url("../img/hero-sculptural-table-right.png");
  background-size: cover;
  box-shadow: var(--shadow);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(243, 209, 138, 0.28);
  pointer-events: none;
}

.work-card div {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 34px;
  container-type: inline-size;
}

.work-card p {
  margin: 0;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-card h3 {
  max-width: 560px;
  margin-top: 12px;
  font-size: 28px;
  font-size: clamp(24px, 10cqw, 32px);
  line-height: 1.08;
}

.work-dining {
  grid-row: span 2;
  background-position: center;
}

.work-chairs {
  background-position: 65% center;
}

.work-console {
  background-position: 35% center;
}

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

blockquote {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--panel);
}

blockquote p {
  margin: 0;
  color: rgba(248, 242, 229, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.18;
}

cite {
  display: block;
  margin-top: 26px;
  color: var(--gold-bright);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 42px;
  align-items: center;
  padding: 100px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(6, 5, 4, 0.88), rgba(6, 5, 4, 0.96)),
    url("../img/hero-sculptural-table-right.png");
  background-size: cover;
  background-position: center;
}

.contact-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.contact-copy {
  container-type: inline-size;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--gold);
  background: rgba(0, 0, 0, 0.68);
  box-shadow: var(--shadow);
}

.contact-card a:not(.button),
.contact-card span {
  color: #fff4df;
  font-size: 18px;
}

.catalog-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(6, 5, 4, 0.94), rgba(6, 5, 4, 0.98)),
    url("../img/hero-sculptural-table-right.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.catalog-hero {
  display: grid;
  min-height: 48vh;
  align-items: end;
  padding: 148px clamp(20px, 5vw, 72px) 62px;
}

.catalog-hero div {
  max-width: 900px;
  container-type: inline-size;
}

.catalog-hero h1 {
  max-width: 980px;
  font-size: 72px;
  font-size: clamp(36px, 12cqw, 120px);
}

.catalog-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(248, 242, 229, 0.78);
  font-size: clamp(18px, 2vw, 23px);
}

.catalog-shell {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 28px;
  padding: 0 clamp(20px, 5vw, 72px) 92px;
}

.catalog-filters,
.product-card,
.catalog-empty {
  border: 1px solid var(--line);
  background: rgba(8, 7, 5, 0.76);
  backdrop-filter: blur(18px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(300px, 1.2fr) minmax(220px, 0.8fr);
  gap: clamp(32px, 6vw, 96px);
  padding: 56px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050403;
  color: var(--muted);
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
}

.footer-links,
.footer-contacts {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a,
.footer-contacts a {
  color: #fff4df;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contacts a:hover,
.legal-page a:hover {
  color: var(--gold-bright);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(620px, calc(100% - 40px));
  align-items: center;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--gold);
  background: rgba(7, 6, 4, 0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

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

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner a,
.order-consent a,
.legal-page a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner .button {
  min-width: 84px;
}

.order-consent {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.legal-page {
  min-height: 70vh;
  padding: 150px clamp(20px, 5vw, 72px) 100px;
  background: linear-gradient(180deg, #070604, #0c0a07);
  container-type: inline-size;
}

.legal-page > * {
  width: min(900px, 100%);
  margin-inline: auto;
}

.legal-page h1 {
  font-size: clamp(42px, 8cqw, 88px);
  line-height: 1.02;
}

.legal-page section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  color: #fff4df;
  font-size: clamp(28px, 4cqw, 42px);
  line-height: 1.08;
}

.legal-page section p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-updated {
  margin-top: 20px;
  color: var(--gold-bright);
  font-size: 13px;
  text-transform: uppercase;
}

.catalog-filters {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 30px;
  padding: 26px;
}

.filter-group h2 {
  margin: 0 0 14px;
  color: #fff4df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
}

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

.filter-button,
.catalog-reset {
  min-height: 38px;
  border: 1px solid rgba(217, 173, 88, 0.38);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button {
  width: 100%;
  min-height: 46px;
  padding: 8px 10px;
}

.filter-button[data-filter-value="all"] {
  grid-column: 1 / -1;
}

.filter-button:hover,
.filter-button.is-active,
.catalog-reset:hover {
  border-color: var(--gold);
  background: rgba(217, 173, 88, 0.14);
  color: var(--gold-bright);
}

.catalog-content {
  min-width: 0;
}

.filter-summary {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-reset {
  width: 100%;
  padding: 8px 12px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.product-image {
  position: relative;
  aspect-ratio: 3 / 2;
  background: #020201;
}

.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-image.is-placeholder img,
.product-gallery-item.is-placeholder img {
  padding: 18%;
  object-fit: contain;
  opacity: 0.72;
  background: #050504;
}

.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: calc(100% - 28px);
}

.product-status,
.product-flag {
  padding: 7px 10px;
  border: 1px solid rgba(243, 209, 138, 0.42);
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-flag-new {
  border-color: rgba(214, 224, 190, 0.58);
  color: #e4edcf;
}

.product-flag-promo {
  border-color: rgba(243, 209, 138, 0.78);
  background: var(--gold);
  color: #120d05;
}

.product-detail-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-meta {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-body h2 {
  margin-top: 12px;
  min-height: 2em;
  color: #fff7e8;
  font-size: 34px;
  line-height: 1;
}

.product-body p {
  display: -webkit-box;
  height: 88px;
  margin: 16px 0 0;
  overflow: hidden;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 22px;
}

.product-body > .product-price {
  margin-top: auto;
  padding-top: 22px;
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.product-actions .button {
  width: 100%;
  min-height: 46px;
  padding-inline: 12px;
}

.product-page {
  min-height: 100vh;
  padding: 132px clamp(20px, 5vw, 72px) 96px;
  background: linear-gradient(180deg, #050403 0%, #0b0906 100%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 1480px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a:hover {
  color: var(--gold-bright);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: clamp(34px, 5vw, 80px);
  max-width: 1480px;
  margin: 0 auto;
  align-items: start;
}

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

.product-gallery-item {
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #020201;
  color: inherit;
  cursor: zoom-in;
}

.product-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-gallery-item:hover img {
  transform: scale(1.025);
}

.product-gallery-item:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.product-model-item {
  position: relative;
  isolation: isolate;
}

.product-model-preview {
  position: absolute;
  inset: 0;
  display: block;
  background:
    radial-gradient(circle at 28% 22%, rgba(244, 216, 166, 0.17), transparent 38%),
    radial-gradient(circle at 76% 74%, rgba(120, 142, 158, 0.12), transparent 44%),
    linear-gradient(145deg, #312d27 0%, #1b1a17 52%, #28231d 100%);
}

.product-model-item.is-model-unavailable .product-model-preview::after {
  content: "3D недоступно";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-model-preview canvas,
.product-model-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.product-model-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  min-width: 42px;
  padding: 7px 9px;
  border: 1px solid rgba(243, 209, 138, 0.56);
  background: rgba(0, 0, 0, 0.74);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
}

.image-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(2, 2, 1, 0.97);
  color: var(--ink);
}

.image-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
}

.product-model-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #030302;
  color: var(--ink);
}

.product-model-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.94);
}

.product-model-lightbox-inner,
.product-model-stage {
  width: 100%;
  height: 100%;
}

.product-model-lightbox-inner {
  position: relative;
}

.product-model-stage {
  position: relative;
  background:
    radial-gradient(circle at 28% 22%, rgba(244, 216, 166, 0.17), transparent 38%),
    radial-gradient(circle at 76% 74%, rgba(120, 142, 158, 0.12), transparent 44%),
    linear-gradient(145deg, #312d27 0%, #1b1a17 52%, #28231d 100%);
  touch-action: none;
  cursor: grab;
}

.product-model-stage:active {
  cursor: grabbing;
}

.product-model-stage.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 2px solid rgba(217, 173, 88, 0.22);
  border-top-color: var(--gold-bright);
  border-radius: 50%;
  animation: model-loading 800ms linear infinite;
}

@keyframes model-loading {
  to { transform: rotate(360deg); }
}

.image-lightbox-inner {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  width: 100%;
  height: 100%;
  align-items: center;
  gap: 18px;
  padding: 28px;
}

.image-lightbox figure {
  display: grid;
  min-width: 0;
  height: 100%;
  margin: 0;
  align-items: center;
  justify-items: center;
}

.image-lightbox figure img {
  grid-area: 1 / 1;
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
}

.image-lightbox figcaption {
  grid-area: 1 / 1;
  align-self: end;
  margin-bottom: 4px;
  padding: 5px 9px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
}

.image-lightbox-close,
.image-lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.58);
  color: var(--gold-bright);
  cursor: pointer;
  line-height: 1;
}

.image-lightbox-close:hover,
.image-lightbox-nav:hover {
  border-color: var(--gold);
  background: rgba(217, 173, 88, 0.12);
}

.image-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  font-size: 30px;
}

.image-lightbox-nav {
  width: 58px;
  height: 58px;
  font-size: 44px;
}

.product-summary {
  position: sticky;
  top: 116px;
  padding-top: 12px;
  container-type: inline-size;
}

.product-summary h1 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  font-size: 56px;
  font-size: clamp(34px, 12cqw, 76px);
}

.product-lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.product-detail-price {
  margin-top: 34px;
}

.product-detail-price strong {
  font-size: 42px;
}

.product-order-button {
  width: 100%;
  margin-top: 28px;
}

.product-story,
.product-assets {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 7vw, 120px);
  max-width: 1480px;
  margin: 100px auto 0;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.product-story h2,
.product-assets h2 {
  color: #fff4df;
  font-size: clamp(42px, 5vw, 70px);
}

.product-story > p,
.product-assets > div > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.35;
}

.product-assets {
  align-items: center;
}

.product-assets > div > p:not(.eyebrow) {
  margin-top: 18px;
  font-family: inherit;
  font-size: 17px;
}

.asset-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.order-modal {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--gold);
  background: #090806;
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.82);
}

.order-modal::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(7px);
}

.order-modal-inner {
  position: relative;
  padding: clamp(28px, 6vw, 54px);
  container-type: inline-size;
}

.order-modal h2 {
  max-width: 500px;
  color: #fff4df;
  font-size: 42px;
  font-size: clamp(22px, 8.5cqw, 48px);
  line-height: 1.08;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.modal-close:hover {
  border-color: var(--gold);
}

.order-modal-copy {
  margin: 22px 0 0;
  color: var(--muted);
}

.order-modal-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 14px;
}

.order-modal-contacts a {
  color: var(--gold-bright);
  font-size: 14px;
  text-decoration: none;
}

.order-modal-contacts a:hover {
  color: #fff4df;
}

.order-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.order-form label,
.order-form label span {
  display: grid;
  gap: 8px;
}

.order-form label span {
  color: #fff4df;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(217, 173, 88, 0.34);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font: inherit;
  padding: 13px 15px;
}

.order-form textarea {
  min-height: 130px;
  resize: vertical;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(217, 173, 88, 0.12);
}

.order-form-status {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.order-form-status.is-success {
  color: #d8d69c;
}

.order-form-status.is-error {
  color: #ffaaa0;
}

.order-form .button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.product-price del {
  color: rgba(185, 173, 154, 0.66);
  font-size: 15px;
}

.product-price strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

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

@media (max-width: 1500px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .catalog-shell {
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .filter-summary {
    grid-column: 1 / -1;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .catalog-reset {
    width: auto;
  }
}

@media (max-width: 960px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    display: none;
  }

  .catalog-nav {
    display: flex;
  }

  .catalog-page {
    background-attachment: scroll;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .intro-grid,
  .contacts,
  .reviews {
    grid-template-columns: 1fr;
  }

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

  .works {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(310px, auto);
  }

  .work-dining {
    grid-row: auto;
  }

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

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

  .product-summary {
    position: static;
  }

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

  .footer-contacts {
    grid-column: 1 / -1;
  }
}

@media (max-width: 740px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 16px 18px;
  }

  .brand {
    gap: 8px;
    font-size: 20px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .catalog-header .brand span {
    display: none;
  }

  .catalog-nav {
    gap: 10px;
    font-size: 11px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 104px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .header-catalog-link {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .catalog-hero {
    min-height: 42vh;
    padding-top: 108px;
  }

  .catalog-filters {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .filter-summary {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-reset {
    width: 100%;
  }

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

  .product-page {
    padding-top: 100px;
  }

  .product-body h2 {
    font-size: 28px;
  }

  .product-price {
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .product-price strong {
    font-size: 26px;
  }

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

  .product-gallery {
    gap: 7px;
  }

  .image-lightbox-inner {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 14px;
  }

  .image-lightbox-nav {
    width: 42px;
    height: 48px;
    font-size: 34px;
  }

  .image-lightbox-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .product-story,
  .product-assets {
    grid-template-columns: 1fr;
    margin-top: 72px;
    padding-top: 50px;
  }

  .asset-links {
    justify-content: flex-start;
  }

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

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 78px;
  }

  .advantages article {
    min-height: 240px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-block: 42px;
  }

  .footer-contacts {
    grid-column: auto;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    gap: 16px;
    padding: 18px;
  }

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

  .legal-page {
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .work-card div,
  blockquote,
  .contact-card {
    padding: 26px;
  }
}

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

  body::before,
  body main,
  body .site-header {
    transition: none;
  }

  body:not(.is-ready) main,
  body:not(.is-ready) .site-header,
  body.is-leaving main,
  body.is-leaving .site-header {
    filter: none;
    transform: none;
  }
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
