:root {
  --bg: #f3f0ea;
  --bg-soft: #fcfaf7;
  --card: rgba(255,255,255,0.84);
  --text: #241d19;
  --muted: #6b5f59;
  --line: rgba(50, 34, 24, 0.10);
  --brand: #b22b28;
  --brand-dark: #7f1d1b;
  --dark: #161210;
  --dark-soft: #221b18;
  --dark-line: rgba(255,255,255,0.10);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(38, 26, 20, 0.15);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}
body.is-menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, h5 { margin: 0; }
.site-shell { overflow: clip; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section-light { background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(178,43,40,0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 26%),
    linear-gradient(180deg, #1c1614, #120f0e);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.inspiration .section-head { margin-bottom: 16px; }
.inspiration .eyebrow { margin-bottom: 8px; }
.section-head h2,
.hero-copy h1,
.showcase-copy h2,
.cta-band-copy h2,
.footer-col h3,
.footer-brand h3 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.section-head p,
.hero-text,
.showcase-copy p,
.process-step p,
.article-card p,
.quote-card h3,
.footer-brand p,
.badge-card span,
.advantage-list p,
.cta-band-info p,
.trust-item p { font-size: 15px; line-height: 1.65; color: var(--muted); }
.section-dark .showcase-copy p,
.section-dark .quote-card h3,
.section-dark .article-card p,
.section-dark .advantage-list p,
.section-dark .cta-band-info p,
.section-dark .trust-item p { color: rgba(255,255,255,0.74); }
.compact-head { align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #d14b40);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(178,43,40,0.24);
}
.btn-dark { background: var(--dark); color: var(--white); }
.btn-outline {
  border: 1px solid rgba(36,29,25,0.14);
  color: var(--text);
  background: rgba(255,255,255,0.55);
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--white);
  background: transparent;
}

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(252,250,247,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(42, 29, 22, 0.08);
  transition: box-shadow .3s ease, transform .3s ease;
}
.header-top,
.header-cats {
  max-height: 100px;
  overflow: hidden;
  transition: max-height .3s ease, opacity .3s ease, border-color .3s ease, padding .3s ease;
}
.header-top {
  border-bottom: 1px solid rgba(42, 29, 22, 0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.55));
}
.header-top-inner,
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.header-main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.header-main-nav a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  border: 1px solid rgba(50,34,24,0.08);
  background: linear-gradient(90deg, rgba(255,255,255,0.88), rgba(248,243,239,0.92));
  transition: color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease, background-position .4s ease;
  background-size: 200% 100%;
  background-position: 0% 0%;
}
.header-main-nav a:hover,
.header-main-nav a:focus-visible,
.nav a:hover,
.nav a:focus-visible,
.mobile-menu-block a:hover,
.mobile-menu-block a:focus-visible {
  color: var(--white);
  border-color: rgba(178,43,40,0.22);
  box-shadow: 0 12px 24px rgba(178,43,40,0.18);
  transform: translateY(-1px);
  background-image: linear-gradient(90deg, #8f201f 0%, #c93531 52%, #dd5a51 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
}
.header-top-inner { min-height: 54px; }
.top-contacts,
.utility-nav,
.shop-actions,
.nav { display: flex; align-items: center; gap: 10px; }
.icon-link,
.shop-btn,
.nav a,
.mobile-menu-block a,
.mobile-actions-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.icon-link svg,
.shop-btn svg,
.search-shell svg,
.float-btn svg,
.svg-icon svg,
.mobile-dock a svg,
.cta-icon svg,
.menu-close svg,
.mobile-menu-search svg { width: 18px; height: 18px; }
.icon-link {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(50,34,24,0.08);
}
.muted-link { color: var(--muted); }
.whatsapp-link {
  background: rgba(178,43,40,0.10);
  color: var(--brand);
}
.utility-nav a {
  min-height: auto;
  padding: 0;
  font-size: 13px;
  color: var(--muted);
}
.utility-nav a:hover { color: var(--brand); }
.header-main-inner { min-height: 92px; }
.logo img { width: 252px; }
.mobile-menu-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  color: var(--text);
}
.mobile-menu-search input::placeholder { color: #9d8f85; }
.shop-actions { gap: 8px; }
.shop-btn {
  position: relative;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(50,34,24,0.08);
}
.shop-btn b,
.cart-btn b {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-top-inner{
  flex-wrap: wrap;
}
.shop-actions--top{
  margin-left: auto;
  gap: 4px;
}
.shop-actions--top .shop-btn{
  min-height: 32px;
  width: 32px;
  padding: 0;
  border-radius: 12px;
}
.shop-actions--top .shop-btn span{ display:none; }
.shop-actions--top .shop-btn svg{ width:16px; height:16px; }
.shop-actions--top .shop-btn b,
.shop-actions--top .cart-btn b{
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  font-size: 9px;
}
@media (max-width: 1200px){
  .top-contacts{ gap:6px; }
  .utility-nav{ gap:12px; }
}
@media (max-width: 992px){
  .shop-actions--top{ display:none; }
}
.header-cats {
  border-top: 1px solid rgba(42, 29, 22, 0.05);
  border-bottom: 1px solid rgba(42, 29, 22, 0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.54), rgba(244,241,236,0.7));
}
.nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
}
.nav a {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255,255,255,0.84), rgba(248,243,239,0.94));
  background-size: 200% 100%;
  background-position: 0% 0%;
  border: 1px solid rgba(50,34,24,0.07);
  color: var(--muted);
  transition: color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease, background-position .4s ease;
}
.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(50,34,24,0.08);
  border-radius: 16px;
  width: 52px;
  height: 52px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  transition: transform .25s ease, opacity .25s ease;
}
.header.is-scrolled {
  box-shadow: 0 10px 28px rgba(21, 16, 14, 0.09);
}
.header.is-scrolled .header-top,
.header.is-scrolled .header-cats {
  max-height: 0;
  opacity: 0;
  border-color: transparent;
}
.header.is-scrolled .header-main-inner { min-height: 78px; }
.header.is-scrolled .logo img { width: 215px; }



