:root {
  --bg: #0b0b0b;
  --panel: #111111;
  --panel-soft: #151515;
  --text: #f4f2ee;
  --muted: #8d8b86;
  --muted-2: #b7b4ae;
  --red: #db261c;
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,255,255,.2);
  --max: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; width: 100%; }
svg { width: 20px; height: 20px; flex: 0 0 auto; }

.section-shell { width: min(var(--max), calc(100% - 64px)); margin-inline: auto; }
.section-block { padding-block: clamp(92px, 10vw, 152px); border-top: 1px solid var(--line); }
.eyebrow { display: block; color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(11,11,11,.9);
  backdrop-filter: blur(16px);
}
.brand, .drawer-brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand { justify-self: center; }
.brand img, .drawer-brand img { width: 32px; height: 32px; object-fit: contain; }
.brand span, .drawer-brand span { font-size: 15px; font-weight: 700; letter-spacing: .26em; }
.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease;
}
.icon-button:hover { background: rgba(255,255,255,.07); }
.menu-trigger { justify-self: start; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 20px; }
.header-whatsapp { color: var(--muted-2); font-size: 13px; transition: color .2s ease; }
.header-whatsapp:hover { color: white; }
.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}
.cart-button span { font-size: 13px; }
.cart-button b, .floating-cart b {
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--red);
  color: white;
  font-size: 10px;
}

.menu-overlay, .cart-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.menu-overlay.open, .cart-overlay.open { opacity: 1; visibility: visible; }
.menu-drawer {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: min(420px, 90vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 24px 28px 30px;
  background: #0f0f0f;
  border-right: 1px solid var(--line);
  transform: translateX(-102%);
  transition: transform .38s cubic-bezier(.22,.8,.25,1);
}
.menu-drawer.open { transform: translateX(0); }
.menu-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-nav { display: flex; flex-direction: column; margin-top: 72px; }
.drawer-nav a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 400;
  letter-spacing: -.03em;
  transition: color .2s ease, padding-left .2s ease;
}
.drawer-nav a:first-child { border-top: 1px solid var(--line); }
.drawer-nav a span { color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.drawer-nav a:hover { color: var(--red); padding-left: 8px; }
.drawer-meta { margin-top: auto; padding-top: 28px; color: var(--muted-2); }
.drawer-meta > a:first-child { display: block; color: white; font-size: 19px; }
.drawer-meta p { max-width: 260px; margin: 10px 0 24px; font-size: 14px; }

.hero {
  min-height: min(900px, 100dvh);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: stretch;
  gap: clamp(44px, 6vw, 96px);
  padding-top: 118px;
  padding-bottom: 48px;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding-block: 52px 24px; }
.hero h1 {
  max-width: 720px;
  margin: 25px 0 0;
  font-size: clamp(54px, 6.1vw, 92px);
  line-height: .98;
  font-weight: 450;
  letter-spacing: -.055em;
}
.hero-copy > p { max-width: 540px; margin: 30px 0 0; color: var(--muted-2); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid var(--red);
  border-radius: 4px;
  background: var(--red);
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { background: #f03126; border-color: #f03126; transform: translateY(-1px); }
.button.disabled { pointer-events: none; opacity: .38; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--muted-2); font-size: 13px; transition: color .2s ease; }
.text-link svg { width: 17px; height: 17px; }
.text-link:hover { color: white; }
.hero-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: auto; padding-top: 56px; }
.hero-meta > div { padding: 0 20px; border-left: 1px solid var(--line); }
.hero-meta > div:first-child { padding-left: 0; border-left: 0; }
.hero-meta span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.hero-meta strong { display: block; margin-top: 8px; font-size: 16px; font-weight: 500; }
.hero-media { position: relative; min-height: 660px; overflow: hidden; background: var(--panel); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.32)); pointer-events: none; }
.hero-media img { height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.04) brightness(.76); transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.hero-media:hover img { transform: scale(1.018); }
.media-label { position: absolute; z-index: 2; right: 24px; bottom: 24px; min-width: 180px; padding: 16px 18px; background: rgba(10,10,10,.78); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); }
.media-label span { display: block; color: var(--muted-2); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.media-label strong { display: block; margin-top: 5px; font-size: 21px; font-weight: 500; }

.section-heading { display: grid; grid-template-columns: minmax(120px,.35fr) minmax(340px,.9fr) minmax(250px,.55fr); align-items: start; gap: 40px; }
.section-heading h2 { margin: -7px 0 0; font-size: clamp(44px, 5vw, 72px); line-height: 1.02; font-weight: 420; letter-spacing: -.05em; }
.section-heading p { margin: 0; color: var(--muted-2); font-size: 15px; line-height: 1.7; }
.section-heading.compact { grid-template-columns: minmax(120px,.35fr) minmax(340px,1fr) minmax(240px,.55fr); }
.section-heading.compact h2 { font-size: clamp(42px, 4.7vw, 66px); }

.about-gallery { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(260px,.65fr); gap: 16px; margin-top: 70px; }
.about-gallery figure { position: relative; min-height: 500px; margin: 0; overflow: hidden; background: var(--panel); }
.about-gallery img { height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.04) brightness(.72); }
.about-gallery figcaption { position: absolute; left: 20px; bottom: 18px; padding: 9px 11px; color: #d4d1ca; background: rgba(8,8,8,.72); font-size: 12px; backdrop-filter: blur(8px); }
.about-side { min-height: 500px; }
.amenities { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); margin-top: 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.amenities span { min-height: 74px; display: flex; align-items: center; gap: 10px; padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted-2); font-size: 13px; }
.amenities svg { width: 16px; height: 16px; color: var(--red); }

