:root {
  --ink: #111317;
  --muted: #667085;
  --line: #d9dee7;
  --panel: #f6f7f9;
  --white: #ffffff;
  --red: #ff3045;
  --red-dark: #c9182c;
  --green: #1d8a70;
  --steel: #41566b;
  --shadow: 0 18px 50px rgba(17, 19, 23, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: var(--white);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  height: 52px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  color: #303946;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--red-dark);
}

.language-toggle {
  min-width: 50px;
  height: 38px;
  color: var(--red-dark);
  font-weight: 800;
  background: #fff0f2;
  border: 1px solid #ffd1d7;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  padding: clamp(120px, 14vw, 190px) clamp(20px, 5vw, 72px) 58px;
  overflow: hidden;
  color: var(--white);
  background: #161a20;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 14, 18, 0.92), rgba(12, 14, 18, 0.62) 48%, rgba(12, 14, 18, 0.14)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 120px);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/generated/home-hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-media .image-placeholder {
  position: absolute;
  top: 126px;
  right: clamp(28px, 5vw, 72px);
  width: min(420px, 34vw);
  min-height: 230px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(50px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.section {
  padding: clamp(64px, 9vw, 104px) clamp(20px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stat {
  min-height: 136px;
  padding: 30px;
  background: var(--white);
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.stat strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(20px, 2vw, 30px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-section p,
.about-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.product-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 28px;
  background: var(--line);
}

.product-overview a {
  min-height: 176px;
  padding: 26px;
  color: inherit;
  text-decoration: none;
  background: var(--panel);
}

.product-overview a:hover {
  background: #fff0f2;
}

.product-overview strong,
.product-overview span {
  display: block;
}

.product-overview strong {
  font-size: 22px;
}

.product-overview span {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.product-overview-cta {
  margin-top: 2px;
}

.specialist-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 6vw, 72px);
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #11161b;
}

.specialist-promo h2 {
  margin: 0 0 12px;
  color: var(--white);
}

.specialist-promo p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

html[dir="rtl"] .specialist-promo {
  text-align: right;
}

.roadmark-promo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #101215;
}

.roadmark-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 15, 18, 0.98), rgba(12, 15, 18, 0.7) 58%, rgba(12, 15, 18, 0.35)),
    url("assets/road-marking/hero-road-marking.jpg") center right / cover no-repeat;
}

html[dir="rtl"] .roadmark-promo::before {
  transform: scaleX(-1);
}

.roadmark-promo .button {
  background: #f13238;
  border-color: #f13238;
}

.catalog-page {
  padding-top: clamp(46px, 7vw, 82px);
  background: #fbfcfd;
}

.catalog-cover {
  position: relative;
  min-height: clamp(188px, 21vw, 268px);
  margin: clamp(28px, 4vw, 40px) 0 32px;
  overflow: hidden;
  background-color: #141b24;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.catalog-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(18, 24, 31, 0.34), transparent 58%);
}

.catalog-cover-note,
.illustrative-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(13, 18, 24, 0.62);
  border-radius: 4px;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 16px;
}

.catalog-search,
.catalog-summary,
.catalog-toolbar,
.category-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.catalog-search {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.catalog-search label,
.catalog-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-search input {
  width: 100%;
  border: 1px solid #cbd3df;
  border-radius: 6px;
  padding: 12px;
  font: inherit;
}

.catalog-summary {
  padding: 15px 16px;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.55;
}

.category-list {
  max-height: calc(100vh - 300px);
  overflow: auto;
  padding: 10px;
}

.category-button,
.subcategory-nav-button,
.subcategory-button,
.text-button {
  cursor: pointer;
  font: inherit;
}

.category-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 3px 0;
  padding: 11px 16px;
  color: #27313d;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.category-button span {
  flex: 0 0 auto;
  min-width: 34px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.category-button.active,
.category-button:hover {
  color: var(--red-dark);
  background: #fff0f2;
}

.category-group {
  border-radius: 6px;
}

.category-group.open {
  margin: 6px 0;
  background: #fbfcfd;
  border: 1px solid var(--line);
}

.category-group.open > .category-button {
  margin: 0;
}

.subcategory-nav {
  display: none;
  padding: 0 8px 10px 18px;
}

.category-group.open .subcategory-nav {
  display: grid;
  gap: 2px;
}

.subcategory-nav-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
  width: 100%;
  padding: 7px 12px;
  color: #445064;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 5px;
}

