:root {
  --brand: #8B4513;
  --brand-2: #A0522D;
  --accent: #D2691E;
  --grad: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 50%, var(--accent) 100%);
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, 'Inter', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-weight: 500; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; font-weight: 500; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--accent); font-weight: inherit; }

p { margin-bottom: 1rem; }
a { color: var(--brand); text-decoration: none; transition: color 150ms var(--ease-out); }
a:hover { color: var(--accent); }

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

.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--muted);
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar__loc { display: flex; align-items: center; gap: 0.375rem; }
.topbar__phones { display: flex; gap: 1rem; flex-wrap: wrap; }
.topbar__phones a { color: var(--text); }
.topbar__phones a:hover { color: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: all 200ms var(--ease-out);
}
.site-header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: opacity 150ms;
}
.brand:hover { opacity: 0.8; color: var(--text); }
.brand__mark {
  width: 48px;
  height: 48px;
  background: var(--grad);
  border-radius: var(--radius-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.05em;
  flex-shrink: 0;
}
.brand__mark span { font-size: 1.125rem; margin-left: -0.125rem; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.2; }
.brand__txt em { font-style: normal; font-weight: 700; color: var(--accent); }
.brand__txt small { font-size: 0.75rem; color: var(--muted); font-weight: 300; }

.brand--foot .brand__mark { width: 40px; height: 40px; font-size: 1.25rem; }
.brand--foot .brand__txt small { display: none; }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 200ms var(--ease-out);
}
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav a.is-active { font-weight: 500; color: var(--accent); }

.nav-cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 200ms;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
  .nav-cta { display: none; }
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 4rem 0;
  max-width: 720px;
}
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero__lead { font-size: clamp(1.125rem, 2.5vw, 1.375rem); margin-bottom: 2rem; opacity: 0.95; font-weight: 300; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero .stat { text-align: left; }
.hero .stat strong, .hero .stat span { color: white; }

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--grad);
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  color: white;
}

.btn--sm { padding: 0.625rem 1.5rem; font-size: 0.9375rem; }
.btn--full { width: 100%; }

.section {
  padding: var(--space-10) 0;
}
.section--alt { background: var(--surface); }
.section--dark {
  background: var(--text);
  color: white;
}
.section--dark h2, .section--dark h3, .section--dark p, .section--dark .muted { color: white; }
.section--dark .muted { opacity: 0.8; }

.section__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.section__head h2 { margin: 0; flex: 1; text-align: left; }
.link-arrow {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.link-arrow::after {
  content: '→';
  transition: transform 150ms;
}
.link-arrow:hover::after { transform: translateX(4px); }

.stat {
  text-align: center;
}
.stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat span {
  display: block;
  font-size: 0.9375rem;
  color: var(--muted);
}

.bento {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  grid-auto-rows: 200px;
}
.bento__item { overflow: hidden; }
.bento__item--wide { grid-column: span 2; }
.bento__item--tall { grid-row: span 2; }

@media (max-width: 768px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento__item--wide, .bento__item--tall { grid-column: span 1; grid-row: span 1; }
}

.benefit__icon {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-radius: var(--radius-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.surface h3 { margin-bottom: 0.5rem; }
.surface p { font-size: 0.9375rem; margin-bottom: 0; }

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  overflow: hidden;
  transition: all 200ms var(--ease-out);
  display: block;
  color: inherit;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
}

.product-card {
  position: relative;
  padding: 0;
}
.product-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--surface-2);
}
.product-card h3, .product-card p, .product-card__price {
  padding: 0 1.25rem;
}
.product-card h3 {
  font-size: 1.125rem;
  margin: 1rem 0 0.375rem;
}
.product-card__cat {
  display: block;
  padding: 0 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 1rem;
}
.product-card__mat {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
}
.product-card__price strong {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--accent);
}

.tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tag--muted {
  background: var(--muted);
}

.old-price {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split__img img {
  width: 100%;
  border-radius: var(--radius-3);
  box-shadow: var(--shadow-2);
}
.split__content h2 { margin-bottom: 1.25rem; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.cat-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-3);
  overflow: hidden;
  transition: all 200ms var(--ease-out);
  color: inherit;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
}
.cat-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--surface-2);
}
.cat-card h3, .cat-card p {
  padding: 0 1.5rem;
}
.cat-card h3 {
  margin: 1.25rem 0 0.5rem;
}
.cat-card p {
  font-size: 0.9375rem;
  padding-bottom: 1.5rem;
  margin: 0;
}

.construction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.construction__img img {
  width: 100%;
  border-radius: var(--radius-2);
}
.construction__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  font-size: 0.9375rem;
}
.feature-chip svg { flex-shrink: 0; color: var(--accent); }
.construction__desc {
  grid-column: 1 / -1;
}
.construction__desc h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.construction__desc ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}
.construction__desc li::before {
  content: '·';
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.5rem;
}

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