.price-list { margin-top: 72px; border-top: 1px solid var(--line-strong); }
.price-row { min-height: 126px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.price-row h3 { margin: 0; font-size: clamp(23px, 2.3vw, 34px); font-weight: 430; letter-spacing: -.025em; }
.price-row p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.price-row > strong { font-size: clamp(30px, 3.4vw, 48px); font-weight: 430; letter-spacing: -.04em; }
.price-row.featured { color: white; }
.price-row.featured h3::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 12px; border-radius: 50%; background: var(--red); vertical-align: middle; }
.card-note { display: grid; grid-template-columns: minmax(160px,.35fr) minmax(0,1fr); gap: 36px; max-width: 820px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.card-note span { font-size: 13px; font-weight: 600; }
.card-note p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.catalog-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.42fr); align-items: end; gap: 48px; }
.catalog-head .section-heading { display: block; }
.catalog-head .section-heading h2 { margin-top: 14px; }
.catalog-head > p { margin: 0 0 5px; color: var(--muted-2); font-size: 15px; line-height: 1.7; }
.category-tabs { display: flex; align-items: center; gap: 26px; margin-top: 54px; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--line); }
.category-tabs::-webkit-scrollbar { display: none; }
.category-tabs button { flex: 0 0 auto; padding: 0 0 13px; border: 0; border-bottom: 1px solid transparent; background: transparent; color: var(--muted); font-size: 13px; cursor: pointer; }
.category-tabs button:hover { color: white; }
.category-tabs button.active { color: white; border-bottom-color: var(--red); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 30px 18px; margin-top: 34px; }
.product-card { min-width: 0; }
.product-image-wrap { position: relative; aspect-ratio: 1 / 1.08; display: grid; place-items: center; overflow: hidden; background: #f1f0ed; }
.product-image-wrap img { width: 82%; height: 82%; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.035); }
.stock-badge { position: absolute; top: 12px; left: 12px; padding: 6px 8px; background: #151515; color: white; font-size: 10px; }
.product-info { padding-top: 16px; }
.product-info h3 { margin: 0; font-size: 17px; font-weight: 520; }
.product-info p { display: -webkit-box; min-height: 40px; margin: 7px 0 0; overflow: hidden; color: var(--muted); font-size: 12px; line-height: 1.55; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.product-bottom strong { font-size: 17px; font-weight: 520; }
.product-bottom button { width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.product-bottom button:hover { border-color: var(--red); background: var(--red); }
.product-bottom button:disabled { opacity: .35; cursor: not-allowed; }
.catalog-empty { grid-column: 1 / -1; padding: 70px 0; color: var(--muted); border-bottom: 1px solid var(--line); }

.contacts-section { display: grid; grid-template-columns: minmax(0,.85fr) minmax(440px,1.15fr); gap: clamp(60px, 10vw, 150px); }
.contacts-copy h2 { margin: 24px 0 0; font-size: clamp(50px, 6vw, 84px); line-height: .98; font-weight: 420; letter-spacing: -.055em; }
.contacts-copy > p { margin: 26px 0 0; color: var(--muted-2); }
.contact-number { display: inline-block; margin-top: 13px; font-size: clamp(25px, 3vw, 40px); font-weight: 430; letter-spacing: -.03em; }
.contact-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 34px; }
.contacts-details { border-top: 1px solid var(--line-strong); }
.detail-row { display: grid; grid-template-columns: minmax(120px,.35fr) minmax(0,1fr); gap: 28px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.detail-row > span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.detail-row > div { display: grid; grid-template-columns: 1fr auto; gap: 9px 24px; }
.detail-row strong, .detail-row b, .detail-row a { font-size: 14px; font-weight: 500; }
.detail-row b { text-align: right; color: var(--muted-2); }
.detail-row a { grid-column: 1 / -1; transition: color .2s ease; }
.detail-row a:hover { color: var(--red); }
.map-card { position: relative; min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; margin-top: 22px; padding: 28px; overflow: hidden; background: #d9d7d1; color: #111; }
.map-card::before, .map-card::after { content: ""; position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(35deg, transparent 46%, #999 47%, #999 48%, transparent 49%), linear-gradient(145deg, transparent 45%, #aaa 46%, #aaa 47%, transparent 48%); background-size: 120px 80px, 160px 110px; }
.map-card::after { transform: rotate(20deg) scale(1.4); }
.map-card span, .map-card strong, .map-card i { position: relative; z-index: 2; }
.map-card span { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.map-card strong { margin-top: 5px; font-size: 25px; font-weight: 500; }
.map-card i { position: absolute; top: 24px; right: 24px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(0,0,0,.22); border-radius: 50%; }

.footer { min-height: 120px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer-brand { justify-self: start; color: white; }
.footer > span { justify-self: center; }
.footer > a:last-child { justify-self: end; transition: color .2s ease; }
.footer > a:last-child:hover { color: white; }

.floating-cart { display: none; }
.cart-drawer { position: fixed; z-index: 120; top: 0; right: 0; width: min(470px, 94vw); height: 100dvh; display: grid; grid-template-rows: auto 1fr auto; background: #111; border-left: 1px solid var(--line); transform: translateX(102%); transition: transform .38s cubic-bezier(.22,.8,.25,1); }
.cart-drawer.open { transform: translateX(0); }
.cart-overlay { z-index: 115; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-header small { color: var(--muted); }
.cart-header h2 { margin: 3px 0 0; font-size: 28px; font-weight: 430; }
.cart-content { overflow-y: auto; padding: 12px 24px; }
.cart-line { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line > img { width: 76px; height: 88px; object-fit: contain; background: #eee; }
.cart-line-info h3 { margin: 0; font-size: 15px; font-weight: 500; }
.cart-line-info > strong { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; font-weight: 400; }
.cart-line > b { font-size: 14px; font-weight: 500; }
.quantity-control { width: max-content; display: flex; align-items: center; gap: 12px; margin-top: 13px; }
.quantity-control button { width: 27px; height: 27px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.quantity-control svg { width: 13px; height: 13px; }
.empty-cart { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--muted); }
.empty-cart > svg { width: 34px; height: 34px; margin-bottom: 18px; }
.empty-cart strong { color: white; font-size: 18px; font-weight: 500; }
.empty-cart p { margin: 7px 0 0; font-size: 13px; }
.cart-footer { padding: 20px 24px 24px; border-top: 1px solid var(--line); }
.cart-footer > div { display: flex; align-items: end; justify-content: space-between; margin-bottom: 17px; }
.cart-footer span { color: var(--muted); font-size: 13px; }
.cart-footer strong { font-size: 28px; font-weight: 440; }
.cart-footer .button { width: 100%; }

.loading-screen, .fatal-error { min-height: 100dvh; display: grid; place-items: center; text-align: center; padding: 28px; }
.loader-logo { display: flex; align-items: center; gap: 12px; }
.loader-logo img { width: 38px; height: 38px; }
.loader-logo strong { font-size: 15px; letter-spacing: .24em; }
.fatal-error h1 { margin: 0; font-size: 34px; font-weight: 450; }
.fatal-error p { color: var(--muted); }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0,.9fr) minmax(380px,1.1fr); gap: 42px; }
  .section-heading { grid-template-columns: 120px 1fr; }
  .section-heading p { grid-column: 2; max-width: 620px; }
  .amenities { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .contacts-section { gap: 60px; }
}

@media (max-width: 820px) {
  .section-shell { width: min(100% - 36px, var(--max)); }
  .site-header { height: 68px; padding-inline: 18px; }
  .header-whatsapp, .cart-button span { display: none; }
  .brand span { font-size: 13px; }
  .brand img { width: 29px; height: 29px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 26px; padding-top: 104px; padding-bottom: 70px; }
  .hero-copy { padding: 24px 0 0; }
  .hero h1 { font-size: clamp(46px, 13vw, 74px); }
  .hero-copy > p { margin-top: 22px; font-size: 16px; }
  .hero-meta { order: 4; margin-top: 40px; padding-top: 0; }
  .hero-meta > div { padding-inline: 14px; }
  .hero-meta strong { font-size: 13px; }
  .hero-media { min-height: 520px; }
  .section-block { padding-block: 86px; }
  .section-heading, .section-heading.compact { display: block; }
  .section-heading h2, .section-heading.compact h2 { margin-top: 16px; font-size: clamp(40px, 11vw, 62px); }
  .section-heading p { margin-top: 24px; }
  .about-gallery { grid-template-columns: 1fr; margin-top: 44px; }
  .about-gallery figure, .about-side { min-height: 440px; }
  .about-side { display: none; }
  .amenities { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .price-list { margin-top: 46px; }
  .price-row { min-height: 112px; }
  .price-row > strong { font-size: 31px; }
  .card-note { grid-template-columns: 1fr; gap: 10px; }
  .catalog-head { grid-template-columns: 1fr; gap: 22px; }
  .category-tabs { margin-top: 36px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px 12px; }
  .contacts-section { grid-template-columns: 1fr; gap: 54px; }
  .contacts-copy h2 { font-size: clamp(48px, 13vw, 72px); }
  .footer { grid-template-columns: 1fr auto; min-height: 104px; }
  .footer > span { display: none; }
}

@media (max-width: 520px) {
  .section-shell { width: min(100% - 28px, var(--max)); }
  .hero { padding-top: 94px; }
  .hero h1 { font-size: 49px; letter-spacing: -.045em; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-meta { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .hero-meta > div:nth-child(3) { grid-column: 1 / -1; padding-left: 0; border-left: 0; padding-top: 17px; border-top: 1px solid var(--line); }
  .hero-media { min-height: 430px; }
  .media-label { right: 14px; bottom: 14px; }
  .section-block { padding-block: 72px; }
  .section-heading h2, .section-heading.compact h2 { font-size: 42px; }
  .about-gallery figure { min-height: 360px; }
  .amenities span { min-height: 66px; padding: 13px 10px; font-size: 12px; }
  .price-row { min-height: 104px; align-items: end; }
  .price-row h3 { font-size: 21px; }
  .price-row p { max-width: 205px; font-size: 12px; }
  .price-row > strong { font-size: 26px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-image-wrap { aspect-ratio: 1 / 1.15; }
  .product-info h3 { font-size: 14px; }
  .product-info p { min-height: 36px; font-size: 11px; }
  .product-bottom strong { font-size: 14px; }
  .product-bottom button { width: 34px; height: 34px; }
  .detail-row { grid-template-columns: 1fr; gap: 10px; }
  .map-card { min-height: 200px; padding: 20px; }
  .map-card strong { font-size: 20px; }
  .footer-brand span { font-size: 12px; }
  .menu-drawer { padding: 20px 20px 26px; }
  .drawer-nav { margin-top: 52px; }
  .drawer-nav a { min-height: 64px; font-size: 27px; }
}


/* V5 — полноэкранный минималистичный первый экран */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: block;
  padding: 0;
  background: #090909;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.08) 38%, rgba(0,0,0,.72) 100%),
    linear-gradient(90deg, rgba(0,0,0,.46) 0%, rgba(0,0,0,.04) 58%, rgba(0,0,0,.16) 100%);
  pointer-events: none;
}
.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: grayscale(100%) contrast(1.06) brightness(.82);
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 116px;
  padding-bottom: clamp(48px, 7vh, 84px);
}
.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
  font-weight: 430;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero-copy > p {
  max-width: 460px;
  margin: 13px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.55;
}
.hero-scroll {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100vw - var(--max)) / 2));
  bottom: clamp(48px, 7vh, 84px);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: white;
  transform: rotate(90deg);
  transition: background .2s ease, border-color .2s ease;
}
.hero-scroll:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.hero-scroll svg { width: 16px; height: 16px; }

@media (max-width: 820px) {
  .hero { min-height: 100svh; }
  .hero-background { object-position: 63% center; }
  .hero-copy {
    min-height: 100svh;
    padding-top: 92px;
    padding-bottom: calc(34px + env(safe-area-inset-bottom));
  }
  .hero h1 {
    max-width: 310px;
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.08;
    font-weight: 430;
  }
  .hero-copy > p {
    max-width: 300px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
  }
  .hero-scroll {
    right: 18px;
    bottom: calc(34px + env(safe-area-inset-bottom));
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 520px) {
  .hero-copy { padding-top: 82px; }
  .hero h1 { font-size: 30px; }
  .hero-copy > p { max-width: 270px; font-size: 12px; }
}


/* V5.1 — строгий минимализм */
.site-header {
  background: rgba(8,8,8,.62);
  border-bottom-color: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
}
.hero-scroll { display: none !important; }

/* V6 — первый экран по утверждённому макету */
.site-header {
  height: 92px;
  padding-inline: max(32px, calc((100vw - var(--max)) / 2));
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.76) 0%, rgba(5,5,5,.28) 62%, transparent 100%);
  backdrop-filter: none;
}
.site-header .icon-button {
  width: 46px;
  height: 46px;
}
.site-header .menu-trigger svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.45;
}
.site-header .brand {
  gap: 13px;
}
.site-header .brand img {
  width: 38px;
  height: 38px;
}
.site-header .brand span {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: .31em;
}
.header-actions {
  gap: 30px;
}
.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
}
.header-whatsapp svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.55;
}
.cart-button {
  gap: 10px;
}
.cart-button svg {
  width: 23px;
  height: 23px;
}
.cart-button span {
  font-size: 15px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  display: block;
  padding: 0;
  background: #070707;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.04) 28%, rgba(0,0,0,.18) 54%, rgba(0,0,0,.86) 100%),
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.38) 33%, rgba(0,0,0,.04) 68%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(circle at 72% 46%, transparent 0 24%, rgba(0,0,0,.08) 58%, rgba(0,0,0,.38) 100%);
  pointer-events: none;
}
.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.7) contrast(1.08) brightness(.72) sepia(.05);
  transform: scale(1.005);
}
.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 120px;
  padding-bottom: clamp(54px, 6.5vh, 78px);
}
.hero-accent {
  width: 72px;
  height: 3px;
  display: block;
  margin-bottom: 30px;
  background: var(--red);
}
.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(46px, 4.15vw, 66px);
  line-height: 1.08;
  font-weight: 330;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero-copy > p {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.70);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
}
.hero-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}
.hero-detail {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(12,12,12,.38);
  color: rgba(255,255,255,.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(8px);
  font-size: 15px;
  white-space: nowrap;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
a.hero-detail:hover {
  border-color: rgba(255,255,255,.34);
  background: rgba(12,12,12,.58);
  color: #fff;
}
.hero-detail svg {
  width: 21px;
  height: 21px;
  color: var(--red);
  stroke-width: 1.6;
}
.hero-hours i {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.33);
}

@media (max-width: 820px) {
  .site-header {
    height: 88px;
    padding-inline: 18px;
    grid-template-columns: 1fr auto 1fr;
    background: linear-gradient(180deg, rgba(4,4,4,.80) 0%, rgba(4,4,4,.18) 76%, transparent 100%);
  }
  .site-header .icon-button {
    width: 42px;
    height: 42px;
  }
  .site-header .menu-trigger svg {
    width: 28px;
    height: 28px;
  }
  .site-header .brand {
    gap: 10px;
  }
  .site-header .brand img {
    width: 37px;
    height: 37px;
  }
  .site-header .brand span {
    font-size: 15px;
    letter-spacing: .26em;
  }
  .header-actions {
    gap: 0;
  }
  .header-whatsapp {
    width: 42px;
    height: 42px;
    justify-content: center;
    color: #fff;
  }
  .header-whatsapp span,
  .site-header .cart-button {
    display: none;
  }
  .header-whatsapp svg {
    width: 29px;
    height: 29px;
  }
  .hero {
    height: 100svh;
    min-height: 680px;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.06) 34%, rgba(0,0,0,.22) 58%, rgba(0,0,0,.94) 100%),
      linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.04) 72%, rgba(0,0,0,.18) 100%);
  }
  .hero::after {
    background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.16) 62%, rgba(0,0,0,.58) 100%);
  }
  .hero-background {
    object-position: 57% center;
    filter: saturate(.64) contrast(1.08) brightness(.66) sepia(.04);
    transform: scale(1.02);
  }
  .hero-copy {
    height: 100%;
    padding-top: 104px;
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }
  .hero-accent {
    width: 52px;
    height: 3px;
    margin-bottom: 22px;
  }
  .hero h1 {
    max-width: 560px;
    font-size: clamp(43px, 10.8vw, 58px);
    line-height: 1.09;
    font-weight: 330;
    letter-spacing: -.035em;
  }
  .hero-copy > p {
    max-width: 560px;
    margin-top: 20px;
    font-size: clamp(15px, 3.9vw, 18px);
    line-height: 1.55;
  }
  .hero-details {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 36px;
  }
  .hero-detail {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    font-size: 15px;
    white-space: normal;
  }
  .hero-hours span {
    line-height: 1.4;
  }
  .hero-hours i {
    margin-inline: 7px;
  }
  .floating-cart {
    position: fixed;
    z-index: 84;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    background: rgba(14,14,14,.88);
    box-shadow: 0 12px 36px rgba(0,0,0,.32);
    backdrop-filter: blur(12px);
  }
  .floating-cart.is-empty {
    display: none;
  }
  .floating-cart svg {
    width: 21px;
    height: 21px;
  }
  .floating-cart b {
    position: absolute;
    top: -3px;
    right: -3px;
  }
}