.subcategory-nav-button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.subcategory-nav-button em {
  flex: 0 0 auto;
  min-width: 28px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  text-align: right;
}

.subcategory-nav-button.active,
.subcategory-nav-button:hover {
  color: var(--red-dark);
  background: #fff0f2;
}

.subcategory-nav-button.standalone {
  min-height: 42px;
  margin: 3px 0;
  padding: 10px 16px;
}

.catalog-results {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 18px;
}

.catalog-toolbar strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
}

.text-button {
  color: var(--red-dark);
  font-weight: 800;
  background: transparent;
  border: 0;
}

.subcategory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.subcategory-button {
  min-height: 38px;
  padding: 0 12px;
  color: #364151;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.subcategory-button.active,
.subcategory-button:hover {
  color: var(--white);
  background: var(--steel);
  border-color: var(--steel);
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-image {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: #516070;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 48, 69, 0.16), transparent 34%),
    linear-gradient(145deg, #e8edf2, #f8fafc);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image span {
  font-weight: 800;
  line-height: 1.45;
}

.product-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.product-body h3,
.capability-list h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.product-body p,
.capability-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-body h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 80px;
  margin: 0;
  font-size: 19px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-body p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 52px;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tags span {
  padding: 5px 8px;
  color: #455365;
  font-size: 12px;
  font-weight: 800;
  background: var(--panel);
  border-radius: 5px;
}

.product-action {
  justify-self: start;
  color: var(--red-dark);
  background: transparent;
  border: 0;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.empty-products {
  grid-column: 1 / -1;
  padding: 30px;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: clamp(16px, 4vw, 48px);
}

.product-modal.open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 14, 0.72);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(820px, 92vh);
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: auto;
  background: var(--line);
}

.modal-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--panel);
}

.modal-copy {
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
}