.info-box {
  padding: 1.5rem;
  margin-top: 2rem;
}
.info-box ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}
.info-box li { margin-bottom: 0.375rem; }

.cta-section { text-align: center; }
.cta-box {
  max-width: 720px;
  margin: 0 auto;
}
.cta-box h2 { color: white; margin-bottom: 1.25rem; }
.cta-box p { margin-bottom: 1.25rem; }
.cta-box .btn { margin-top: 1rem; }

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0;
}
.cities span {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.page-hero {
  padding: 6rem 0 4rem;
  text-align: center;
  background: var(--surface);
}
.page-hero--sm { padding: 4rem 0 2rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero__lead {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.breadcrumb span { color: var(--muted); }

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.filters {
  position: sticky;
  top: 100px;
}
.filters__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  padding: 1.5rem;
}
.filters__group {
  margin-bottom: 1.5rem;
}
.filters__group:last-of-type { margin-bottom: 1.75rem; }
.filters__group h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.filters__group select,
.filters__group input[type="number"] {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
}
.radio {
  display: block;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--text);
  transition: color 150ms;
}
.radio:hover { color: var(--accent); }
.radio.is-on { color: var(--accent); font-weight: 500; }
.radio input { margin-right: 0.5rem; }

.filters__reset {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  color: var(--muted);
}

.empty-box {
  padding: 3rem;
  text-align: center;
}
.empty-box h1 { margin-bottom: 1rem; }
.empty-box .btn { margin-top: 1rem; }

@media (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 1fr; gap: 2rem; }
  .filters { position: static; }
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product__gallery img {
  width: 100%;
  border-radius: var(--radius-3);
  box-shadow: var(--shadow-2);
  background: var(--surface-2);
}
.product__info h1 { margin: 0.5rem 0 0.375rem; }
.product__cat {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.product__price-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.product__price {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--accent);
}
.discount-badge {
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
}
.product__specs {
  padding: 1.5rem;
  margin: 2rem 0;
}
.product__specs h4 { margin-bottom: 1rem; }
.product__specs dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.5rem;
}
.product__specs dt {
  font-weight: 500;
  color: var(--muted);
}
.product__specs dd {
  font-weight: 500;
}
.product__order-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  padding: 1.5rem;
  margin-top: 2rem;
}
.product__order-form h4 {
  margin-bottom: 1rem;
}
.product__order-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 1rem;
}
.product__order-form .btn {
  margin-top: 0.5rem;
}
.product__order-form .small {
  font-size: 0.8125rem;
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 2rem; }
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
.alert svg { flex-shrink: 0; }
.alert--ok {
  background: color-mix(in srgb, #10b981 10%, transparent);
  border: 1px solid color-mix(in srgb, #10b981 30%, transparent);
  color: #047857;
}
.alert--err {
  background: color-mix(in srgb, #ef4444 10%, transparent);
  border: 1px solid color-mix(in srgb, #ef4444 30%, transparent);
  color: #b91c1c;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  padding: 2rem;
  position: relative;
}
.service-card__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent) 10%, transparent);
  line-height: 1;
}
.service-card__icon {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-radius: var(--radius-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.step {
  text-align: center;
}
.step__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--grad);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.step h4 {
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
}

.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.calc {
  padding: 2rem;
}
.calc__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.calc__row label {
  font-weight: 500;
  font-size: 0.9375rem;
}
.calc__row select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
}
.calc__row--check {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.calc__row--check label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.calc__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 2px solid var(--border);
  margin: 1rem 0 1.5rem;
}
.calc__total strong {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 900px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .calc__row { grid-template-columns: 1fr; }
}

.form-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.form-block__text h2 { color: white; margin-bottom: 1rem; }

.lead-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-3);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 1rem;
  background: var(--bg);
  color: var(--text);
}
.lead-form textarea {
  resize: vertical;
}
.lead-form .agree {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.lead-form .agree input {
  width: auto;
  margin: 0 0.5rem 0 0;
}

@media (max-width: 900px) {
  .form-block { grid-template-columns: 1fr; gap: 2rem; }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.review-card {
  padding: 1.5rem;
}
.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.review-card__header strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.review-card__header .muted {
  font-size: 0.875rem;
}
.rating {
  display: flex;
  gap: 2px;
}
.rating svg {
  color: var(--accent);
}
.review-card p {
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

.cta-box--inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius-3);
}
.cta-box--inline h2 {
  margin-bottom: 0.5rem;
}
.cta-box--inline p {
  margin: 0;
  color: var(--muted);
}
.cta-box--inline .btn {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-box--inline { flex-direction: column; text-align: center; }
}

.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
}
.contact-item__icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-radius: var(--radius-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-item h4 {
  margin-bottom: 0.5rem;
}
.contact-item p {
  font-size: 0.9375rem;
  margin: 0;
}
.contact-item a {
  color: var(--text);
}
.contact-item a:hover {
  color: var(--accent);
}

.contacts-form {
  padding: 2rem;
}
.contacts-form h2 {
  margin-bottom: 0.75rem;
}

.map-wrap {
  padding: 0;
  overflow: hidden;
}
.map-wrap iframe {
  display: block;
}

@media (max-width: 900px) {
  .contacts-layout { grid-template-columns: 1fr; }
}

.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.content ul, .content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.content li {
  margin-bottom: 0.5rem;
}
.content p + ul {
  margin-top: -0.5rem;
}

.quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  border-radius: var(--radius-2);
}
.quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--muted);
  font-size: 0.9375rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.stat-big {
  text-align: center;
}
.stat-big strong {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-big span {
  display: block;
  font-size: 1rem;
  color: var(--muted);
}

.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: var(--space-9) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem 2rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 0.625rem;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-col p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.footer-col .muted {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}

html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
html.js .reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html.js .reveal { opacity: 1; transform: none; }
}