@media (max-width: 520px) {
  .section-shell {
    width: min(100% - 32px, var(--max));
  }
  .site-header {
    height: 82px;
    padding-inline: 12px;
  }
  .site-header .brand img {
    width: 34px;
    height: 34px;
  }
  .site-header .brand span {
    font-size: 13px;
    letter-spacing: .23em;
  }
  .hero {
    min-height: 660px;
  }
  .hero-copy {
    padding-top: 96px;
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }
  .hero-accent {
    width: 44px;
    margin-bottom: 18px;
  }
  .hero h1 {
    max-width: 350px;
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: 1.08;
  }
  .hero-copy > p {
    max-width: 330px;
    margin-top: 17px;
    font-size: 15px;
  }
  .hero-details {
    gap: 10px;
    margin-top: 28px;
  }
  .hero-detail {
    min-height: 54px;
    padding-inline: 16px;
    font-size: 13px;
  }
  .hero-detail svg {
    width: 19px;
    height: 19px;
  }
}

/* --- About section redesign v7 --- */
.about-section {
  position: relative;
  min-height: min(880px, 100dvh);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #080808;
  overflow: hidden;
}
.about-backdrop,
.about-shade {
  position: absolute;
  inset: 0;
}
.about-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%) brightness(.38) contrast(1.08);
}
.about-shade {
  background:
    linear-gradient(90deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,.78) 33%, rgba(5,5,5,.46) 58%, rgba(5,5,5,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.22) 100%);
}
.about-inner {
  position: relative;
  z-index: 2;
  min-height: min(880px, 100dvh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(92px, 10vw, 132px);
}
.about-copy {
  max-width: 620px;
}
.about-copy .eyebrow {
  color: rgba(255,255,255,.86);
}
.about-copy h2 {
  margin: 22px 0 0;
  max-width: 760px;
  font-size: clamp(56px, 5.8vw, 86px);
  line-height: .98;
  font-weight: 380;
  letter-spacing: -.06em;
}
.about-copy p {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(16px, 1.22vw, 19px);
  line-height: 1.75;
}
.about-amenities {
  width: min(820px, 100%);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: clamp(42px, 5vw, 74px);
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}
.about-amenities span {
  min-height: 96px;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 18px 12px;
  text-align: center;
  color: rgba(255,255,255,.92);
  background: rgba(9,9,9,.34);
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.about-amenities svg {
  width: 20px;
  height: 20px;
  color: var(--red);
}

@media (max-width: 1100px) {
  .about-section,
  .about-inner {
    min-height: 760px;
  }
  .about-copy h2 {
    font-size: clamp(50px, 6.2vw, 72px);
  }
  .about-amenities {
    width: min(720px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .about-section,
  .about-inner {
    min-height: auto;
  }
  .about-inner {
    justify-content: flex-end;
    padding-block: 92px 34px;
  }
  .about-backdrop img {
    object-position: 64% center;
    filter: grayscale(100%) brightness(.28) contrast(1.08);
  }
  .about-shade {
    background:
      linear-gradient(180deg, rgba(4,4,4,.22) 0%, rgba(4,4,4,.44) 22%, rgba(4,4,4,.72) 52%, rgba(4,4,4,.92) 100%),
      linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.12) 100%);
  }
  .about-copy {
    max-width: 100%;
  }
  .about-copy h2 {
    margin-top: 16px;
    font-size: clamp(42px, 10.2vw, 56px);
    line-height: 1.02;
  }
  .about-copy p {
    max-width: 100%;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.68;
  }
  .about-amenities {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    background: rgba(8,8,8,.24);
  }
  .about-amenities span {
    min-height: 84px;
    gap: 8px;
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  .about-inner {
    padding-block: 84px 24px;
  }
  .about-copy h2 {
    font-size: 46px;
  }
  .about-copy p {
    font-size: 14px;
    line-height: 1.62;
  }
  .about-amenities {
    margin-top: 24px;
  }
  .about-amenities span {
    min-height: 78px;
    padding: 14px 8px;
  }
  .about-amenities svg {
    width: 18px;
    height: 18px;
  }
}

/* --- Contacts section redesign v8 --- */
.contacts-section {
  position: relative;
  padding: 0;
  min-height: min(980px, 100dvh);
  border-top: 1px solid rgba(255,255,255,.08);
  background: #080808;
  overflow: hidden;
}
.contacts-backdrop,
.contacts-shade {
  position: absolute;
  inset: 0;
}
.contacts-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%) brightness(.22) contrast(1.08);
}
.contacts-shade {
  background:
    linear-gradient(90deg, rgba(3,3,3,.88) 0%, rgba(3,3,3,.68) 34%, rgba(3,3,3,.54) 58%, rgba(3,3,3,.74) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.36) 100%);
}
.contacts-inner {
  position: relative;
  z-index: 2;
  min-height: min(980px, 100dvh);
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  padding-block: clamp(88px, 9vw, 122px);
}
.contacts-left {
  max-width: 540px;
}
.contacts-left .eyebrow {
  color: var(--red);
}
.contacts-left h2 {
  margin: 20px 0 0;
  font-size: clamp(60px, 6.4vw, 98px);
  line-height: .95;
  font-weight: 390;
  letter-spacing: -.065em;
}
.contacts-left p {
  margin: 22px 0 0;
  max-width: 480px;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.7;
}
.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.contact-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(180deg, rgba(13,13,13,.86), rgba(9,9,9,.92));
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.2);
  background: linear-gradient(180deg, rgba(16,16,16,.92), rgba(11,11,11,.96));
}
.contact-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--red);
}
.contact-card-icon svg {
  width: 30px;
  height: 30px;
}
.contact-card-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact-card-copy strong {
  font-size: 17px;
  font-weight: 450;
}
.contact-card-copy small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.74);
  font-size: 15px;
}
.contact-card i,
.contacts-info-link svg {
  width: 18px;
  height: 18px;
}
.contact-card i {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.92);
}