.modal-copy h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.modal-description {
  margin-top: 20px;
  color: #465365;
  font-size: 15px;
  line-height: 1.75;
  white-space: pre-line;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button.ghost {
  color: var(--red-dark);
  border-color: var(--line);
  background: var(--white);
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .brand img,
html[dir="rtl"] .site-footer img {
  object-position: right center;
}

html[dir="rtl"] .hero::before {
  background:
    linear-gradient(270deg, rgba(12, 14, 18, 0.92), rgba(12, 14, 18, 0.62) 48%, rgba(12, 14, 18, 0.14)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 120px);
}

html[dir="rtl"] .hero {
  direction: ltr;
  justify-items: end;
}

html[dir="rtl"] .hero-media {
  background-position: left center;
  transform: scaleX(-1);
}

html[dir="rtl"] .catalog-cover-note,
html[dir="rtl"] .illustrative-label,
html[dir="rtl"] .scene-card small {
  right: auto;
  left: 14px;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .about-copy,
html[dir="rtl"] .contact-section > div:first-child {
  text-align: right;
}

html[dir="rtl"] .hero-content {
  width: min(790px, 100%);
  direction: rtl;
  justify-self: end;
}

html[dir="rtl"] .hero p:not(.eyebrow) {
  margin-right: 0;
  margin-left: auto;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-lines {
  justify-content: flex-start;
}

html[dir="rtl"] .capability-list div {
  border-right: 4px solid var(--red);
  border-left: 0;
}

html[dir="rtl"] .product-body,
html[dir="rtl"] .modal-copy,
html[dir="rtl"] .catalog-search,
html[dir="rtl"] .quote-form,
html[dir="rtl"] .section-heading {
  text-align: right;
}

html[dir="rtl"] .category-button,
html[dir="rtl"] .subcategory-nav-button {
  text-align: right;
}

html[dir="rtl"] .category-button span,
html[dir="rtl"] .subcategory-nav-button em {
  text-align: left;
}

html[dir="rtl"] .subcategory-nav {
  padding: 0 18px 10px 8px;
}

html[dir="rtl"] .about-section,
html[dir="rtl"] .modal-panel {
  direction: ltr;
}

html[dir="rtl"] .about-copy,
html[dir="rtl"] .modal-copy {
  direction: rtl;
}

html[dir="rtl"] .modal-close {
  right: auto;
  left: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  background: var(--panel);
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list div {
  padding: 24px;
  background: var(--white);
  border-left: 4px solid var(--red);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.about-image {
  position: relative;
  min-height: 420px;
}

.managed-site-image {
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 26px;
  color: #233044;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(29, 138, 112, 0.18), transparent 40%),
    #eef2f5;
  border: 1px dashed #9aa6b5;
}

.image-placeholder span {
  color: var(--muted);
  font-size: 14px;
}

.compact {
  min-height: 420px;
}

.gallery-section {
  background: #101318;
  color: var(--white);
}

.gallery-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.scene-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #191d24;
  border-radius: 8px;
}

.scene-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.scene-card figcaption {
  padding: 20px 22px 23px;
}

.scene-card strong,
.scene-card span {
  display: block;
}

.scene-card strong {
  font-size: 19px;
}

.scene-card span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.scene-card small {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(13, 18, 24, 0.68);
  border-radius: 4px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 84px);
}

.contact-lines a {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: none;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #2b3440;
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cbd3df;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.quote-form textarea {
  resize: vertical;
}

.catalog-load-more {
  display: block;
  margin: 30px auto 0;
}

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

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 130px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.admin-page {
  background: #fbfcfd;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.55fr);
  gap: 26px;
  align-items: start;
}

.admin-form,
.site-assets-form,
.image-guide,
.admin-list-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
}

.admin-form {
  display: grid;
  gap: 16px;
}

.site-assets-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.admin-form h2,
.image-guide h2,
.admin-list-section h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.admin-form label,
.site-assets-form label {
  display: grid;
  gap: 8px;
  color: #2b3440;
  font-size: 14px;
  font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.site-assets-form input {
  width: 100%;
  border: 1px solid #cbd3df;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.admin-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.admin-status {
  min-height: 24px;
  margin: 0;
  color: var(--steel);
  font-weight: 800;
}

.admin-help {
  color: var(--muted);
  line-height: 1.65;
}

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

.inquiry-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.inquiry-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.inquiry-head time,
.inquiry-source {
  color: var(--muted);
  font-size: 13px;
}

.inquiry-item p {
  margin: 7px 0;
  line-height: 1.6;
}

.inquiry-message {
  padding: 12px;
  color: #273343;
  background: #f1f4f7;
  white-space: pre-wrap;
}

.image-guide {
  display: grid;
  gap: 14px;
}

.image-guide div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.image-guide strong,
.image-guide span {
  display: block;
}

.image-guide span,
.image-guide p {
  color: var(--muted);
  line-height: 1.65;
}

.admin-list-section {
  margin-top: 28px;
}

.admin-product-list {
  display: grid;
  gap: 10px;
}

.admin-product-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-product-item img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  background: var(--panel);
  border-radius: 6px;
}

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

.admin-product-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.admin-product-item button {
  color: var(--red-dark);
  font: inherit;
  font-weight: 800;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.site-assets-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.site-asset-item {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-asset-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--panel);
  border-radius: 6px;
}

.site-asset-item span,
.site-asset-item p {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .language-toggle {
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 77px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media .image-placeholder {
    display: none;
  }

  .intro-band,
  .product-grid,
  .product-overview,
  .admin-layout,
  .admin-two-col,
  .site-assets-preview,
  .split-section,
  .about-section,
  .scene-grid,
  .contact-section,
  .modal-panel {
    grid-template-columns: 1fr;
  }

  .specialist-promo {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-sidebar {
    position: static;
  }

  .category-list {
    max-height: 280px;
  }

  .modal-panel {
    overflow: auto;
  }
}

@media (max-width: 760px) {
  .catalog-shell {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

  .category-list {
    max-height: 320px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 70px;
  }

  .brand {
    width: 154px;
  }

  .site-nav {
    top: 69px;
  }

  .hero {
    min-height: 720px;
    padding-top: 94px;
  }

  .hero-actions .button,
  .quote-form .button {
    width: 100%;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-gallery {
    grid-template-columns: 1fr;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stat,
  .product-body,
  .capability-list div,
  .scene-card {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