/* Compact desktop header refinement */
.header-top-inner { min-height: 42px; }
.top-contacts { gap: 8px; flex-wrap: wrap; }
.utility-nav { gap: 16px; }
.utility-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}
.utility-nav a:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(178,43,40,0.28);
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.icon-link,
.shop-btn,
.nav a,
.mobile-menu-block a,
.mobile-actions-grid a {
  font-size: 12px;
}
.icon-link {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
}
.icon-link svg { width: 16px; height: 16px; }
.header-main-inner {
  min-height: 74px;
  gap: 14px;
}
.logo img { width: 218px; }
.header-main-nav { gap: 6px; }
.header-main-nav a { min-height: 38px; padding: 0 12px; }
.shop-actions { gap: 6px; }
.shop-btn {
  min-height: 44px;
  padding: 0 12px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.shop-btn span { display: none; }
.shop-btn b,
.cart-btn b {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  font-size: 10px;
}
.header-cats .container { position: relative; }
.nav {
  gap: 7px;
  padding: 8px 0 10px;
}
.nav a {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 800;
}
.nav a:first-child {
  background: linear-gradient(135deg, rgba(178,43,40,0.12), rgba(178,43,40,0.05));
  color: var(--brand);
  border-color: rgba(178,43,40,0.14);
}
.header.is-scrolled .header-main-inner { min-height: 64px; }
.header.is-scrolled .logo img { width: 194px; }
.header.is-scrolled .shop-btn { min-height: 40px; }

@media (min-width: 861px) {
  .header { box-shadow: 0 8px 24px rgba(18, 14, 12, 0.04); }
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,8,7,0.42);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 98;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 420px);
  height: 100vh;
  background: linear-gradient(180deg, #fffdfa, #f3ede7);
  z-index: 99;
  padding: 18px 16px 26px;
  transform: translateX(105%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: auto;
}
body.is-menu-open .mobile-menu-overlay { opacity: 1; visibility: visible; }
body.is-menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mobile-menu-head img { width: 180px; }
.menu-close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(50,34,24,0.08);
  background: #fff;
}
.mobile-menu-block,
.mobile-menu-contact,
.hero-card,
.catalog-card,
.process-step,
.article-card,
.gallery-card,
.quote-card,
.stack-card,
.trust-item,
.badge-card {
  box-shadow: var(--shadow);
}
.mobile-menu-block,
.mobile-menu-contact {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(50,34,24,0.08);
  border-radius: 22px;
  padding: 14px;
  display: grid;
  gap: 10px;
}
.mobile-menu-block span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}
.mobile-menu-block a {
  justify-content: space-between;
  background: linear-gradient(90deg, #ffffff 0%, #fbf6f1 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  border: 1px solid rgba(50,34,24,0.06);
  transition: color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease, background-position .4s ease;
}
.mobile-actions-grid { grid-template-columns: repeat(3, 1fr); }
.mobile-actions-grid a { justify-content: center; padding: 0 10px; }
.mobile-menu-contact a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  background: #fff;
  border: 1px solid rgba(50,34,24,0.06);
}
.mobile-menu-contact .mobile-wa {
  background: linear-gradient(135deg, var(--brand), #d14b40);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 146px);
  padding: 38px 0 34px;
  display: flex;
  align-items: center;
}
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,13,11,0.64) 0%, rgba(18,13,11,0.18) 54%, rgba(18,13,11,0.46) 100%),
    linear-gradient(180deg, rgba(252,250,247,0.08), rgba(252,250,247,0));
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg-img.is-active { opacity: 1; }
.hero-progress {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(100% - 32px, 1280px);
  z-index: 2;
}
.hero-progress span {
  display: block;
  width: 160px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
  animation: heroBar 5.2s linear infinite;
  transform-origin: left;
}
@keyframes heroBar { from { transform: scaleX(.05); } to { transform: scaleX(1); } }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .72fr);
  gap: 20px;
  align-items: stretch;
}
.hero-copy {
  color: #fff;
  padding: 12px 0;
  max-width: 720px;
}
.hero-copy-inner {
  max-width: 760px;
  background: linear-gradient(135deg, rgba(18,13,11,0.40), rgba(18,13,11,0.18));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  padding: 22px;
  backdrop-filter: blur(8px);
}
.hero-copy .eyebrow { color: rgba(255,255,255,0.82); }
.hero-copy .eyebrow::before { background: currentColor; }
.hero-copy h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 14px;
  max-width: 700px;
}
.hero-text {
  max-width: 600px;
  color: rgba(255,255,255,0.86);
  margin-bottom: 18px;
  font-size: 17px;
}
.hero-actions,
.footer-actions,
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.badge-card {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 18px;
  backdrop-filter: blur(14px);
}
.badge-card strong {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}
.badge-card span { color: rgba(255,255,255,0.78); font-size: 14px; }
.hero-side { display: flex; align-items: center; }
.hero-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 30px;
  padding: 20px;
  width: 100%;
  backdrop-filter: blur(18px);
}
.hero-card-top { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  background: rgba(178,43,40,0.10);
  color: var(--brand);
}
.chip-dark { background: rgba(27,20,17,0.08); color: var(--text); }
.hero-rail { display: grid; gap: 12px; }
.hero-rail article {
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(50,34,24,0.06);
}
.hero-rail span,
.catalog-body span {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 6px;
}
.hero-rail strong {
  display: block;
  font-size: 15px;
  line-height: 1.45;
}
.hero-contact-box {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-contact-box a {
  min-height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  border: 1px solid rgba(50,34,24,0.08);
}
.hero-contact-box a:last-child {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #d14b40);
}

.trust-strip { padding: 20px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.trust-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.svg-icon,
.cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: rgba(255,255,255,0.92);
}
.trust-item strong,
.cta-band-info strong,
.process-step h3,
.article-card h3,
.catalog-body h3,
.footer-col h3 { font-family: "Manrope", sans-serif; }
.trust-item strong { display: block; font-size: 16px; margin-bottom: 6px; }

.catalog,
.process,
.inspiration,
.footer { padding: 72px 0; }
.showcase,
.articles,
.cta-band { padding: 78px 0; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.catalog-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(50,34,24,0.08);
}
.catalog-media {
  aspect-ratio: 1 / .82;
  overflow: hidden;
}
.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.catalog-card:hover .catalog-media img { transform: scale(1.05); }
.catalog-body { padding: 16px 18px 18px; }
.catalog-body h3 {
  font-size: 18px;
  line-height: 1.34;
  margin-bottom: 12px;
}
.catalog-body a,
.article-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
  border: 1px solid rgba(178,43,40,0.16);
  background: rgba(178,43,40,0.06);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.showcase-copy { max-width: 540px; }
.advantage-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.advantage-list article {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.advantage-list strong { display: block; font-size: 18px; margin-bottom: 6px; }
.showcase-stack {
  min-height: 460px;
  position: relative;
}
.stack-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
}
.stack-card img { width: 100%; height: 100%; object-fit: cover; }
.card-1 { inset: 0 92px 100px 0; }
.card-2 { inset: 120px 0 0 150px; }
.card-3 { inset: 24px 24px 220px 260px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.process-step {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(50,34,24,0.08);
}
.process-step span {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), #d14b40);
  margin-bottom: 14px;
}
.process-step h3 { font-size: 18px; line-height: 1.35; margin-bottom: 10px; }

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: center;
}
.cta-band-info {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.cta-band-info article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.cta-band-info strong { display: block; font-size: 16px; margin-bottom: 6px; }
.cta-band-actions {
  align-items: stretch;
  flex-direction: column;
}
.cta-band-actions .btn { width: 100%; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.gallery-card,
.quote-card {
  overflow: hidden;
  min-height: 200px;
  border-radius: 22px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(50,34,24,0.08);
}
figure.gallery-card {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card.large { grid-column: span 2; grid-row: span 2; min-height: 414px; }
.quote-card {
  padding: 20px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(178,43,40,0.08), rgba(255,255,255,0.92));
}
.quote-card h3 { font-size: 20px; line-height: 1.45; color: var(--text); }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.article-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.article-card img {
  width: 100%;
  aspect-ratio: 1.2/1;
  object-fit: cover;
}
.article-card > div { padding: 18px; }
.article-card h3 { font-size: 18px; line-height: 1.36; margin-bottom: 10px; }
.article-card p { margin-bottom: 14px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .7fr .8fr .8fr;
  gap: 18px;
  align-items: start;
}
.footer-brand,
.footer-col {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(50,34,24,0.08);
  border-radius: 24px;
  padding: 22px;
}
.footer-brand img { width: 220px; margin-bottom: 16px; }
.footer-brand p { margin-bottom: 18px; }
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.footer-col li,
.footer-col a { font-size: 15px; color: var(--muted); }
.footer-bottom {
  padding: 20px 0 90px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn,
.mobile-dock a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 16px 30px rgba(26, 18, 15, 0.18);
}
.float-btn.whatsapp { background: linear-gradient(135deg, #c33d32, var(--brand)); }
.float-btn.phone { background: #181310; }
.mobile-dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 86;
  padding: 8px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 35px rgba(21,16,14,0.14);
  gap: 8px;
}
.mobile-dock a {
  flex: 1;
  width: auto;
  height: 58px;
  border-radius: 18px;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}
.mobile-dock a:first-child { background: #181310; }
.mobile-dock a:last-child { background: linear-gradient(135deg, var(--brand), #d14b40); }

@media (max-width: 1200px) {
  .utility-nav { display: none; }
  .hero-grid,
  .showcase-grid,
  .cta-band-inner,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges,
  .cta-band-info,
  .trust-grid,
  .catalog-grid,
  .process-grid,
  .articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-card.large { grid-column: span 2; grid-row: span 1; min-height: 340px; }
  .showcase-stack { min-height: 380px; }
}

@media (max-width: 860px) {
  .header-top,
  .header-cats,
  .shop-actions,
  .menu-toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }
  .header-main-inner { min-height: 74px; }
  .logo img { width: 188px; }
  .hero { min-height: auto; padding: 18px 0 24px; }
  .hero-grid { gap: 16px; }
  .hero-copy { padding: 18px 0 0; }
  .hero-copy-inner { padding: 18px; border-radius: 22px; }
  .hero-copy h1 { font-size: 30px; }
  .hero-text { font-size: 15px; }
  .hero-badges,
  .trust-grid,
  .catalog-grid,
  .process-grid,
  .cta-band-info,
  .articles-grid,
  .footer-grid,
  .mobile-actions-grid { grid-template-columns: 1fr; }
  .hero-contact-box { grid-template-columns: 1fr; }
  .catalog,
  .process,
  .inspiration,
  .footer,
  .showcase,
  .articles,
  .cta-band { padding: 56px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.large { grid-column: span 1; min-height: 280px; }
  .showcase-stack { min-height: 300px; }
  .card-1 { inset: 0 70px 56px 0; }
  .card-2 { inset: 80px 0 0 88px; }
  .card-3 { inset: 18px 18px 140px 150px; }
  .mobile-dock { display: flex; }
  .floating-actions { display: none; }
  .footer-bottom { padding-bottom: 100px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .section-head h2,
  .showcase-copy h2,
  .cta-band-copy h2,
  .footer-col h3,
  .footer-brand h3 { font-size: 22px; }
  .hero-copy h1 { font-size: 28px; }
  .hero-card,
  .catalog-card,
  .process-step,
  .article-card,
  .gallery-card,
  .footer-brand,
  .footer-col,
  .trust-item,
  .badge-card,
  .cta-band-info article,
  .advantage-list article { border-radius: 22px; }
  .header-main-inner { min-height: 74px; }
  .logo img { width: 174px; }
  .menu-toggle { width: 46px; height: 46px; border-radius: 14px; }
  .hero-copy h1 { max-width: 100%; }
  .hero-copy-inner { padding: 16px; }
  .hero-badges { margin-top: 18px; }
  .hero-progress { bottom: 10px; }
  .hero-progress span { width: 120px; }
  .catalog-body h3,
  .process-step h3,
  .article-card h3 { font-size: 17px; }
  .quote-card h3 { font-size: 18px; }
}

/* ===== Interactive hero banner ===== */
.hero-banner-section{padding:18px 0 28px;background:radial-gradient(circle at top, rgba(178,43,40,0.08), transparent 28%),linear-gradient(180deg, #faf7f3 0%, #f2ece5 100%)}
.hero-banner-shell{width:min(calc(100% - 24px), 1880px);margin:0 auto}
.hero-banner-frame{position:relative;width:100%;aspect-ratio:16/7;overflow:hidden;border-radius:34px;background:#e7dbcf;box-shadow:0 30px 80px rgba(76,47,34,.16);isolation:isolate}
.hero-banner-frame::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,0)),radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 28%);pointer-events:none;z-index:1}
.hero-banner-image{width:100%;height:100%;object-fit:cover;display:block}
.hero-hotspot{position:absolute;left:calc(var(--x) * 1%);top:calc(var(--y) * 1%);transform:translate(-50%,-50%);z-index:3}
.hero-hotspot__pin{position:absolute;left:0;top:0;width:14px;height:14px;transform:translate(-50%,-50%);border-radius:50%;background:linear-gradient(180deg,#d45b56 0%,#8b2421 100%);border:2px solid rgba(255,255,255,.95);transition:.28s ease}
.hero-hotspot__pin::after{content:"";position:absolute;inset:-8px;border-radius:inherit;border:1px solid rgba(255,255,255,.88);animation:heroPulse 2.5s ease-in-out infinite}
.hero-hotspot__line{position:absolute;left:0;top:0;height:2px;background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.85), rgba(255,255,255,1));transform-origin:left center;transition:.28s ease}
.hero-hotspot__card{position:absolute;display:flex;flex-direction:column;align-items:flex-start;gap:0;width:min(210px,22vw);padding:6px 8px;border-radius:14px;background:rgba(255,255,255,.11);border:1px solid rgba(255,255,255,.34);backdrop-filter:blur(8px);box-shadow:0 8px 18px rgba(79,56,43,.08);transition:.28s ease}
.hero-hotspot__card strong{display:block;font-size:16px;line-height:1.02;font-weight:800;text-transform:uppercase;letter-spacing:-.02em;color:#4a3328}
.hero-hotspot__cta{display:inline-flex;align-items:center;justify-content:center;margin-top:0;max-height:0;overflow:hidden;padding:0 10px;border-radius:999px;font-size:11px;line-height:1;font-weight:800;letter-spacing:.01em;background:linear-gradient(180deg,#cf4a43 0%, #8d2b29 100%);color:#fff;border:1px solid rgba(255,255,255,.22);box-shadow:0 8px 18px rgba(141,43,41,.22);opacity:0;transform:translateY(4px);transition:max-height .28s ease, opacity .28s ease, transform .28s ease, padding .28s ease, margin-top .28s ease}
.hero-hotspot:hover .hero-hotspot__card,.hero-hotspot:focus-visible .hero-hotspot__card{background:rgba(255,255,255,.86)}
.hero-hotspot:hover .hero-hotspot__cta,.hero-hotspot:focus-visible .hero-hotspot__cta{margin-top:6px;max-height:32px;padding:6px 10px;opacity:1;transform:translateY(0)}
.hero-hotspot:hover .hero-hotspot__pin,.hero-hotspot:focus-visible .hero-hotspot__pin{transform:translate(-50%,-50%) scale(1.16);box-shadow:0 0 0 12px rgba(212,91,86,.10), 0 0 28px rgba(139,36,33,.16)}
.hero-hotspot:hover .hero-hotspot__line,.hero-hotspot:focus-visible .hero-hotspot__line{filter:drop-shadow(0 0 8px rgba(255,255,255,.88))}
@keyframes heroPulse{0%,100%{transform:scale(.92);opacity:.84}50%{transform:scale(1.22);opacity:0}}
.hs-tile{--x:26.2;--y:12.4}.hs-tile .hero-hotspot__line{width:54px;transform:translate(0,-1px) rotate(-90deg)}.hs-tile .hero-hotspot__card{transform:translate(14px,-40px)}
.hs-rosette{--x:56.2;--y:9.3}.hs-rosette .hero-hotspot__line{width:78px;transform:translate(10px,-1px)}.hs-rosette .hero-hotspot__card{transform:translate(94px,-36px)}
.hs-ceiling-plinth{--x:82.5;--y:11.0}.hs-ceiling-plinth .hero-hotspot__line{width:48px;transform:translate(0,-1px) rotate(-90deg)}.hs-ceiling-plinth .hero-hotspot__card{transform:translate(-4px,14px)}
.hs-mosaic{--x:59.0;--y:44.5}.hs-mosaic .hero-hotspot__line{width:48px;transform:translate(10px,-1px)}.hs-mosaic .hero-hotspot__card{transform:translate(58px,-18px)}
.hs-moldings{--x:71.2;--y:52.2}.hs-moldings .hero-hotspot__line{width:38px;transform:translate(-38px,-1px);transform-origin:right center}.hs-moldings .hero-hotspot__card{transform:translate(-198px,-22px)}
.hs-floor-plinth{--x:15.4;--y:86.9}.hs-floor-plinth .hero-hotspot__line{width:44px;transform:translate(0,-1px)}.hs-floor-plinth .hero-hotspot__card{transform:translate(10px,-38px)}
.hs-glue{--x:81.6;--y:84.1}.hs-glue .hero-hotspot__line{width:44px;transform:translate(-44px,-1px);transform-origin:right center}.hs-glue .hero-hotspot__card{transform:translate(-178px,-30px)}
/* richer catalog */
.catalog{position:relative;overflow:hidden}.catalog::before,.catalog::after{content:"";position:absolute;width:340px;height:340px;border-radius:50%;background:radial-gradient(circle, rgba(178,43,40,0.08), transparent 68%);z-index:0;pointer-events:none}.catalog::before{top:-120px;left:-100px}.catalog::after{right:-100px;bottom:-140px}.catalog .container{position:relative;z-index:1}
.catalog-grid.compact-catalog{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.catalog-card{overflow:hidden;border-radius:26px;background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72));border:1px solid rgba(50,34,24,0.07);backdrop-filter:blur(10px);transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease}.catalog-card:hover{transform:translateY(-7px);box-shadow:0 28px 60px rgba(76,47,34,.16);border-color:rgba(178,43,40,0.14)}
.catalog-media{position:relative;min-height:340px;overflow:hidden;border-radius:24px 24px 0 0}.catalog-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(13,10,9,0.02) 0%, rgba(13,10,9,0.16) 58%, rgba(13,10,9,0.52) 100%),radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 28%)}
.catalog-media img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}.catalog-card:hover .catalog-media img{transform:scale(1.08)}
.catalog-3d-wrap{position:absolute;inset:0;z-index:0;background:transparent}
.catalog-3d{display:block;width:100%;height:100%;border:0;background:transparent}
.catalog-media::after{pointer-events:none}
.catalog-media-overlay{pointer-events:none}
.catalog-media-overlay{position:absolute;left:16px;right:16px;bottom:16px;z-index:2;display:grid;gap:10px}.catalog-tag{display:inline-flex;align-items:center;width:max-content;min-height:28px;padding:0 12px;border-radius:999px;font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#fff;background:rgba(255,255,255,0.16);border:1px solid rgba(255,255,255,0.26);backdrop-filter:blur(10px)}.catalog-media-overlay h3{font-family:"Manrope", sans-serif;font-size:24px;line-height:1.05;letter-spacing:-0.03em;color:#fff;max-width:84%}.catalog-deco{position:absolute;right:0;bottom:2px;width:66px;height:66px;border-radius:18px;display:grid;place-items:center;color:#fff;background:linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));border:1px solid rgba(255,255,255,0.22);backdrop-filter:blur(8px)}.catalog-deco svg{width:28px;height:28px}
.catalog-body{padding:18px 18px 20px;display:grid;gap:12px}.catalog-body span{font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--brand)}.catalog-body p{font-size:14px;line-height:1.6;color:var(--muted)}.catalog-body a{width:max-content;min-height:44px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:800;color:#fff;background:linear-gradient(135deg, var(--brand) 0%, #db5a4d 100%);box-shadow:0 14px 28px rgba(178,43,40,0.18);display:inline-flex;align-items:center;justify-content:center}.catalog-body h3{display:none}
.inspiration .section-head{margin-bottom:14px}.gallery-grid{gap:14px}.gallery-card{border-radius:22px;overflow:hidden}.gallery-card.large{min-height:380px}
@media (max-width:1180px){.catalog-grid.compact-catalog{grid-template-columns:repeat(2,minmax(0,1fr))}.catalog-media{min-height:300px}}
@media (max-width:980px){.hero-banner-shell{width:min(calc(100% - 12px),1880px)}.hero-banner-frame{border-radius:22px}.hero-hotspot__card{width:160px;padding:5px 6px;border-radius:11px}.hero-hotspot__card strong{font-size:12px}.hero-hotspot__cta{font-size:9px}.hs-tile .hero-hotspot__card{transform:translate(10px,-18px)}.hs-rosette .hero-hotspot__card{transform:translate(60px,-18px)}.hs-ceiling-plinth .hero-hotspot__card{transform:translate(-4px,10px)}.hs-mosaic .hero-hotspot__card{transform:translate(32px,-12px)}.hs-moldings .hero-hotspot__card{transform:translate(-146px,-12px)}.hs-floor-plinth .hero-hotspot__card{transform:translate(8px,-20px)}.hs-glue .hero-hotspot__card{transform:translate(-132px,-18px)}}
@media (max-width:760px){.hero-banner-section{padding:0 0 18px}.hero-banner-shell{width:100%}.hero-banner-frame{border-radius:0;aspect-ratio:16/9}.hero-hotspot__card{width:116px;padding:4px 5px;border-radius:10px}.hero-hotspot__card strong{font-size:9px}.hero-hotspot__cta{font-size:8px}.hero-hotspot__pin{width:10px;height:10px}.hs-tile .hero-hotspot__line{width:18px}.hs-tile .hero-hotspot__card{transform:translate(8px,-10px)}.hs-rosette .hero-hotspot__line{width:20px}.hs-rosette .hero-hotspot__card{transform:translate(28px,-8px)}.hs-ceiling-plinth .hero-hotspot__line{width:16px}.hs-ceiling-plinth .hero-hotspot__card{transform:translate(-4px,8px)}.hs-mosaic .hero-hotspot__line{width:18px}.hs-mosaic .hero-hotspot__card{transform:translate(18px,-6px)}.hs-moldings .hero-hotspot__line{width:16px}.hs-moldings .hero-hotspot__card{transform:translate(-108px,-8px)}.hs-floor-plinth .hero-hotspot__line{width:16px}.hs-floor-plinth .hero-hotspot__card{transform:translate(8px,-12px)}.hs-glue .hero-hotspot__line{width:18px}.hs-glue .hero-hotspot__card{transform:translate(-104px,-12px)}.catalog-grid.compact-catalog{grid-template-columns:1fr}.catalog-media{min-height:280px}.catalog-media-overlay h3{font-size:22px}.catalog-deco{width:58px;height:58px}}

/* ===== Mobile header fix ===== */
@media (max-width: 768px){
  .header-top,
  .header-actions,
  .header-phone,
  .header-icons{
    display:none !important;
  }
  .header-main{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .header-main .logo{
    max-width:140px;
  }
  .burger{
    display:block;
  }
}

/* subtle hover glow */
.catalog-card:hover{
  box-shadow:0 30px 80px rgba(178,43,40,0.25);
}

/* button gradient hover */
.catalog-body a:hover{
  background:linear-gradient(135deg,#ff6a5c,#8d2b29);
  transform:translateY(-2px);
}

/* smooth reveal animation */
.catalog-card,
.hero-hotspot{
  opacity:0;
  transform:translateY(20px);
  animation:fadeUp .6s ease forwards;
}
.catalog-card:nth-child(2){animation-delay:.1s}
.catalog-card:nth-child(3){animation-delay:.2s}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== FIX MOBILE HEADER FULL CLEAN ===== */
@media (max-width:768px){
  .header nav,
  .header .nav,
  .header .menu,
  .header .actions,
  .header .icons,
  .header .header-actions,
  .header .header-cats,
  .header a:not(.logo):not(.burger){
    display:none !important;
  }

  .header{
    padding:10px 12px;
  }

  .header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  .logo{
    max-width:130px;
  }

  .burger{
    display:flex !important;
    align-items:center;
    justify-content:center;
  }
}

/* ===== MAP FULL DESIGN ===== */
.map-section{
  margin-top:60px;
  background:linear-gradient(180deg,#f7f2ec,#efe6dc);
  padding-top:40px;
}

.map-head{
  text-align:center;
  margin-bottom:20px;
}

.map-head h2{
  font-size:24px;
  font-weight:800;
}

.map-full{
  width:100%;
  height:500px;
  overflow:hidden;
  border-radius:0;
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.map-full iframe{
  width:100%;
  height:100%;
  border:0;
}

.catalog-3d-wrap{position:absolute;inset:0;z-index:0;background:transparent}
.catalog-3d{display:block;width:100%;height:100%;border:0;background:transparent}
.catalog-media::after{pointer-events:none}
.catalog-media-overlay{pointer-events:none}
.catalog-media img{display:none}


/* hero static redesign */
.hero-banner-section--static{padding:0;background:transparent}.hero-static-frame{position:relative;width:100%;overflow:hidden;line-height:0}.hero-static-image{position:relative;display:block;width:100%;height:auto;max-width:100%;object-fit:contain}.hero-static-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(29,18,16,.52) 0%,rgba(29,18,16,.28) 26%,rgba(29,18,16,.08) 54%,rgba(29,18,16,.04) 100%),linear-gradient(180deg,rgba(0,0,0,.02) 0%,rgba(0,0,0,.14) 100%);pointer-events:none}.hero-static-copy{position:absolute;z-index:2;inset:0;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;padding:clamp(18px,3.4vw,56px) clamp(16px,4.2vw,64px);max-width:min(680px,92vw);pointer-events:none}.hero-static-kicker{display:inline-flex;align-items:center;min-height:30px;padding:0 12px;border:1px solid rgba(255,255,255,.22);background:rgba(255,255,255,.07);backdrop-filter:blur(8px);font-family:"Onest","Nunito","Manrope",sans-serif;font-size:10px;font-weight:800;letter-spacing:.22em;text-transform:uppercase;color:rgba(255,248,241,.88);border-radius:999px;line-height:1}.hero-static-title{margin:14px 0 0;font-family:"Onest","Nunito","Manrope",sans-serif;font-size:clamp(18px,2vw,28px);line-height:1.08;font-weight:800;letter-spacing:-.02em;color:#fff;max-width:20ch;text-shadow:0 10px 28px rgba(53,26,20,.24)}.hero-static-subtitle{margin:12px 0 0;max-width:520px;font-family:"Onest","Nunito","Manrope",sans-serif;font-size:clamp(12px,1vw,15px);line-height:1.45;font-weight:600;color:rgba(255,245,238,.9);text-shadow:0 8px 20px rgba(53,26,20,.16)}.hero-static-typing{position:relative;margin:16px 0 0;height:28px;display:block;overflow:hidden;pointer-events:none}.hero-static-typing__line{position:absolute;left:0;top:0;display:block;width:0;white-space:nowrap;overflow:hidden;border-right:2px solid rgba(255,255,255,.88);font-family:"Onest","Nunito","Manrope",sans-serif;font-size:clamp(13px,1.15vw,18px);font-weight:800;letter-spacing:.01em;line-height:1.2;color:#fff;opacity:0;animation:heroLineCycle 10.5s steps(40,end) infinite}.hero-static-typing__line:nth-child(2){animation-delay:3.5s}.hero-static-typing__line:nth-child(3){animation-delay:7s}.hero-static-actions{display:flex;flex-wrap:wrap;gap:12px;margin:18px 0 0;pointer-events:auto}.hero-static-btn{width:max-content;min-height:44px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:800;color:#fff;background:linear-gradient(135deg,var(--brand) 0%,#db5a4d 100%);box-shadow:0 14px 28px rgba(178,43,40,.18);display:inline-flex;align-items:center;justify-content:center}.hero-static-link{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 18px;border-radius:999px;font-size:13px;font-weight:800;color:#fff;border:1px solid rgba(255,255,255,.24);background:rgba(255,255,255,.08);backdrop-filter:blur(8px)}@keyframes heroLineCycle{0%{width:0;opacity:0}5%{opacity:1}24%{width:100%;opacity:1}30%{width:100%;opacity:1}36%{width:0;opacity:0}100%{width:0;opacity:0}}@media (max-width:980px){.hero-static-copy{padding:24px 22px 28px;max-width:min(600px,94vw)}.hero-static-title{max-width:18ch}}@media (max-width:760px){.hero-static-copy{padding:18px 14px 22px}.hero-static-title{font-size:clamp(16px,4.6vw,22px);max-width:18ch}.hero-static-subtitle{font-size:12px;max-width:88vw}.hero-static-typing{height:24px;margin-top:12px}.hero-static-typing__line{font-size:12px}.hero-static-actions{width:100%;margin-top:14px}.hero-static-btn,.hero-static-link{min-height:42px;padding:0 14px}}

/* updated categories placeholders and showcase photo */
.header-main-nav a{font-size:11px;padding:0 10px;}
.catalog-media--placeholder{position:relative;background:radial-gradient(circle at 68% 22%, rgba(255,255,255,.18), transparent 18%), radial-gradient(circle at 18% 78%, rgba(219,90,77,.16), transparent 28%), linear-gradient(160deg, #241714 0%, #3d201b 38%, #6d2b22 100%);}
.catalog-placeholder{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;padding:24px;}
.catalog-placeholder img{display:block !important;width:min(64%,240px);height:auto;object-fit:contain;filter:brightness(0) invert(1);opacity:.86;transform:translateY(-8px);}
.showcase-stack{min-height:460px;position:relative;}
.showcase-photo{position:absolute;inset:0;overflow:hidden;border-radius:28px;border:1px solid rgba(255,255,255,0.10);box-shadow:0 30px 80px rgba(0,0,0,.18);}
.showcase-photo img{width:100%;height:100%;object-fit:cover;display:block;}
@media (max-width:1180px){.header-main-nav a{font-size:10px;padding:0 8px;}}
@media (max-width:980px){.showcase-photo{position:relative;inset:auto;min-height:380px;}}
@media (max-width:760px){.showcase-stack{min-height:auto;}.showcase-photo{min-height:300px;}}



/* ===== аккуратные мобильные правки баннера и trust-strip ===== */
@media (max-width: 768px){
  .trust-strip.section-dark{
    display:none !important;
  }

  .hero-banner-section--static{
    padding:0;
  }

  .hero-static-frame{
    min-height:540px;
    aspect-ratio:4 / 5;
    border-radius:0;
  }

  .hero-static-image{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: -572px -128px;
  }

  .hero-static-copy{
    inset:auto 0 0 0;
    max-width:none;
    padding:18px 16px 20px;
    justify-content:flex-end;
    background:linear-gradient(180deg, rgba(18,12,10,0) 0%, rgba(18,12,10,.26) 24%, rgba(18,12,10,.58) 58%, rgba(18,12,10,.82) 100%);
  }

  .hero-static-kicker{
    min-height:26px;
    padding:0 10px;
    font-size:9px;
    letter-spacing:.18em;
  }

  .hero-static-title{
    margin-top:10px;
    max-width:14ch;
    font-size:clamp(24px, 7.2vw, 31px);
    line-height:1.06;
  }

  .hero-static-subtitle{
    margin-top:10px;
    max-width:100%;
    font-size:13px;
    line-height:1.45;
  }

  .hero-static-typing{
    display:none;
  }

  .hero-static-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    width:100%;
    margin-top:14px;
  }

  .hero-static-btn,
  .hero-static-link{
    width:100%;
    min-height:46px;
    padding:0 16px;
    font-size:13px;
  }
}

@media (max-width: 560px){
  .hero-static-frame{
    min-height:500px;
  }

  .hero-static-copy{
    padding:16px 14px 18px;
  }

  .hero-static-title{
    max-width:13ch;
    font-size:clamp(22px, 7vw, 28px);
  }

  .hero-static-subtitle{
    font-size:12px;
  }
}



/* ===== аккуратный стабилизатор шапки на ПК без ряби ===== */
@media (min-width: 861px){
  .header{
    will-change: transform, background-color, box-shadow, border-color;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .header-top,
  .header-main,
  .top-contacts,
  .header-actions,
  .header-main .logo-wrap,
  .header-main .nav{
    backface-visibility: hidden;
    transform: translateZ(0);
  }
}