.contacts-right {
  display: grid;
  gap: 0;
}
.contacts-map-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 56% 58%, rgba(219,38,28,.08), transparent 0 110px),
    linear-gradient(180deg, rgba(18,18,18,.92), rgba(12,12,12,.94)),
    repeating-linear-gradient(25deg, rgba(255,255,255,.05) 0 2px, transparent 2px 54px),
    repeating-linear-gradient(115deg, rgba(255,255,255,.04) 0 2px, transparent 2px 62px);
}
.contacts-map-panel::before,
.contacts-map-panel::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.08);
  transform-origin: center;
}
.contacts-map-panel::before {
  width: 140%;
  height: 2px;
  left: -12%;
  top: 56%;
  transform: rotate(-12deg);
}
.contacts-map-panel::after {
  width: 120%;
  height: 2px;
  right: -10%;
  top: 34%;
  transform: rotate(21deg);
}
.map-street {
  position: absolute;
  color: rgba(255,255,255,.58);
  font-size: 17px;
  letter-spacing: -.02em;
}
.map-street-1 { left: 14%; bottom: 24%; transform: rotate(-10deg); }
.map-street-2 { right: 9%; top: 42%; transform: rotate(-18deg); }
.map-pin {
  position: absolute;
  left: 50%;
  top: 51%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--red);
  transform: translate(-50%, -50%);
}
.map-pin svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 10px 20px rgba(219,38,28,.28));
}
.map-tag {
  position: absolute;
  left: 50%;
  top: calc(51% - 70px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 16px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(10px);
  text-align: center;
}
.map-tag strong {
  font-size: 18px;
  font-weight: 600;
}
.map-tag small {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.4;
}
.contacts-info-panel {
  border: 1px solid rgba(255,255,255,.1);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, rgba(9,9,9,.95), rgba(8,8,8,.96));
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.contacts-info-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contacts-info-row.last { border-bottom: 0; }
.contacts-info-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--red);
}
.contacts-info-icon svg {
  width: 28px;
  height: 28px;
}
.contacts-info-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contacts-info-copy strong {
  font-size: 18px;
  font-weight: 500;
}
.contacts-info-copy small {
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.55;
}
.contacts-info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 14px;
  white-space: nowrap;
}
.contacts-info-link:hover { color: #ff493f; }

@media (max-width: 1180px) {
  .contacts-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }
  .contacts-left {
    max-width: 640px;
  }
  .contacts-right {
    max-width: 860px;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .contacts-section {
    min-height: auto;
  }
  .contacts-backdrop img {
    object-position: 68% center;
    filter: grayscale(100%) brightness(.16) contrast(1.05);
  }
  .contacts-shade {
    background:
      linear-gradient(180deg, rgba(3,3,3,.86) 0%, rgba(3,3,3,.68) 18%, rgba(3,3,3,.76) 44%, rgba(3,3,3,.9) 100%),
      linear-gradient(90deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,.08) 100%);
  }
  .contacts-inner {
    gap: 24px;
    padding-block: 76px 28px;
  }
  .contacts-left h2 {
    margin-top: 16px;
    font-size: clamp(46px, 11vw, 64px);
    line-height: .98;
  }
  .contacts-left p {
    margin-top: 18px;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }
  .contact-cards {
    margin-top: 24px;
    gap: 10px;
  }
  .contact-card {
    min-height: 82px;
    grid-template-columns: 48px minmax(0, 1fr) 22px;
    gap: 14px;
    padding: 0 16px;
    border-radius: 22px;
  }
  .contact-card-icon {
    width: 48px;
    height: 48px;
  }
  .contact-card-icon svg {
    width: 26px;
    height: 26px;
  }
  .contact-card-copy strong {
    font-size: 15px;
  }
  .contact-card-copy small {
    margin-top: 4px;
    font-size: 14px;
  }
  .contacts-map-panel {
    min-height: 280px;
    border-radius: 24px 24px 0 0;
  }
  .map-street {
    font-size: 14px;
  }
  .map-street-1 { left: 10%; bottom: 26%; }
  .map-street-2 { right: 6%; top: 47%; }
  .map-pin {
    width: 48px;
    height: 48px;
  }
  .map-pin svg {
    width: 34px;
    height: 34px;
  }
  .map-tag {
    top: 24%;
    padding: 12px 16px;
    border-radius: 16px;
  }
  .map-tag strong {
    font-size: 16px;
  }
  .map-tag small {
    font-size: 12px;
  }
  .contacts-info-panel {
    border-radius: 0 0 24px 24px;
  }
  .contacts-info-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 16px;
  }
  .contacts-info-icon {
    width: 42px;
    height: 42px;
  }
  .contacts-info-icon svg {
    width: 24px;
    height: 24px;
  }
  .contacts-info-copy strong {
    font-size: 16px;
  }
  .contacts-info-copy small {
    font-size: 14px;
    line-height: 1.5;
  }
  .contacts-info-link {
    grid-column: 2;
    margin-top: 4px;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .contacts-inner {
    padding-block: 72px 22px;
  }
  .contacts-left h2 {
    font-size: 44px;
  }
  .contact-card {
    min-height: 78px;
    padding-inline: 14px;
  }
  .contacts-map-panel {
    min-height: 250px;
  }
  .map-tag {
    width: calc(100% - 48px);
    left: 24px;
    right: 24px;
    top: 18px;
    transform: none;
  }
  .map-street-1 {
    left: 8%;
    bottom: 30%;
  }
  .map-street-2 {
    right: 4%;
    top: 52%;
  }
}