/* --- Стили для блоков, оставшихся без оформления --- */
/* Benefits section */
.benefits {
  background: var(--surface, #FBF9F5);
}

.benefits .bento {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4, 16px);
}

.benefits .bento__item {
  padding: var(--space-6, 32px);
  border-radius: var(--radius-2, 12px);
  transition: transform 0.2s var(--ease-out, ease-out), box-shadow 0.2s var(--ease-out, ease-out);
}

.benefits .bento__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2, 0 8px 16px rgba(0,0,0,0.08));
}

.benefits .bento__item--wide {
  grid-column: span 2;
}

.benefits .bento__item--tall {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .benefits .bento__item--wide,
  .benefits .bento__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.benefits .benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-4, 16px);
  background: color-mix(in srgb, var(--brand, #C4612F) 10%, transparent);
  border-radius: var(--radius-pill, 999px);
  color: var(--brand, #C4612F);
}

.benefits h3 {
  margin: 0 0 var(--space-3, 12px) 0;
  font-size: var(--step-1, 1.2rem);
  font-weight: 500;
  color: var(--text, #1F2421);
}

.benefits p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted, #5C635D);
}

/* Featured section */
.featured {
  background: var(--bg, #F7F4EF);
}

/* Catalog preview (used on home) */
.catalog-preview {
  background: var(--bg, #F7F4EF);
}

.catalog-preview .grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5, 24px);
}

/* Catalog main page layout */
.catalog-wrap {
  background: var(--bg, #F7F4EF);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-6, 32px);
  align-items: start;
}

@media (max-width: 968px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  
  .filters {
    position: sticky;
    top: 80px;
    z-index: 10;
  }
}

/* Catalog main grid */
.catalog-main {
  min-height: 400px;
}

.catalog-main .grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-5, 24px);
}

/* Product card */
.product {
  position: relative;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-4, 16px);
  background: var(--surface, #FFFFFF);
  border: 1px solid var(--border, #E7E1D7);
  border-radius: var(--radius-2, 12px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s var(--ease-out, ease-out), box-shadow 0.2s var(--ease-out, ease-out), border-color 0.2s var(--ease-out, ease-out);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2, 0 8px 16px rgba(0,0,0,0.08));
  border-color: var(--brand, #C4612F);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-1, 8px);
  margin-bottom: var(--space-3, 12px);
  background: var(--surface-2, #F7F4EF);
}

.product-card h3 {
  margin: var(--space-2, 8px) 0;
  font-size: var(--step-0, 1rem);
  font-weight: 500;
  color: var(--text, #1F2421);
}

.product-card__cat {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--brand, #C4612F);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.product-card__mat {
  margin: var(--space-1, 4px) 0 var(--space-3, 12px) 0;
  font-size: 0.9rem;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: var(--space-2, 8px);
  margin-top: auto;
  padding-top: var(--space-3, 12px);
  border-top: 1px solid var(--border, #E7E1D7);
}

.product-card__price strong {
  font-size: var(--step-1, 1.2rem);
  font-weight: 600;
  color: var(--text, #1F2421);
}

.product-card .old-price {
  font-size: 0.9rem;
  color: var(--muted, #5C635D);
  text-decoration: line-through;
}

.product-card .tag {
  position: absolute;
  top: var(--space-5, 24px);
  right: var(--space-5, 24px);
  z-index: 2;
}

/* --- Недостающие дизайн-токены (значения из theme.css платформы) --- */
:root{
  --text: #14141c;
  --bg: #f7f7fb;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --surface: #ffffff;
  --border: #e7e7ef;
  --muted: #6a6a7b;
  --radius-2: 16px;
  --radius-pill: 999px;
  --shadow-2: 0 1px 2px rgba(20, 20, 40, .06), 0 10px 24px rgba(20, 20, 40, .08);
  --space-10: 128px;
  --surface-2: #f1f1f7;
  --radius-3: 22px;
  --radius-1: 10px;
  --space-9: 96px;
  --space-6: 32px;
}
