@import url("https://fonts.googleapis.com/css2?family=Forum&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #181818;
  --muted: #6f6a61;
  --line: #dfd8cc;
  --surface: #ffffff;
  --soft: #f6f3ed;
  --paper: #fbfaf6;
  --warm: #ede4d6;
  --accent: #8b6b43;
  --accent-strong: #5b4328;
  --accent-soft: #efe5d5;
  --sage: #697568;
  --rose: #9d4b47;
  --shadow: 0 22px 55px rgba(39, 32, 25, .09);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

main,
.footer {
  position: relative;
  z-index: 1;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

.woodcut-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.woodcut {
  position: absolute;
  display: block;
  width: clamp(220px, 25vw, 390px);
  aspect-ratio: 1;
  background-image: url("assets/tree-rings.webp");
  background-repeat: no-repeat;
  background-size: 200% 200%;
  mix-blend-mode: multiply;
  opacity: .105;
  filter: sepia(.22);
}

.woodcut-one {
  top: 10vh;
  right: -95px;
  background-position: 100% 0;
  transform: rotate(8deg);
}

.woodcut-two {
  top: 58vh;
  left: -120px;
  width: clamp(210px, 22vw, 330px);
  background-position: 0 100%;
  transform: rotate(-16deg);
  opacity: .085;
}

.woodcut-three {
  top: 122vh;
  right: 8vw;
  width: clamp(180px, 19vw, 280px);
  background-position: 100% 100%;
  transform: rotate(18deg);
  opacity: .075;
}

.woodcut-four {
  top: 186vh;
  left: 9vw;
  width: clamp(190px, 20vw, 300px);
  background-position: 0 0;
  transform: rotate(5deg);
  opacity: .07;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px 32px;
  background: rgba(251, 250, 246, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 136px;
}

.brand-logo {
  display: block;
  width: 128px;
  height: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--ink);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(139, 107, 67, .28);
}

.top-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.email-link,
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.city-switcher {
  position: relative;
}

.city-switcher summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.city-switcher summary::-webkit-details-marker {
  display: none;
}

.city-switcher summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.city-switcher[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.city-switcher-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 6px;
  width: min(430px, calc(100vw - 32px));
  padding: 12px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px 18px 5px 18px;
  box-shadow: var(--shadow);
}

.city-switcher-panel a {
  padding: 10px 12px;
  border-radius: 12px 12px 4px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.city-switcher-panel a:hover {
  background: var(--surface);
}

.email-link svg,
.phone-link svg {
  width: 17px;
  height: 17px;
  color: var(--accent-strong);
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.email-link:hover,
.phone-link:hover {
  color: var(--ink);
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(39, 32, 25, .07);
}

.icon-btn span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: #fff;
  background: var(--rose);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.request-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 80;
  display: none;
  width: min(360px, calc(100vw - 32px));
  padding: 14px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 22px 22px 6px 22px;
  box-shadow: 0 22px 70px rgba(39, 32, 25, .16);
}

.request-popover.visible {
  display: grid;
  gap: 12px;
}

.request-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.request-popover-head strong {
  font-family: Forum, Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.request-popover-close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f1e7;
  color: #5b4328;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.request-popover-list,
.request-list-items {
  display: grid;
  gap: 10px;
}

.request-popover-list {
  max-height: 300px;
  overflow: auto;
}

.request-empty {
  padding: 14px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px 16px 4px 16px;
  font-size: 14px;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px 32px 46px;
}

.home-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: Forum, Georgia, serif;
  font-size: 76px;
  font-weight: 400;
  line-height: .9;
}

.home-copy p {
  max-width: 620px;
  color: #514c44;
  font-size: 19px;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-media {
  position: relative;
  min-height: 560px;
  padding: 18px;
  background: #fff8ee;
  border: 1px solid var(--line);
  border-radius: 26px 26px 6px 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45);
  z-index: 1;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 18px 18px 4px 18px;
}

.hero-note {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 4px;
  max-width: 380px;
  padding: 18px 20px;
  background: rgba(255, 253, 248, .9);
  border: 1px solid var(--line);
  border-radius: 18px 18px 4px 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(39, 32, 25, .11);
  z-index: 2;
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note span {
  color: var(--muted);
}

.home-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 52px;
}

.home-strip div {
  padding: 22px 24px;
  background: rgba(255, 255, 255, .72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.home-strip div:last-child {
  border-right: 1px solid var(--line);
}

.home-strip strong,
.home-strip span {
  display: block;
}

.home-strip strong {
  margin-bottom: 4px;
  font-family: Forum, Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.home-strip span {
  color: var(--muted);
}

.home-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 46px 32px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head h2,
.home-cta h2 {
  margin: 4px 0 0;
  font-family: Forum, Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: .98;
}

.text-link-btn {
  display: inline-flex;
  padding: 0 0 5px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-weight: 700;
}

.direction-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 18px;
}

.direction-card {
  display: grid;
  grid-template-rows: 280px minmax(210px, auto);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 22px 22px 6px 22px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.direction-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 107, 67, .42);
  box-shadow: 0 30px 70px rgba(39, 32, 25, .13);
}

.direction-card.large {
  grid-template-rows: 340px minmax(210px, auto);
}

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

.direction-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  background: #fffdf8;
}

.direction-card span {
  color: var(--accent);
  font-weight: 700;
}

.direction-card h3,
.process-grid h3,
.advantage-card h3 {
  margin: 0;
  font-family: Forum, Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.02;
}

.home-advantages {
  padding-top: 24px;
}

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

.advantage-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 270px;
  padding: 28px;
  background: rgba(255, 253, 248, .92);
  border: 1px solid var(--line);
  border-radius: 24px 24px 6px 24px;
  box-shadow: 0 18px 42px rgba(39, 32, 25, .07);
}

.advantage-card.large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(238, 229, 213, .82));
}