/* --- Contacts layout hotfix v9: only contacts section --- */
.contacts-section {
  display: block;
  width: 100%;
  grid-template-columns: none;
  gap: 0;
  align-items: initial;
}
.contacts-inner {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
  grid-template-columns: minmax(380px, .88fr) minmax(540px, 1.12fr);
}
.contacts-backdrop img {
  object-position: center 48%;
  filter: grayscale(100%) brightness(.46) contrast(1.06);
}
.contacts-shade {
  background:
    linear-gradient(90deg, rgba(3,3,3,.78) 0%, rgba(3,3,3,.57) 34%, rgba(3,3,3,.44) 60%, rgba(3,3,3,.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.28) 100%);
}
.contacts-left,
.contacts-right {
  min-width: 0;
}

@media (max-width: 1180px) {
  .contacts-inner {
    width: min(var(--max), calc(100% - 48px));
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 32px;
  }
}

@media (max-width: 980px) {
  .contacts-inner {
    width: min(100% - 36px, var(--max));
    grid-template-columns: 1fr;
  }
  .contacts-right {
    max-width: none;
  }
  .contacts-backdrop img {
    object-position: 58% center;
  }
}

@media (max-width: 560px) {
  .contacts-inner {
    width: min(100% - 28px, var(--max));
  }
}

