:root {
  --paper: #f4f1eb;
  --surface: #fffdf9;
  --ink: #1d201f;
  --muted: #656964;
  --line: #d9d5cc;
  --accent: #b94328;
  --accent-dark: #91331f;
  --dark: #26302d;
  --radius: 18px;
  --shadow: 0 18px 60px rgba(31, 35, 33, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.5;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #ef8a72; outline-offset: 3px; }

.site-header {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; }
.brand > span:last-child { display: grid; line-height: 1.1; }
.brand small { display: block; margin-top: 3px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #e2cfc5;
  border-radius: 50%;
  color: var(--accent);
  background: #fff7f3;
  font-size: 13px;
  letter-spacing: .04em;
}
.site-header nav { display: flex; gap: 26px; margin-left: auto; }
.site-header nav a, .header-action { text-decoration: none; font-weight: 650; }
.site-header nav a:hover, .section-heading > a:hover { color: var(--accent); }
.header-action { padding: 0; border: 0; background: transparent; color: var(--accent); cursor: pointer; }

.customer-header-actions {
  margin-left: 2px;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(234, 230, 221, .64));
  box-shadow: 0 10px 28px rgba(33, 38, 36, .09), inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px) saturate(1.2);
}
.customer-header-button {
  position: relative;
  min-height: 48px;
  padding: 0 13px 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: visible;
  border: 1px solid rgba(74, 76, 71, .14);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.customer-header-button:hover { z-index: 1; transform: translateY(-2px); border-color: rgba(83, 79, 70, .28); box-shadow: 0 9px 20px rgba(31, 35, 33, .14), inset 0 1px 0 rgba(255,255,255,.88); }
.customer-header-button--notebook { color: #5d4029; background: linear-gradient(145deg, rgba(255,250,239,.96), rgba(232,216,190,.76)); }
.customer-header-button--cart { border-color: #d7b7a8; color: var(--accent-dark); background: linear-gradient(145deg, #fff9f5, #f0d9ce); box-shadow: 0 8px 18px rgba(185, 67, 40, .12), inset 0 1px 0 rgba(255,255,255,.9); }
.customer-header-button--cart:hover { border-color: var(--accent); background: linear-gradient(145deg, #fffaf7, #f3d0c1); }
.customer-header-icon {
  width: 30px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, .55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.customer-header-button--cart .customer-header-icon { background: rgba(255,255,255,.62); }
.customer-header-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.customer-header-button.is-highlighted { animation: header-destination 1s ease both; }
.customer-header-button b {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 11px;
  line-height: 1;
}
[data-customer-count][hidden] { display: none !important; }

.catalog-hero {
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto;
  padding: clamp(26px, 4vw, 50px) clamp(18px, 4vw, 46px) clamp(22px, 3.5vw, 40px);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-intro { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); gap: clamp(26px, 4vw, 48px); align-items: center; }
.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.hero-conversion { padding: 24px; color: var(--ink); border: 1px solid #ead0c5; border-radius: 20px; background: #fff7f3; box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 12px 32px rgba(185,67,40,.08); }
.conversion-title { margin: 0 0 12px; font-size: 21px; font-weight: 800; }
.quick-search label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 13px; font-weight: 700; }
.quick-search > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.quick-search input { min-width: 0; min-height: 52px; border: 0; }
.quick-search button { min-height: 52px; padding: 0 18px; border: 0; border-radius: 9px; color: #fff; background: var(--accent); font-weight: 800; cursor: pointer; }
.quick-search button:hover { background: var(--accent-dark); }
.search-hints { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.search-hints a { color: var(--accent); font-weight: 800; }
.hero-conversion .hero-actions { align-items: center; margin-top: 20px; }
.hero-conversion .button { min-height: 48px; }
.hero-text-action { color: var(--accent); font-size: 14px; font-weight: 750; text-underline-offset: 3px; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 950px;
  font-size: clamp(40px, 5.25vw, 72px);
  line-height: 1;
  letter-spacing: -.05em;
}
.hero-inline-link {
  color: inherit;
  text-decoration-color: var(--accent);
  text-decoration-thickness: .07em;
  text-underline-offset: .1em;
  transition: color .15s ease, text-decoration-color .15s ease;
}
.hero-inline-link:hover { color: var(--accent); }
h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.04em;
}
h3 { margin: 0; font-size: 22px; line-height: 1.15; }
.lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.button-primary { color: #fff; background: var(--accent); }
.button-primary:hover { background: var(--accent-dark); }
.button-secondary { border-color: var(--line); background: transparent; }
.button-secondary:hover { background: var(--paper); }
.hero-points { margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); list-style: none; font-size: 13px; }
.hero-points li::before { content: "✓"; margin-right: 7px; color: var(--accent); font-weight: 900; }

.category-heading { margin: clamp(30px, 4vw, 46px) 0 18px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.category-heading h2 { font-size: clamp(30px, 3.2vw, 46px); }
.category-heading > a { flex: none; color: var(--accent); font-weight: 800; text-decoration: none; }
.category-heading > a:hover { color: var(--accent-dark); }
.category-gallery { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.visual-category {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 168px auto;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
}
.visual-category img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.visual-category span { min-height: 70px; padding: 15px 16px; display: flex; align-items: center; font-size: 16px; font-weight: 800; line-height: 1.25; }
.visual-category:hover { border-color: #b8b1a6; box-shadow: 0 12px 28px rgba(31, 35, 33, .1); }
.visual-category:hover img { transform: scale(1.025); }
.catalog-followup { margin-top: 18px; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-radius: 14px; background: var(--paper); }
.catalog-followup p { margin: 0; }
.catalog-followup .button { flex: none; min-height: 46px; }

.examples-section { width: min(1180px, calc(100% - 32px)); margin: 68px auto; }
.example-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.example-card-shell { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.example-card { min-width: 0; overflow: hidden; display: grid; grid-template-rows: 230px auto; color: inherit; text-decoration: none; }
.example-image { position: relative; min-width: 0; overflow: hidden; display: block; }
.example-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.example-body { padding: 18px; display: grid; align-content: start; gap: 10px; }
.example-body strong { font-size: 19px; line-height: 1.2; }
.example-body small { min-height: 42px; font-size: 14px; line-height: 1.45; }
.example-body b { color: var(--accent); font-size: 14px; }
.example-card-shell:hover { border-color: #b8b1a6; box-shadow: 0 14px 34px rgba(31, 35, 33, .1); }
.example-card:hover img { transform: scale(1.025); }
.customer-save-actions { padding: 0 18px 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.customer-save-actions button {
  position: relative;
  min-width: 0;
  min-height: 50px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(39, 49, 45, .55);
  border-radius: 14px;
  color: var(--ink);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,235,226,.9));
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: 0 7px 17px rgba(31,35,33,.08), inset 0 1px 0 rgba(255,255,255,.95);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}
.customer-save-actions button::after {
  content: "";
  position: absolute;
  top: -65%;
  bottom: -65%;
  left: -55%;
  width: 42%;
  transform: rotate(18deg) translateX(-180%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent);
  transition: transform .5s ease;
  pointer-events: none;
}
.customer-save-actions button:hover { transform: translateY(-2px); border-color: rgba(39,49,45,.82); box-shadow: 0 12px 25px rgba(31,35,33,.14), inset 0 1px 0 rgba(255,255,255,.95); }
.customer-save-actions button:hover::after { transform: rotate(18deg) translateX(480%); }
.customer-save-actions button[data-customer-add="cart"] { border-color: #d6ad9c; color: var(--accent-dark); background: linear-gradient(145deg, #fff9f5, #f2d7ca); box-shadow: 0 9px 21px rgba(185,67,40,.12), inset 0 1px 0 rgba(255,255,255,.9); }
.customer-save-actions button[data-customer-add="notebook"] { border-color: #c8aa7d; color: #553a25; background: linear-gradient(145deg, #fffaf0, #ead8ba); }
.customer-save-actions button[data-customer-add="cart"].is-saved { border-color: #287044; color: #225036; background: linear-gradient(145deg, #f4fff6, #dff2e4); box-shadow: 0 10px 24px rgba(34,112,73,.18), inset 0 1px 0 rgba(255,255,255,.9); }
.customer-save-actions button[data-customer-add="notebook"].is-saved { border-color: #9b642b; color: #714716; background: linear-gradient(145deg, #fff8ec, #ead2ae); box-shadow: 0 10px 24px rgba(126,76,32,.14), inset 0 1px 0 rgba(255,255,255,.9); }
.customer-save-icon { width: 24px; height: 24px; flex: none; display: grid; place-items: center; }
.customer-save-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.customer-save-label { position: relative; z-index: 1; }
.customer-save-check { position: absolute; z-index: 1; top: 5px; right: 6px; width: 20px; height: 20px; transform: scale(.35); opacity: 0; display: grid; place-items: center; border-radius: 50%; color: #226344; background: #fff; font-size: 12px; font-weight: 900; transition: transform .2s ease, opacity .2s ease; }
.customer-save-actions button.is-saved { padding-right: 29px; }
.customer-save-actions button.is-saved .customer-save-check { transform: scale(1); opacity: 1; }
.customer-save-actions button.is-feedback { animation: saved-action .78s cubic-bezier(.2,.85,.25,1); }
.product-card .customer-save-actions { padding: 4px 0 14px; }
.customer-save-actions-large { margin-top: 12px; padding: 0; }
.customer-save-actions-large button { min-height: 54px; font-size: 14px; }

.customer-lists-dialog {
  width: min(920px, calc(100% - 24px));
  max-height: min(92vh, 900px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(15, 18, 17, .3);
}
.customer-lists-dialog::backdrop { background: rgba(15, 18, 17, .68); backdrop-filter: blur(4px); }
.customer-lists-card { position: relative; max-height: min(92vh, 900px); padding: clamp(22px, 4vw, 38px); display: flex; flex-direction: column; }
.customer-lists-close { position: absolute; z-index: 2; top: 15px; right: 15px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--ink); background: var(--paper); font-size: 28px; line-height: 1; cursor: pointer; }
.customer-lists-heading { padding-right: 46px; }
.customer-lists-heading h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.05; }
.customer-lists-heading > p:last-child { margin: 9px 0 0; color: var(--muted); }
.customer-list-tabs { margin: 24px 0 14px; padding: 5px; display: grid; grid-template-columns: 1fr 1fr; gap: 5px; border-radius: 13px; background: var(--paper); }
.customer-list-tabs button { min-height: 46px; border: 0; border-radius: 9px; color: var(--muted); background: transparent; font-weight: 800; cursor: pointer; }
.customer-list-tabs button.is-active { color: var(--ink); background: #fff; box-shadow: 0 4px 14px rgba(31, 35, 33, .08); }
.customer-list-tabs b { min-width: 21px; height: 21px; margin-left: 5px; padding: 0 6px; display: inline-grid; place-items: center; border-radius: 99px; color: #fff; background: var(--accent); font-size: 11px; }
.customer-list-panel { min-height: 250px; overflow: auto; overscroll-behavior: contain; }
.customer-items { display: grid; gap: 12px; }
.customer-list-item { padding: 12px; display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 16px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.customer-item-image { overflow: hidden; border-radius: 10px; background: var(--paper); }
.customer-item-image img { width: 100%; height: 100%; min-height: 118px; object-fit: cover; }
.customer-item-main { min-width: 0; display: grid; align-content: start; gap: 11px; }
.customer-item-title { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.customer-item-title a { font-weight: 800; line-height: 1.25; text-decoration: none; }
.customer-item-title a:hover { color: var(--accent); }
.customer-item-title button { flex: none; padding: 0; border: 0; color: var(--muted); background: transparent; font-size: 12px; text-decoration: underline; cursor: pointer; }
.customer-item-quantity { width: max-content; display: grid; grid-template-columns: 36px 54px 36px; align-items: center; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.customer-item-quantity button { height: 36px; border: 0; background: var(--paper); font-size: 20px; cursor: pointer; }
.customer-item-quantity input { width: 54px; height: 36px; padding: 0; border: 0; border-inline: 1px solid var(--line); text-align: center; appearance: textfield; }
.customer-item-quantity input::-webkit-outer-spin-button, .customer-item-quantity input::-webkit-inner-spin-button { margin: 0; appearance: none; }
.customer-item-note { display: grid; gap: 5px; color: var(--ink); font-size: 12px; font-weight: 750; }
.customer-item-note small { color: var(--muted); font-weight: 400; }
.customer-item-note textarea { width: 100%; min-height: 58px; padding: 9px 10px; resize: vertical; border: 1px solid var(--line); border-radius: 9px; background: #fffdf9; font-size: 13px; line-height: 1.4; }
.customer-list-footer { margin-top: 14px; padding: 18px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 20px; border: 1px solid #ead0c5; border-radius: 15px; color: var(--ink); background: #fff7f3; }
.customer-list-footer p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.customer-list-footer .button { min-height: 48px; white-space: nowrap; }
.customer-account-hint { margin: 10px 4px 0; color: var(--muted); font-size: 12px; text-align: center; }
.customer-empty-state { min-height: 250px; padding: 30px; display: grid; place-items: center; align-content: center; gap: 10px; border: 1px dashed var(--line); border-radius: 15px; text-align: center; }
.customer-empty-state strong { font-size: 22px; }
.customer-empty-state p { max-width: 480px; margin: 0 0 10px; color: var(--muted); }
.customer-empty-state .button { width: auto; }
.customer-toast { position: fixed; z-index: 100; right: 22px; bottom: 22px; min-height: 58px; padding: 11px 18px 11px 12px; transform: translateY(24px) scale(.96); opacity: 0; display: flex; align-items: center; gap: 11px; border: 1px solid #e4d2c9; border-radius: 16px; color: var(--ink); background: rgba(255, 253, 249, .96); box-shadow: 0 18px 42px rgba(31, 35, 33, .18), inset 0 1px 0 rgba(255,255,255,.9); font-weight: 800; pointer-events: none; backdrop-filter: blur(12px); transition: opacity .2s ease, transform .26s cubic-bezier(.2,.85,.25,1); }
.customer-toast::before { content: "✓"; width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 11px; color: #2f6e4d; background: #e8f3e9; font-size: 18px; font-weight: 900; }
.customer-toast[data-kind="notebook"] { background: rgba(255, 248, 236, .96); }
.customer-toast[data-kind="notebook"]::before { color: #84501f; }
.customer-toast.is-visible { transform: translateY(0) scale(1); opacity: 1; }

@keyframes saved-action {
  0% { transform: scale(1); }
  42% { transform: scale(1.045); box-shadow: 0 0 0 7px rgba(57,143,99,.16), 0 14px 28px rgba(31,35,33,.2); }
  100% { transform: scale(1); }
}
@keyframes header-destination {
  0%, 100% { transform: translateY(0) scale(1); }
  38% { transform: translateY(-3px) scale(1.08); box-shadow: 0 0 0 7px rgba(185,67,40,.15), 0 12px 28px rgba(31,35,33,.2); }
}

.section { width: min(1120px, calc(100% - 32px)); margin: 68px auto; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 24px; }
.section-heading > a { color: var(--accent); font-weight: 750; text-decoration: none; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card {
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, .7);
}
.category-card:hover { transform: translateY(-3px); background: var(--surface); transition: .2s ease; }
.category-number { color: var(--accent); font-size: 13px; font-weight: 800; }
.category-card h3 { margin-top: auto; }
.category-card p { color: var(--muted); }
.category-card a { font-weight: 800; text-decoration: none; }

.request-section {
  width: min(1000px, calc(100% - 32px));
  margin: 68px auto 76px;
  display: grid;
  gap: 24px;
  scroll-margin-top: 24px;
}
#request:target .request-form { animation: form-arrival .8s ease-out; }
@keyframes form-arrival {
  0% { outline: 5px solid rgba(185, 67, 40, .35); transform: translateY(5px); }
  100% { outline: 0 solid transparent; transform: none; }
}
.request-copy { max-width: 780px; }
.request-copy > p, .request-copy li { color: var(--muted); }
.request-copy ul { padding-left: 20px; }
.request-form {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border: 1px solid rgba(217, 213, 204, .7);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.form-header { grid-column: 1 / -1; margin-bottom: 2px; padding-bottom: 18px; display: flex; align-items: start; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.form-header div { display: grid; gap: 4px; }
.form-header strong { font-size: 22px; }
.form-header div span { color: var(--muted); }
.request-form > label, .request-form .form-field { display: grid; gap: 8px; font-size: 15px; font-weight: 750; }
.request-form .form-field > label { font-weight: 750; }
.request-form label > span > small, .request-form legend small { margin-left: 4px; color: var(--muted); font-size: 12px; font-weight: 500; }
.request-form .field-hint { margin-top: -2px; color: #5f6762; font-size: 14px; line-height: 1.35; font-weight: 600; }
.request-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-wide,
.request-form .form-status,
.request-form .submit-estimate { grid-column: 1 / -1; }
.request-details { border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.request-details summary { padding: 17px 18px; color: var(--accent); font-weight: 800; cursor: pointer; list-style-position: inside; }
.request-details[open] summary { border-bottom: 1px solid var(--line); }
.request-details-grid { padding: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.request-details-grid > label,
.request-details-grid .form-field { display: grid; gap: 8px; font-size: 15px; font-weight: 750; }
.request-details-grid .location-field,
.request-details-grid .request-services,
.request-details-grid .custom-file-field,
.request-details-grid > label:last-child { grid-column: 1 / -1; }
.location-control { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.location-button { min-height: 54px; padding: 0 16px; border: 1px solid var(--line); border-radius: 11px; color: var(--accent); background: #fff; font-weight: 800; cursor: pointer; }
.location-button:hover { border-color: var(--accent); background: #fff9f6; }
.location-button[disabled] { opacity: .6; cursor: wait; }
.location-status { min-height: 20px; }
.location-status.success { color: #287044; }
.request-services { padding: 0; border: 0; }
.service-options { display: flex; flex-wrap: wrap; gap: 10px; }
.service-options label { position: relative; cursor: pointer; }
.service-options input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.service-options label span { min-height: 44px; padding: 10px 15px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 14px; font-weight: 700; }
.service-options label:hover span { border-color: #b8b1a6; }
.service-options input:checked + span { border-color: var(--accent); color: var(--accent); background: #fff7f3; box-shadow: inset 0 0 0 1px rgba(185,67,40,.15); }
.service-options input:focus-visible + span { outline: 3px solid #ef8a72; outline-offset: 3px; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; border: 0 !important; }
.custom-file-field { cursor: pointer; }
.custom-file-control { min-height: 64px; padding: 9px; display: flex; align-items: center; gap: 14px; border: 1px dashed #bdb6ab; border-radius: 12px; background: #fff; }
.custom-file-field:hover .custom-file-control { border-color: var(--accent); background: #fffaf7; }
.custom-file-button { flex: none; padding: 10px 14px; border: 1px solid #ead0c5; border-radius: 9px; color: var(--accent); background: #fff7f3; font-size: 14px; font-weight: 800; }
.custom-file-name { min-width: 0; overflow: hidden; color: var(--muted); font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.phone-field input { min-height: 60px; font-size: 20px; font-weight: 700; }
.contact-methods { padding: 0; border: 0; }
.contact-methods > div { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-methods .radio { position: relative; }
.contact-methods .radio input { position: absolute; opacity: 0; pointer-events: none; }
.contact-methods .radio span { min-height: 46px; padding: 10px 16px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: #fff; font-weight: 700; }
.contact-methods .radio input:checked + span { border-color: var(--accent); color: var(--accent); background: #fff7f3; }
.contact-methods .radio input:focus-visible + span { outline: 3px solid #ef8a72; outline-offset: 3px; }
.telegram-contact[hidden] { display: none !important; }
.request-form .consent,
.request-form .form-status { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}
textarea { resize: vertical; }
small { color: var(--muted); font-weight: 400; }
fieldset { padding: 0; border: 0; }
legend { margin-bottom: 8px; font-size: 14px; font-weight: 750; }
.radio, .consent { display: flex !important; align-items: center; gap: 10px !important; font-weight: 500 !important; }
.consent input { width: 22px; min-height: 22px; margin: 0; }
.form-status { min-height: 22px; margin: 0; font-weight: 700; }
.form-status.error { color: #a12818; }
.form-status.success { color: #287044; }
.request-form button[disabled] { opacity: .65; cursor: wait; }
.submit-estimate { min-height: 62px; font-size: 18px; }
footer {
  min-height: 180px;
  padding: 34px max(20px, calc((100% - 1120px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  background: #fffdf9;
}
footer p { color: var(--muted); }
.owner-note { max-width: 540px; }
.owner-note a { color: var(--accent); font-weight: 800; text-underline-offset: 3px; }
.mobile-actions { display: none; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .customer-header-actions { margin-left: auto; }
  .header-action { margin-left: auto; }
  .hero-intro { grid-template-columns: 1fr; }
  .category-gallery { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .example-grid { grid-template-columns: 1fr 1fr; }
  .request-section { grid-template-columns: 1fr; }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .category-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .visual-category { grid-template-rows: 190px auto; }
}

@media (max-width: 600px) {
  body { padding-bottom: 70px; }
  .site-header { min-height: 64px; }
  .header-action { display: none; }
  .catalog-hero { width: calc(100% - 12px); padding: 28px 14px 16px; border-radius: 20px; }
  .hero-intro { gap: 26px; }
  .hero-conversion { padding: 18px; border-radius: 16px; }
  .quick-search > div { grid-template-columns: 1fr; }
  .quick-search button { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-conversion .hero-actions { align-items: stretch; }
  .hero-text-action { padding: 5px 0; text-align: center; }
  .button { width: 100%; }
  .hero-points { display: grid; gap: 6px; }
  .category-heading { margin-top: 34px; display: grid; }
  .category-heading > a { display: none; }
  .category-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .visual-category { grid-template-rows: 145px auto; border-radius: 12px; }
  .visual-category span { min-height: 62px; padding: 12px; font-size: 15px; }
  .catalog-followup { padding: 16px; display: grid; }
  .section, .examples-section, .request-section { margin-top: 48px; margin-bottom: 48px; }
  .section-heading { display: grid; }
  .section-heading > a { display: none; }
  .example-grid { display: flex; overflow-x: auto; margin-inline: -16px; padding: 0 16px 10px; scroll-snap-type: x proximity; }
  .example-card-shell { flex: 0 0 84%; scroll-snap-align: start; }
  .example-card { grid-template-rows: 230px auto; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 220px; }
  .request-form { grid-template-columns: 1fr; padding: 22px; }
  .request-form > * { grid-column: 1 / -1 !important; }
  .form-header { display: grid; }
  .request-details-grid { grid-template-columns: 1fr; padding: 15px; }
  .request-details-grid > * { grid-column: 1 / -1 !important; }
  .location-control { grid-template-columns: 1fr; }
  .location-button { width: 100%; }
  .service-options { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-methods > div { display: grid; grid-template-columns: repeat(3, 1fr); }
  .contact-methods .radio span { padding-inline: 8px; font-size: 13px; }
  footer { min-height: 240px; flex-direction: column; }
  .mobile-actions {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 62px;
    padding: 7px max(8px, env(safe-area-inset-left)) calc(7px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    align-items: center;
    gap: 5px;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 249, .96);
    backdrop-filter: blur(12px);
  }
  .mobile-actions a {
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }
  .mobile-actions .primary { color: #fff; background: var(--accent); }

  .site-header { gap: 10px; }
  .customer-header-actions { margin-left: auto; padding: 3px; gap: 3px; border-radius: 14px; }
  .customer-header-button { min-width: 57px; min-height: 54px; padding: 4px 5px 3px; flex-direction: column; justify-content: center; gap: 1px; border-radius: 10px; }
  .customer-header-icon { width: 27px; height: 27px; border-radius: 8px; }
  .customer-header-icon svg { width: 22px; height: 22px; }
  .customer-header-label { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: nowrap; font-size: 9.5px; line-height: 1; }
  .customer-header-button b { top: -5px; right: -5px; }
  .customer-save-actions button { min-height: 52px; padding-inline: 9px; font-size: 12px; }
  .customer-save-actions button.is-saved { padding-right: 26px; }
  .customer-save-check { right: 4px; }
  .customer-lists-card { padding: 22px 14px 16px; }
  .customer-list-item { grid-template-columns: 88px minmax(0, 1fr); gap: 11px; padding: 9px; }
  .customer-item-image img { min-height: 92px; }
  .customer-item-title { display: grid; gap: 4px; }
  .customer-item-title button { justify-self: start; }
  .customer-list-footer { grid-template-columns: 1fr; gap: 13px; padding: 16px; }
  .customer-list-footer .button { width: 100%; }
  .customer-toast { right: 12px; bottom: 80px; left: 12px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #request:target .request-form { animation: none; }
  .customer-header-button.is-highlighted, .customer-save-actions button.is-feedback { animation: none; }
  .customer-save-actions button::after { display: none; }
}