.advantage-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fffaf2;
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.advantage-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.advantage-card li {
  position: relative;
  padding-left: 18px;
}

.advantage-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 999px;
}

.home-process {
  padding-top: 20px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.process-grid::before {
  display: none;
}

.process-grid article {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 20px 20px 6px 20px;
  box-shadow: 0 16px 38px rgba(39, 32, 25, .06);
}

.process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -11px;
  z-index: 2;
  width: 20px;
  height: 20px;
  background: #fffdf8;
  border-top: 1px solid rgba(139, 107, 67, .35);
  border-right: 1px solid rgba(139, 107, 67, .35);
  transform: rotate(45deg);
  box-shadow: 5px -5px 14px rgba(39, 32, 25, .04);
}

.process-icon {
  display: grid;
}

.process-icon svg {
  width: 52px;
  height: 52px;
  padding: 13px;
  color: var(--accent-strong);
  background: var(--soft);
  border: 1px solid rgba(139, 107, 67, .2);
  border-radius: 16px 16px 4px 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1376px;
  margin: 46px auto 70px;
  padding: 42px;
  color: #f8f5ee;
  background: #1e1b18;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px 28px 6px 28px;
  box-shadow: 0 34px 80px rgba(39, 32, 25, .18);
}

.home-cta p {
  max-width: 640px;
  margin-top: 10px;
  color: #c9c4bb;
}

.home-cta .primary-btn {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 28px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px 32px;
}

.catalog-mobile-toggle {
  display: none;
}

.sidebar,
.request-list {
  align-self: start;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.sidebar {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 116px);
  overflow: auto;
}

.sidebar-heading {
  margin: 4px 6px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
}

.sidebar a.active,
.sidebar a:hover {
  color: var(--ink);
  background: var(--soft);
}

.category-tree,
.category-tree ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-tree ul {
  display: none;
  margin-left: 14px;
  padding-left: 12px;
  border-left: 1px solid rgba(139, 107, 67, .18);
}

.category-tree-item.open > ul {
  display: grid;
}

.category-tree-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 6px;
  align-items: start;
}

.category-tree-toggle,
.category-tree-spacer {
  width: 26px;
  height: 34px;
}

.category-tree-toggle {
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.category-tree-toggle span {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .16s ease;
}

.category-tree-item.open > .category-tree-row .category-tree-toggle span {
  transform: rotate(45deg);
}

.sidebar .category-tree-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 12px 12px 4px 12px;
  color: #5d564d;
  font-size: 14px;
  line-height: 1.2;
}