/* --- UI motion, full-screen cart and line cleanup v10 --- */
:root {
  --motion-smooth: cubic-bezier(.22,.72,.18,1);
}

/* Minimal preloader */
.loading-screen {
  position: fixed;
  z-index: 9999;
  inset: 0;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #070707;
  opacity: 1;
  visibility: visible;
  transition: opacity .42s ease, visibility 0s linear .42s;
}
.loading-screen.is-leaving {
  opacity: 0;
  visibility: hidden;
}
.preloader {
  width: min(260px, 72vw);
}
.preloader-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
.preloader-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  animation: preloaderMark 1.35s ease-in-out infinite;
}
.preloader-brand strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .29em;
}
.preloader-track {
  position: relative;
  height: 1px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
}
.preloader-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: var(--red);
  transform: translateX(-110%);
  animation: preloaderLine 1.15s var(--motion-smooth) infinite;
}
@keyframes preloaderLine {
  0% { transform: translateX(-110%); }
  55% { transform: translateX(145%); }
  100% { transform: translateX(250%); }
}
@keyframes preloaderMark {
  0%, 100% { opacity: .58; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1); }
}

/* Smooth left drawer */
.menu-overlay,
.cart-overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity .44s ease, visibility 0s linear .52s;
}
.menu-overlay.open,
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.menu-overlay {
  background: rgba(0,0,0,.64);
  backdrop-filter: blur(5px);
}
.menu-drawer {
  width: min(440px, 92vw);
  border-right: 0;
  background: rgba(10,10,10,.98);
  box-shadow: 30px 0 80px rgba(0,0,0,.42);
  transform: translate3d(-104%,0,0);
  opacity: .98;
  visibility: hidden;
  will-change: transform;
  transition:
    transform .56s var(--motion-smooth),
    visibility 0s linear .56s;
}
.menu-drawer.open {
  transform: translate3d(0,0,0);
  visibility: visible;
  transition-delay: 0s;
}
.drawer-nav {
  gap: 6px;
}
.drawer-nav a,
.drawer-nav a:first-child {
  min-height: 68px;
  border: 0;
  border-radius: 14px;
  padding-inline: 10px;
}
.drawer-nav a:hover {
  padding-left: 16px;
  background: rgba(255,255,255,.035);
}

/* Full-screen cart sliding from the right */
.cart-overlay {
  z-index: 115;
  background: rgba(0,0,0,.28);
}
.cart-drawer {
  z-index: 120;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  border-left: 0;
  background: #0b0b0b;
  transform: translate3d(100%,0,0);
  visibility: hidden;
  will-change: transform;
  transition:
    transform .62s var(--motion-smooth),
    visibility 0s linear .62s;
}
.cart-drawer.open {
  transform: translate3d(0,0,0);
  visibility: visible;
  transition-delay: 0s;
}
.cart-header {
  min-height: 96px;
  padding: 22px max(24px, calc((100vw - 1120px) / 2));
  border-bottom: 0;
  background: rgba(11,11,11,.92);
  backdrop-filter: blur(14px);
}
.cart-header small {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-header h2 {
  margin-top: 2px;
  font-size: 34px;
  font-weight: 390;
  letter-spacing: -.04em;
}
.cart-content {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
  padding: 28px 0 40px;
}
.cart-line {
  grid-template-columns: 104px minmax(0,1fr) auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom-color: rgba(255,255,255,.055);
}
.cart-line > img {
  width: 104px;
  height: 116px;
  border-radius: 12px;
}
.cart-line-info h3 {
  font-size: 18px;
  font-weight: 440;
}
.cart-line-info > strong {
  margin-top: 7px;
  font-size: 13px;
}
.cart-line > b {
  font-size: 18px;
  font-weight: 440;
}
.cart-footer {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,340px);
  align-items: center;
  gap: 36px;
  padding: 22px max(24px, calc((100vw - 1120px) / 2)) 26px;
  border-top: 0;
  background: #0e0e0e;
  box-shadow: 0 -20px 50px rgba(0,0,0,.22);
}
.cart-footer > div {
  margin: 0;
}
.cart-footer .button {
  width: 100%;
}
.empty-cart {
  min-height: calc(100dvh - 240px);
}