.category-tree-link span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-tree-link small {
  min-width: 24px;
  padding: 3px 6px;
  color: #7f6a4f;
  text-align: center;
  background: rgba(139, 107, 67, .11);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.category-tree-row.root-row .category-tree-link {
  font-weight: 800;
}

.content,
.product-page,
.lead-layout,
.article-page,
.service-page {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.page-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 10px 0 22px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
  color: var(--ink);
  border-color: rgba(139, 107, 67, .45);
}

h1 {
  margin: 0 0 10px;
  max-width: 860px;
  font-family: Forum, Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

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

.primary-btn,
.secondary-btn,
.ghost-btn,
.text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
}

.primary-btn {
  color: #fff;
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  box-shadow: 0 14px 30px rgba(91, 67, 40, .22);
}

.primary-btn:hover {
  color: #fff;
  background: #47331e;
  transform: translateY(-1px);
}

.secondary-btn {
  color: var(--accent-strong);
  background: #fffdf8;
  border-color: rgba(91, 67, 40, .34);
}

.ghost-btn {
  color: var(--accent-strong);
  background: #fff;
  border-color: rgba(91, 67, 40, .34);
}

.text-btn {
  display: none;
  min-height: 34px;
  padding: 6px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

.full {
  width: 100%;
}

.category-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.category-tools label,
.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-status {
  min-height: 22px;
  margin: -2px 0 2px;
  color: var(--accent-strong);
  font-size: 15px;
  font-weight: 800;
}

.form-status.error {
  color: #9b3832;
}

.form-status.success {
  color: #4f7a3b;
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.search-field input {
  padding-left: 42px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.subcategory-strip {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 20px;
  background: rgba(255, 253, 248, .72);
  border: 1px solid var(--line);
  border-radius: 20px 20px 6px 20px;
}

.subcategory-strip[hidden] {
  display: none;
}

.subcategory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.subcategory-head span,
.catalog-section-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.subcategory-head h2,
.catalog-section-head h2 {
  margin: 0;
  font-family: Forum, Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.subcategory-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.subcategory-chip {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  min-height: 130px;
  padding: 8px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(139, 107, 67, .22);
  border-radius: 14px 14px 4px 14px;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.subcategory-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 107, 67, .45);
  box-shadow: 0 18px 42px rgba(39, 32, 25, .08);
}

.subcategory-thumb {
  overflow: hidden;
  display: block;
  width: 88px;
  height: 88px;
  background: var(--soft);
  border-radius: 10px 10px 3px 10px;
}

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

.subcategory-copy {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  padding: 6px 8px 6px 4px;
}

.subcategory-chip strong {
  color: #5a554d;
  font-size: 17px;
  line-height: 1.2;
}

.subcategory-chip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.catalog-products {
  display: grid;
  gap: 16px;
}

.category-copy {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 26px;
  background: rgba(255, 253, 248, .78);
  border: 1px solid var(--line);
  border-radius: 20px 20px 6px 20px;
  box-shadow: var(--shadow);
}

.category-copy[hidden] {
  display: none;
}

.category-copy h2 {
  margin: 0;
  font-family: Forum, Georgia, serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.category-copy p {
  max-width: 960px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.catalog-more {
  justify-self: center;
  margin-top: 6px;
}

.catalog-more[hidden] {
  display: none;
}

.catalog-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  padding-top: 4px;
}

.catalog-section-head p {
  font-size: 15px;
  line-height: 1.45;
}

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

.category-card {
  min-height: 230px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px 18px 6px 18px;
  box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 107, 67, .38);
  box-shadow: 0 26px 62px rgba(39, 32, 25, .12);
}

.category-card a {
  display: grid;
  align-content: start;
  gap: 12px;
  height: 100%;
  padding: 18px;
  color: inherit;
}

.category-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.category-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.category-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.category-card-path {
  margin-top: auto;
  color: rgba(81, 76, 68, .72);
  font-size: 12px;
  line-height: 1.35;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px 18px 6px 18px;
  box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 107, 67, .38);
  box-shadow: 0 26px 62px rgba(39, 32, 25, .12);
}

.product-image {
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  background: #e8ece9;
}

.product-image img,
.main-photo,
.thumbs img,
.request-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.product-meta {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.product-card h2 {
  min-height: 50px;
  font-size: 17px;
  line-height: 1.22;
}

.product-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 0;
  font-size: 14px;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.product-bottom {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.product-bottom strong {
  white-space: nowrap;
}

.card-actions {
  display: grid;
  gap: 10px;
}

.product-card.in-request {
  border-color: #b89a75;
}

.product-card.in-request .go-calc,
.product-go-calc.visible {
  display: inline-flex;
}

.product-page {
  padding: 32px;
}

.product-page::before,
.lead-layout::before,
.article-page::before,
.service-page::before {
  content: "";
  display: block;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.gallery {
  display: grid;
  gap: 12px;
}

.main-photo {
  height: auto;
  border-radius: 8px;
  background: #e8ece9;
  object-fit: contain;
}

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

.thumbs[hidden] {
  display: none;
}

.thumbs button {
  overflow: hidden;
  padding: 0;
  background: #fffdf8;
  border: 2px solid #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.thumbs button.active {
  border-color: rgba(91, 67, 40, .58);
}

.thumbs img {
  aspect-ratio: 1 / 1;
}

.product-info {
  display: grid;
  gap: 18px;
}

.status-pill {
  justify-self: start;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.lead-text {
  color: #40504c;
  font-size: 18px;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.specs div {
  padding: 12px;
  background: #fff;
}

.specs dt {
  color: var(--muted);
  font-size: 12px;
}

.specs dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.price-row span,
.price-row small {
  display: block;
  color: var(--muted);
}

.price-row strong {
  display: block;
  margin-top: 2px;
  font-size: 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}

.info-columns section,
.lead-form,
.article-list article {
  padding: 22px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.product-related-section {
  margin-top: 34px;
}

.section-head.compact {
  align-items: start;
  margin-bottom: 16px;
}

.section-head.compact h2 {
  font-size: 42px;
}

.section-head.compact p {
  max-width: 760px;
  margin-top: 8px;
  color: var(--muted);
}

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

.related-product-card .product-image {
  aspect-ratio: 1 / 1;
}

.related-product-card .product-body {
  gap: 9px;
}

.related-product-card h2 {
  min-height: 62px;
}

.related-product-card p {
  min-height: 76px;
}

.product-seo-tags {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 30px;
  padding: 24px;
  background: rgba(255, 253, 248, .9);
  border: 1px solid var(--line);
  border-radius: 24px 24px 6px 24px;
  box-shadow: 0 16px 38px rgba(39, 32, 25, .06);
}

.product-seo-tags h2 {
  margin: 0 0 8px;
  font-family: Forum, Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.product-seo-tags p {
  color: var(--muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  padding: 9px 13px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid rgba(139, 107, 67, .22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.tag-cloud a:hover {
  background: #fffdf8;
  border-color: rgba(139, 107, 67, .45);
}

.service-page {
  padding: 32px;
}

.service-head {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 26px;
}

.service-head span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

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

.service-grid article,
.faq-list details {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-grid article {
  padding: 22px;
}

.delivery-region-page {
  max-width: 1440px;
  margin: 0 auto;
}

.delivery-city-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  max-width: none;
}

.delivery-intro,
.delivery-category-grid,
.city-grid {
  display: grid;
  gap: 16px;
}

.delivery-intro {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 30px;
}

.delivery-intro article,
.delivery-category-card,
.city-grid a {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px 18px 5px 18px;
  box-shadow: var(--shadow);
}

.delivery-intro article {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 24px;
}

.delivery-intro h2,
.delivery-category-section h2,
.delivery-catalog-index h2,
.delivery-city-list h2,
.delivery-faq h2 {
  margin: 0;
}

.delivery-intro p,
.delivery-category-card small,
.city-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.delivery-city-list,
.delivery-category-section,
.delivery-catalog-index,
.delivery-pickup-section,
.delivery-faq {
  margin-top: 34px;
}

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

.city-grid a {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 18px;
}

.city-grid strong,
.delivery-category-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.city-grid a:hover,
.delivery-category-card:hover {
  border-color: rgba(139, 107, 67, .42);
  transform: translateY(-1px);
}

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

.delivery-category-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 142px;
  padding: 14px;
}

.delivery-category-card .subcategory-thumb {
  width: 96px;
  height: 96px;
}

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

.pickup-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 138px;
  padding: 22px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px 18px 5px 18px;
  box-shadow: var(--shadow);
}

.pickup-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--accent);
  background: rgba(139, 107, 67, .1);
  border: 1px solid rgba(139, 107, 67, .18);
  border-radius: 14px 14px 4px 14px;
}

.pickup-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pickup-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.pickup-card p,
.pickup-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.pickup-note {
  margin-top: 14px;
  max-width: 920px;
  font-size: 16px;
}

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

.delivery-catalog-group {
  min-width: 0;
  padding: 0;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 14px 14px 5px 14px;
  box-shadow: 0 10px 28px rgba(49, 38, 25, .05);
  overflow: hidden;
}

.delivery-catalog-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.delivery-catalog-group summary small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.delivery-catalog-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
  padding: 0 16px 16px;
}

.delivery-catalog-links a {
  display: inline-flex;
  max-width: 100%;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(245, 241, 234, .58);
  border: 1px solid rgba(139, 107, 67, .2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.delivery-catalog-links a:hover {
  border-color: rgba(139, 107, 67, .48);
  transform: translateY(-1px);
}

.service-content {
  display: grid;
  gap: 16px;
  max-width: 960px;
  padding: 30px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 24px 24px 6px 24px;
  box-shadow: var(--shadow);
}

.service-content h2 {
  margin: 18px 0 0;
  font-family: Forum, Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content h3 {
  margin: 12px 0 0;
  color: #3f3328;
  font-size: 18px;
  font-weight: 800;
}

.service-content p,
.service-content li {
  color: #514c44;
  font-size: 17px;
  line-height: 1.65;
}

.service-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.service-content a {
  color: var(--accent);
  font-weight: 700;
}

.privacy-consent {
  display: grid;
  justify-items: start;
  gap: 18px;
  margin-top: 20px;
  padding: 24px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 12%, rgba(111, 91, 68, .08), transparent 32%),
    #f8f3eb;
  border: 1px solid var(--line);
  border-radius: 20px 20px 5px 20px;
}

.privacy-consent-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3f3328;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.privacy-consent-label input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.privacy-submit {
  min-width: 190px;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid var(--accent);
  border-radius: 22px 22px 5px 22px;
  background: var(--accent);
  color: #fffdf8;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .16s ease, transform .16s ease, box-shadow .16s ease;
}

.privacy-submit:not(:disabled):hover {
  box-shadow: 0 16px 34px rgba(91, 67, 40, .2);
  transform: translateY(-1px);
}

.privacy-submit:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(246, 241, 232, .76);
  backdrop-filter: blur(5px);
}

.privacy-modal.visible {
  display: grid;
}

.privacy-modal-card {
  position: relative;
  width: min(760px, 100%);
  min-height: 330px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 48px 64px;
  background:
    radial-gradient(circle at 82% 14%, rgba(111, 91, 68, .1), transparent 34%),
    #fffdf8;
  border: 1px solid var(--line);
  border-radius: 28px 28px 6px 28px;
  box-shadow: 0 22px 70px rgba(39, 32, 25, .14);
  text-align: center;
}

.privacy-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f7f1e7;
  color: #5b4328;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.privacy-modal-check {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(91, 67, 40, .2);
  border-radius: 28px 28px 6px 28px;
  background: #f7f1e7;
  color: var(--accent);
  font-size: 72px;
  line-height: .8;
  box-shadow: 0 16px 38px rgba(39, 32, 25, .08);
}

.privacy-modal-card h2 {
  margin: 10px 0 0;
  font-family: Forum, Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

.privacy-modal-card p {
  max-width: 620px;
  color: #514c44;
  font-size: 24px;
  line-height: 1.28;
}

.privacy-modal-card strong {
  font-weight: 800;
  color: #3f3328;
}

.palette-page {
  max-width: 1440px;
}

.palette-note,
.palette-custom {
  padding: 28px 32px;
  background:
    radial-gradient(circle at 94% 12%, rgba(111, 91, 68, .08), transparent 30%),
    rgba(255, 252, 246, .9);
  border: 1px solid var(--line);
  border-radius: 24px 24px 8px 24px;
  box-shadow: var(--shadow-soft);
}

.palette-note h2,
.palette-custom h2 {
  margin: 0 0 10px;
  font-family: Forum, Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.palette-note p,
.palette-custom p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.palette-card {
  overflow: hidden;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 24px 24px 8px 24px;
  box-shadow: var(--shadow-soft);
}

.palette-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.palette-card strong {
  display: block;
  padding: 16px 18px 18px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  text-align: center;
}

.palette-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.palette-custom .primary-btn {
  flex: 0 0 auto;
}

.landing-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 32px 76px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.landing-copy,
.landing-media,
.price-card,
.text-panel {
  background: rgba(255, 253, 248, .92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.landing-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 36px;
  border-radius: 28px 28px 6px 28px;
}

.landing-copy h1 {
  margin-bottom: 0;
  font-size: 72px;
}

.landing-copy p {
  max-width: 680px;
  color: #514c44;
  font-size: 18px;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.landing-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 430px;
  min-width: 0;
  max-width: 100%;
  border-radius: 28px 28px 6px 28px;
}

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

.landing-section {
  padding-top: 54px;
}

.price-card-grid + .text-panel,
.landing-section.text-panel {
  margin-top: 22px;
}

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

.feature-card-grid,
.process-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.price-card,
.feature-card,
.process-card,
.extra-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 190px;
  padding: 16px;
  border-radius: 22px 22px 6px 22px;
}

.price-card img,
.feature-card img,
.process-card img,
.extra-card img {
  width: 120px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px 18px 4px 18px;
}

.price-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.price-card h3,
.feature-card h3,
.process-card h3,
.extra-card h3 {
  margin: 0 0 8px;
  font-family: Forum, Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.price-card p,
.feature-card p,
.process-card p,
.extra-card p {
  font-size: 14px;
}

.process-card {
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: 160px;
}

.process-card .process-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  border: 1px solid rgba(111, 91, 68, 0.18);
  border-radius: 24px 24px 5px 24px;
  background:
    radial-gradient(circle at 72% 22%, rgba(130, 102, 69, 0.13), transparent 32%),
    linear-gradient(145deg, #fffdf8, #f2eadf);
  color: #6f5b44;
  box-shadow: 0 18px 42px rgba(54, 43, 32, 0.09);
}

.process-card .process-icon::before {
  display: block;
  width: 44px;
  height: 44px;
  background: currentColor;
  content: "";
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.process-card .process-icon::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(111, 91, 68, 0.34);
  border-radius: 50%;
  background: #fffdf8;
  content: "";
}

.process-icon-request::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 7h14l7 7v27H15z'/%3E%3Cpath d='M29 7v8h7'/%3E%3Cpath d='M21 23h10M21 30h10M21 37h6'/%3E%3Cpath d='M11 14H8v27h21v-3'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 7h14l7 7v27H15z'/%3E%3Cpath d='M29 7v8h7'/%3E%3Cpath d='M21 23h10M21 30h10M21 37h6'/%3E%3Cpath d='M11 14H8v27h21v-3'/%3E%3C/g%3E%3C/svg%3E");
}

.process-icon-calc::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='12' y='7' width='24' height='34' rx='4'/%3E%3Cpath d='M18 14h12v7H18zM18 28h.1M24 28h.1M30 28h.1M18 34h.1M24 34h.1M30 34h.1'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='12' y='7' width='24' height='34' rx='4'/%3E%3Cpath d='M18 14h12v7H18zM18 28h.1M24 28h.1M30 28h.1M18 34h.1M24 34h.1M30 34h.1'/%3E%3C/g%3E%3C/svg%3E");
}

.process-icon-sample::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 17 24 9l13 8-13 8z'/%3E%3Cpath d='M11 17v14l13 8 13-8V17M24 25v14'/%3E%3Cpath d='M17 13l13 8'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 17 24 9l13 8-13 8z'/%3E%3Cpath d='M11 17v14l13 8 13-8V17M24 25v14'/%3E%3Cpath d='M17 13l13 8'/%3E%3C/g%3E%3C/svg%3E");
}

.process-icon-contract::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 7h15l6 6v28H14z'/%3E%3Cpath d='M29 7v7h6M20 22h10M20 28h10M20 34h6'/%3E%3Cpath d='m31 35 3 3 7-8'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 7h15l6 6v28H14z'/%3E%3Cpath d='M29 7v7h6M20 22h10M20 28h10M20 34h6'/%3E%3Cpath d='m31 35 3 3 7-8'/%3E%3C/g%3E%3C/svg%3E");
}

.process-icon-payment::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='14' width='32' height='22' rx='4'/%3E%3Cpath d='M8 21h32M15 29h7'/%3E%3Cpath d='M31 30c0 2.8-2.2 5-5 5s-5-2.2-5-5 2.2-5 5-5 5 2.2 5 5Z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='14' width='32' height='22' rx='4'/%3E%3Cpath d='M8 21h32M15 29h7'/%3E%3Cpath d='M31 30c0 2.8-2.2 5-5 5s-5-2.2-5-5 2.2-5 5-5 5 2.2 5 5Z'/%3E%3C/g%3E%3C/svg%3E");
}

.advantage-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advantage-list li {
  padding: 14px 16px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px 18px 6px 18px;
}

.equipment-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.equipment-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 22px 22px 6px 22px;
  box-shadow: var(--shadow);
}

.text-panel {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 28px 28px 6px 28px;
}

.text-panel p {
  color: #514c44;
  font-size: 17px;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

.faq-list p {
  margin-top: 12px;
}

.info-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 28px;
  max-width: 1440px;
  padding: 42px 32px 76px;
  align-items: start;
}

.lead-layout::before {
  display: none;
}

.lead-form {
  display: grid;
  grid-column: 1;
  gap: 18px;
  padding: 32px;
  border-radius: 28px 28px 6px 28px;
}

.lead-form form {
  display: grid;
  gap: 18px;
}

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

.file-drop {
  place-items: center;
  min-height: 124px;
  padding: 20px;
  color: var(--ink);
  background: var(--soft);
  border: 1px dashed rgba(139, 107, 67, .55);
  border-radius: 18px;
  text-align: center;
}

.file-drop small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.file-drop input {
  display: none;
}

.file-list {
  display: grid;
  gap: 8px;
  margin-top: -4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.file-list.has-files {
  color: var(--ink);
}

.file-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.file-list em {
  flex: 0 0 auto;
  color: var(--muted);
  font-style: normal;
}

.request-list {
  display: grid;
  grid-column: 2;
  gap: 12px;
  padding: 18px;
  border-radius: 28px 28px 6px 28px;
  position: sticky;
  top: 96px;
}

.request-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 70px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px 16px 4px 16px;
}

.request-item img {
  width: 62px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.request-item strong,
.request-item span {
  display: block;
}

.request-item strong {
  font-size: 14px;
}

.request-item span {
  color: var(--muted);
  font-size: 12px;
}

.request-item input {
  min-height: 36px;
  padding: 8px;
}

.request-popover .request-item {
  grid-template-columns: 52px minmax(0, 1fr);
}

.request-popover .request-item img {
  width: 52px;
}

.request-popover .request-item input {
  display: none;
}

.article-page {
  padding: 32px;
}

.article-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.article-tags-panel {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 24px;
  padding: 22px;
  background: rgba(255, 253, 248, .9);
  border: 1px solid var(--line);
  border-radius: 24px 24px 6px 24px;
  box-shadow: 0 16px 38px rgba(39, 32, 25, .06);
}

.article-tags-panel h2 {
  margin: 0;
  font-family: Forum, Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.article-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.article-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.article-card-image {
  display: block;
  overflow: hidden;
  height: 170px;
  min-height: 170px;
  background: #e8ece9;
  border-radius: 14px 14px 4px 14px;
}

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

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.article-meta span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.article-card h2 {
  margin: 0;
}

.article-card p {
  margin-top: 8px;
}

.article-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.article-card-tags a {
  padding: 7px 10px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid rgba(139, 107, 67, .22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.article-detail {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.article-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
  align-items: center;
  padding: 30px;
  background: rgba(255, 253, 248, .94);
  border: 1px solid var(--line);
  border-radius: 28px 28px 6px 28px;
  box-shadow: var(--shadow);
}

.article-detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px 18px 6px 18px;
}

.article-detail-hero p {
  color: var(--muted);
  font-size: 18px;
}

.article-content {
  display: grid;
  gap: 18px;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: anywhere;
  padding: 30px;
  color: #514c44;
  font-size: 18px;
  line-height: 1.68;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 24px 24px 6px 24px;
  box-shadow: var(--shadow);
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content figure,
.article-content table,
.article-content .author-block,
.article-content .direct-answer,
.article-content .expert-block,
.article-content .cta-block {
  margin: 0;
}

.article-content p,
.article-content li {
  color: #514c44;
  font-size: 18px;
  line-height: 1.68;
}

.article-content h1,
.article-content h2,
.article-content h3 {
  margin: 10px 0 0;
  color: var(--ink);
}

.article-content h1 {
  font-family: Inter, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.35;
}

.article-content h2 {
  margin-top: 22px;
  font-size: 26px;
  line-height: 1.28;
}

.article-content h3 {
  margin-top: 14px;
  font-size: 21px;
  line-height: 1.35;
}

.article-content .article-lead {
  padding: 18px 20px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid rgba(139, 107, 67, .2);
  border-radius: 18px 18px 6px 18px;
  font-size: 19px;
}

.article-content a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 9px;
  padding-left: 24px;
}

.article-content li::marker {
  color: var(--accent);
  font-weight: 800;
}

.article-content blockquote {
  padding: 18px 22px;
  color: var(--ink);
  background: rgba(139, 107, 67, .08);
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 6px 0;
}

.article-content figure {
  overflow: hidden;
  background: #f2eee5;
  border-radius: 20px 20px 6px 20px;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin: 0 auto;
  border-radius: 18px 18px 6px 18px;
}

.article-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  margin: 4px 0;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 18px 18px 6px 18px;
  background: #fffaf1;
}

.article-content th,
.article-content td {
  min-width: 160px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: #514c44;
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: var(--ink);
  background: var(--soft);
  font-weight: 900;
}

.article-content input,
.article-content select {
  max-width: 100%;
  margin: 4px 6px 4px 0;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 10px 10px 4px 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.article-content .author-block,
.article-content .expert-block,
.article-content .direct-answer,
.article-content .cta-block {
  padding: 18px 20px;
  background: rgba(139, 107, 67, .08);
  border: 1px solid rgba(139, 107, 67, .18);
  border-radius: 20px 20px 6px 20px;
}

.article-content .author-block {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.article-content .author-block img {
  width: 92px;
  height: 92px !important;
  object-fit: cover;
  border-radius: 50%;
}

.article-loading {
  padding: 24px;
  color: var(--muted);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px 18px 6px 18px;
}

.article-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.article-pagination button,
.article-pagination span {
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 14px 14px 4px 14px;
  font-weight: 800;
}

.article-pagination button {
  cursor: pointer;
}

.article-pagination button.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.article-pagination button:disabled {
  cursor: default;
  opacity: .45;
}

.article-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: transparent;
  background: transparent;
}

.article-detail-tags {
  width: 100%;
}

.contacts-page {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 32px;
}

.contacts-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.contacts-head h1 {
  max-width: 760px;
}

.contacts-head p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 24px;
  align-items: start;
}

.contact-form-card,
.contacts-card,
.map-card {
  background: rgba(255, 253, 248, .94);
  border: 1px solid var(--line);
  border-radius: 28px 28px 6px 28px;
  box-shadow: var(--shadow);
}

.contact-form-card,
.contacts-card {
  padding: 30px;
}

.contact-form-card form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-form-card h2,
.contacts-card h2 {
  margin-top: 4px;
  font-family: Forum, Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.file-drop.compact {
  min-height: 96px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.contact-list svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  color: var(--accent-strong);
  background: var(--soft);
  border: 1px solid rgba(139, 107, 67, .2);
  border-radius: 14px 14px 4px 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-details {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.company-details strong {
  color: var(--ink);
}

.map-card {
  overflow: hidden;
  margin-top: 24px;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  border: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding: 28px 32px;
  color: #f1eee9;
  background: var(--ink);
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer strong {
  margin-bottom: 6px;
}

.footer span,
.footer a {
  color: #aab8b4;
}

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

@media (max-width: 1180px) {
  .home-hero {
    grid-template-columns: minmax(0, .95fr) minmax(360px, .9fr);
    gap: 32px;
  }

  .home-copy h1 {
    font-size: 60px;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

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

  .direction-card.large {
    grid-column: span 2;
  }

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

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

@media (max-width: 920px) {
  .topbar,
  .home-hero,
  .landing-hero,
  .home-cta,
  .layout,
  .product-detail,
  .lead-layout,
  .contacts-head,
  .contacts-layout,
  .product-seo-tags,
  .article-tags-panel,
  .article-card,
  .article-detail-hero,
  .catalog-section-head,
  .info-columns,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
    padding-top: 54px;
  }

  .landing-media {
    width: 100%;
    min-height: 0;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

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

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

  .process-grid::before {
    display: none;
  }

  .process-grid article::after {
    display: none;
  }

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

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

  .topbar {
    gap: 14px;
  }

  .top-actions {
    justify-content: space-between;
  }

  .city-switcher {
    order: -1;
  }

  .delivery-city-head,
  .delivery-intro,
  .delivery-category-grid,
  .delivery-catalog-groups,
  .palette-grid,
  .pickup-grid,
  .city-grid {
    grid-template-columns: 1fr;
  }

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

  .palette-custom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sidebar {
    position: static;
  }

  .catalog-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    color: var(--ink);
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 16px 16px 5px 16px;
    box-shadow: var(--shadow);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
  }

  .catalog-mobile-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform .16s ease;
  }

  .catalog-mobile-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .layout > .sidebar {
    display: none;
    order: 1;
    max-height: min(62vh, 720px);
  }

  .layout > .sidebar.mobile-open {
    display: block;
  }

  .layout > .content {
    order: 2;
  }

  .category-tools {
    grid-template-columns: 1fr;
  }

  .subcategory-chip {
    max-width: none;
  }

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

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

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

  .page-head {
    grid-template-columns: 1fr;
  }

  .lead-form,
  .request-list {
    grid-column: auto;
  }

  .request-list {
    position: static;
    width: 100%;
  }
}

@media (max-width: 620px) {
  .topbar,
  .home-hero,
  .home-section,
  .home-strip,
  .home-cta,
  .landing-page,
  .layout,
  .product-page,
  .lead-layout,
  .contacts-page,
  .article-page,
  .service-page,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .city-switcher {
    width: 100%;
  }

  .city-switcher summary {
    justify-content: center;
    width: 100%;
  }

  .city-switcher-panel {
    left: 0;
    right: auto;
    grid-template-columns: 1fr;
    width: min(320px, calc(100vw - 32px));
  }

  .delivery-category-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    min-height: 118px;
  }

  .delivery-category-card .subcategory-thumb {
    width: 76px;
    height: 76px;
  }

  .palette-note,
  .palette-custom {
    padding: 22px 20px;
  }

  .palette-note h2,
  .palette-custom h2 {
    font-size: 28px;
  }

  .palette-note p,
  .palette-custom p {
    font-size: 16px;
  }

  .palette-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    overflow: visible;
  }

  .topbar {
    position: static;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 104px;
  }

  .main-nav a {
    display: grid;
    min-height: 42px;
    place-items: center;
    padding: 7px 8px;
    background: rgba(255, 253, 248, .72);
    border: 1px solid rgba(139, 107, 67, .16);
    border-radius: 14px 14px 4px 14px;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
  }

  .woodcut {
    opacity: .07;
  }

  .woodcut-three,
  .woodcut-four {
    display: none;
  }

  .phone-link {
    font-size: 14px;
  }

  .email-link {
    font-size: 13px;
  }

  .top-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: stretch;
    width: 100%;
  }

  .phone-link,
  .email-link {
    grid-column: 1;
    min-width: 0;
  }

  .top-actions .icon-btn {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  h1 {
    font-size: 38px;
  }

  .home-copy h1 {
    font-size: 46px;
  }

  .landing-copy {
    padding: 24px;
  }

  .landing-copy h1 {
    font-size: 44px;
  }

  .landing-media {
    aspect-ratio: 4 / 3;
    border-radius: 22px 22px 5px 22px;
  }

  .home-copy p {
    font-size: 17px;
  }

  .hero-media,
  .hero-media img {
    min-height: 0;
  }

  .home-strip,
  .direction-grid,
  .advantage-grid,
  .process-grid,
  .related-product-grid,
  .price-card-grid,
  .feature-card-grid,
  .process-card-grid,
  .extra-card-grid,
  .equipment-gallery {
    grid-template-columns: 1fr;
  }

  .price-card,
  .feature-card,
  .process-card,
  .extra-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .price-card img,
  .feature-card img,
  .extra-card img {
    width: 92px;
  }

  .direction-card.large {
    grid-column: auto;
  }

  .advantage-card.large {
    grid-column: auto;
  }

  .section-head,
  .home-cta {
    align-items: start;
  }

  .section-head h2,
  .home-cta h2 {
    font-size: 32px;
  }

  .product-grid,
  .category-grid,
  .form-grid,
  .specs {
    grid-template-columns: 1fr;
  }

  .product-card h2,
  .product-card p {
    min-height: 0;
  }

  .price-row,
  .footer {
    flex-direction: column;
  }
}