/* Remove decorative horizontal lines that do not carry structure */
.section-block {
  border-top: 0;
}
.category-tabs {
  border-bottom: 0;
}
.product-bottom {
  padding-top: 8px;
  border-top: 0;
}
.card-note {
  border-top: 0;
  padding-top: 8px;
}
.footer {
  border-top: 0;
}
.price-list {
  border-top: 0;
}
.price-row {
  border-bottom-color: rgba(255,255,255,.065);
}
.catalog-empty {
  border-bottom: 0;
}
.about-amenities,
.about-amenities span {
  border-color: rgba(255,255,255,.09);
}
.contacts-info-row {
  border-bottom-color: rgba(255,255,255,.055);
}

@media (max-width: 820px) {
  .menu-drawer {
    width: min(390px, 100vw);
    padding: 18px 20px 24px;
  }
  .drawer-nav {
    margin-top: 52px;
  }
  .drawer-nav a {
    min-height: 64px;
    font-size: 28px;
  }
  .cart-header {
    min-height: 78px;
    padding: 16px 18px;
  }
  .cart-header h2 {
    font-size: 27px;
  }
  .cart-content {
    width: calc(100% - 36px);
    padding-top: 12px;
  }
  .cart-line {
    grid-template-columns: 78px minmax(0,1fr);
    gap: 14px;
    padding: 16px 0;
  }
  .cart-line > img {
    width: 78px;
    height: 88px;
  }
  .cart-line > b {
    grid-column: 2;
    margin-top: -26px;
    justify-self: end;
    font-size: 14px;
  }
  .cart-line-info h3 {
    padding-right: 68px;
    font-size: 15px;
  }
  .cart-footer {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 16px 18px calc(18px + env(safe-area-inset-bottom));
  }
  .cart-footer > div {
    margin: 0;
  }
  .cart-footer strong {
    font-size: 25px;
  }
  .empty-cart {
    min-height: calc(100dvh - 205px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-drawer,
  .cart-drawer,
  .menu-overlay,
  .cart-overlay,
  .loading-screen {
    transition-duration: .01ms !important;
  }
  .preloader-track i,
  .preloader-brand img {
    animation: none !important;
  }
}

/* --- Minimal footer v11 --- */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 62px 0 28px;
  background:
    radial-gradient(circle at 10% 10%, rgba(219,38,28,.055), transparent 0 280px),
    #070707;
}
.site-footer::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,.018);
  pointer-events: none;
}
.site-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(30px, 5vw, 86px);
}
.site-footer-brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.site-footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.site-footer-brand span {
  color: #f3f1ed;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: .25em;
}
.site-footer-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer-copy strong {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 480;
}
.site-footer-copy span {
  color: rgba(255,255,255,.46);
  font-size: 13px;
}
.site-footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-footer-links a,
.site-footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.64);
  font-size: 13px;
  transition: color .2s ease, transform .2s ease;
}
.site-footer-links a:hover,
.site-footer-bottom a:hover {
  color: #fff;
  transform: translateY(-1px);
}
.site-footer-links svg,
.site-footer-bottom svg {
  width: 15px;
  height: 15px;
}
.site-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  color: rgba(255,255,255,.32);
  font-size: 11px;
  letter-spacing: .035em;
}
.site-footer-bottom a {
  color: rgba(255,255,255,.42);
  font-size: 11px;
}
.site-footer-bottom a svg {
  transform: rotate(-90deg);
}

@media (max-width: 820px) {
  .site-footer {
    padding: 48px 0 24px;
  }
  .site-footer-main {
    grid-template-columns: 1fr auto;
    gap: 28px 20px;
  }
  .site-footer-copy {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .site-footer-links {
    justify-self: end;
    gap: 18px;
  }
  .site-footer-bottom {
    margin-top: 34px;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-top: 42px;
  }
  .site-footer-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .site-footer-brand img {
    width: 34px;
    height: 34px;
  }
  .site-footer-brand span {
    font-size: 13px;
  }
  .site-footer-copy {
    gap: 6px;
  }
  .site-footer-copy strong {
    font-size: 14px;
  }
  .site-footer-copy span {
    font-size: 12px;
  }
  .site-footer-links {
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
  }
  .site-footer-bottom {
    margin-top: 30px;
  }
}

/* --- Centered footer v12 --- */
.site-footer {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 20px;
  overflow: hidden;
  background: #070707;
}
.site-footer::after {
  display: none;
}
.site-footer .site-footer-brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 0 auto;
}
.site-footer .site-footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.site-footer .site-footer-brand span {
  color: #f3f1ed;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: .28em;
}
@media (max-width: 560px) {
  .site-footer {
    min-height: 128px;
    padding: 34px 20px;
  }
  .site-footer .site-footer-brand {
    flex-direction: row;
    align-items: center;
    gap: 11px;
  }
  .site-footer .site-footer-brand img {
    width: 36px;
    height: 36px;
  }
  .site-footer .site-footer-brand span {
    font-size: 13px;
    letter-spacing: .24em;
  }
}
