:root {
  --ink: #17202f;
  --muted: #667085;
  --line: #e6e9ef;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --brand: #d89422;
  --brand-dark: #9d6410;
  --accent: #1769aa;
  --success: #1f8a5b;
  --danger: #c4342d;
  --radius: 8px;
  --shadow: 0 12px 36px rgba(23, 32, 47, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.site-top {
  background: #111827;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}
.site-top__inner, .site-header__inner, .site-nav__inner, .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.site-top__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-top strong { color: #fff; }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.brand-logo {
  width: 150px;
  height: 54px;
  object-fit: contain;
}
.brand-mark__symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--brand);
  font-weight: 800;
}
.brand-mark__text {
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.1;
}
.brand-mark__text span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: .18em;
}

.site-search {
  flex: 1;
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.site-search input {
  flex: 1;
  min-width: 0;
  width: auto;
  border: 0;
  padding: 12px 14px;
  outline: 0;
}
.site-search button {
  border: 0;
  background: var(--brand);
  color: #fff;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 700;
}
.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hotline-pill {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 12px;
  line-height: 1.25;
  white-space: nowrap;
}
.hotline-pill span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.hotline-pill strong { color: var(--danger); }

.site-nav {
  background: #fff;
  border-bottom: 3px solid var(--brand);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.site-nav__inner::-webkit-scrollbar { display: none; }
.site-nav a {
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #344054;
  white-space: nowrap;
}
.site-nav a.active, .site-nav a:hover { color: var(--brand-dark); }
.site-nav__spacer { flex: 1; }

.hero {
  background: linear-gradient(135deg, #101827 0%, #233047 58%, #151b26 100%);
  color: #fff;
}
.hero__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
  min-height: 520px;
  padding: 54px 0;
}
.hero__inner > * {
  min-width: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f7c873;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
.hero h1 span { display: block; }
.hero p {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  max-width: 660px;
  overflow-wrap: anywhere;
}
.hero__actions, .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.btn--brand { background: var(--brand); color: #171717; }
.btn--light { background: #fff; color: var(--ink); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,.28); color: #fff; }
.btn--ghost { background: #fff; border-color: var(--line); color: var(--ink); }

.hero-panel {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.hero-panel__title {
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.metric {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  min-height: 96px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.metric strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
.metric span {
  display: block;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 54px 0;
}
.section--white { background: #fff; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}
.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 680px;
}

.category-grid, .trust-grid, .brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.home-brand-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.info-card, .category-card, .brand-card, .product-card, .panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.category-card, .brand-card, .info-card {
  padding: 18px;
}
.category-card strong, .brand-card strong, .info-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}
.category-card span, .brand-card span, .info-card span {
  color: var(--muted);
  font-size: 13px;
}
.brand-card img {
  height: 42px;
  object-fit: contain;
  margin-bottom: 12px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.catalog-layout.is-loading {
  cursor: progress;
}
.catalog-layout.is-loading .catalog-results,
.catalog-layout.is-loading .filters {
  opacity: .55;
  pointer-events: none;
}
.filters {
  position: sticky;
  top: 112px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.filters .filter-box:first-child {
  max-width: none;
}
.filters .filter-box:first-child > div[style] {
  display: block;
}
.filter-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}
.filter-box h3 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.filters .filter-box:not(:first-child) {
  max-height: 420px;
  overflow-y: auto;
}
.filters .filter-box:not(:first-child) h3 {
  position: sticky;
  top: -14px;
  z-index: 1;
  background: #fff;
  padding: 0 0 10px;
}
.filter-box input, .filter-box select, .filter-box textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 11px;
}
.mobile-filter-controls {
  display: none;
  gap: 10px;
  margin-top: 10px;
}
.filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #344054;
  font-size: 13px;
}
.filter-link.active, .filter-link:hover {
  background: #fff5e2;
  color: var(--brand-dark);
}

.toolbar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}
.toolbar strong { color: var(--ink); }
.toolbar span { color: var(--muted); font-size: 13px; }

.catalog-price-note {
  margin: -8px 0 12px;
  padding: 11px 14px;
  border: 1px solid #f0d099;
  border-radius: var(--radius);
  background: #fff8ea;
  color: #5f3b05;
  font-size: 13px;
  line-height: 1.45;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.product-card__image {
  height: 286px;
  background: #f3f5f8;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}
.product-card__body {
  padding: 14px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.product-card__meta {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}
.product-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.price {
  margin-top: 10px;
  color: var(--danger);
  font-weight: 800;
}
.price-note {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}
.product-card__actions .btn { min-height: 36px; font-size: 12px; padding: 8px; }

.featured-carousel {
  position: relative;
  padding: 0 44px 48px;
}
.featured-carousel__viewport {
  overflow: hidden;
}
.featured-carousel__track {
  display: flex;
  gap: 14px;
  transition: transform .45s ease;
  will-change: transform;
}
.featured-carousel__item {
  flex: 0 0 calc((100% - 28px) / 3);
}
.featured-carousel__nav {
  position: absolute;
  top: 43%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(23,32,47,.08);
}
.featured-carousel__nav--prev { left: 0; }
.featured-carousel__nav--next { right: 0; }
.featured-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.featured-carousel__dots button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.featured-carousel__dots button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d5dbe5;
  transition: width .18s ease, background .18s ease;
}
.featured-carousel__dots button.active {
  width: 44px;
  background: transparent;
}
.featured-carousel__dots button.active::before {
  width: 24px;
  background: var(--brand);
}
.featured-carousel__dots button:focus-visible {
  outline: 2px solid var(--brand-dark);
  outline-offset: -6px;
  border-radius: 999px;
}

.product-detail {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 28px;
  align-items: start;
}
.product-media {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.product-media__frame {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #f3f5f8;
  border-radius: var(--radius);
}
.product-media__frame.product-zoom {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  cursor: zoom-in;
  overflow: hidden;
}
.product-media__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}
.product-zoom img {
  transition: transform .18s ease;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
}
.product-zoom.is-zooming img {
  transform: scale(1.9);
}
.product-zoom__icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(17, 24, 39, .78);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  pointer-events: none;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, .86);
}
.image-lightbox.is-open { display: flex; }
.image-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px;
}
.image-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.product-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.product-copy h1 {
  margin: 8px 0 10px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.12;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff5e2;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}
.variant-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}
.variant-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
}
.variant-row strong:last-child { color: var(--danger); }
.variant-table-wrap {
  overflow-x: auto;
  margin: 12px 0 18px;
}
.variant-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.variant-table th,
.variant-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.variant-table th {
  background: #f9fafb;
  font-size: 13px;
}
.variant-table tr:last-child td { border-bottom: 0; }
.variant-table td:last-child strong { color: var(--danger); }
.product-action-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}
.buy-note {
  display: grid;
  gap: 4px;
  background: #fff8ea;
  border: 1px solid #f0d099;
  border-radius: var(--radius);
  padding: 14px;
  margin-top: 18px;
}
.market-price-note {
  background: #fff8ea;
  border: 1px solid #f0d099;
  border-radius: var(--radius);
  color: #5f3b05;
  padding: 12px 14px;
  margin: 10px 0 14px;
  font-size: 14px;
}
.buy-note span {
  color: var(--muted);
  font-size: 13px;
}
.product-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  grid-template-columns: repeat(3, 1fr);
}
.product-mobile-bar a {
  min-height: 50px;
  display: grid;
  place-items: center;
  font-weight: 800;
  min-width: 0;
  padding: 0 4px;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}
.product-mobile-bar a:first-child { background: var(--success); color: #fff; }
.product-mobile-bar a:nth-child(2) { background: #1769aa; color: #fff; }
.product-mobile-bar a:last-child { background: var(--brand); color: #171717; }

.breadcrumb {
  padding: 14px 0;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumb a { color: var(--accent); }

.content-page {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
}
.prose {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.prose h1 { margin-top: 0; font-size: clamp(28px, 4vw, 42px); }
.prose h2 { margin-top: 28px; }
.prose p, .prose li { color: #475467; }
.news-content p { margin: 0 0 14px; }
.news-content ul { margin: 0 0 16px 20px; padding: 0; }
.news-inline-image { margin: 18px 0; }
.news-inline-image img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}
.side-panel {
  display: grid;
  gap: 12px;
}

.footer {
  background: #101827;
  color: rgba(255,255,255,.72);
  padding: 42px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
}
.footer h3, .footer h4 { color: #fff; margin-top: 0; }
.footer a { display: block; padding: 4px 0; color: rgba(255,255,255,.72); }
.footer-brand img {
  width: 160px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-brand p, .footer-contact p { margin-top: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 12px;
}
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  grid-template-columns: repeat(3, 1fr);
}
.mobile-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  font-weight: 800;
  min-width: 0;
  padding: 0 4px;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}
.mobile-cta a:first-child { background: var(--success); color: #fff; }
.mobile-cta a:nth-child(2) { background: #1769aa; color: #fff; }
.mobile-cta a:last-child { background: var(--brand); color: #171717; }

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 76px;
  z-index: 70;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23,32,47,.12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(23,32,47,.14);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--brand);
  color: #171717;
}

.empty-state {
  background: #fff;
  border: 1px dashed #cfd5df;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

@media (max-width: 980px) {
  .hero__inner, .product-detail, .content-page, .catalog-layout {
    grid-template-columns: 1fr;
  }
  .filters { grid-template-columns: 1fr; }
  .category-grid, .trust-grid, .brand-grid, .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .header-cta { display: none; }
  .product-card__image { height: 250px; }
  .featured-carousel__item { flex-basis: calc((100% - 14px) / 2); }
}
@media (max-width: 640px) {
  body { padding-bottom: 48px; }
  .site-top__inner, .site-header__inner, .site-nav__inner, .container, .hero__inner {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }
  .site-top { display: none; }
  .site-top__inner { justify-content: center; text-align: center; }
  .site-top__inner span:last-child { display: none; }
  .site-header__inner { min-height: auto; padding: 12px 0; flex-wrap: wrap; }
  .brand-logo { width: 130px; height: 46px; }
  .site-search {
    flex: 0 0 calc(100vw - 32px);
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }
  .site-search input { padding: 11px 12px; }
  .site-search button { display: none; }
  .site-nav { overflow: hidden; }
  .site-nav__inner {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav__inner::-webkit-scrollbar { display: none; }
  .site-nav__spacer { display: none; }
  .site-nav a { padding: 11px 10px; font-size: 12px; }
  .hero__inner { min-height: auto; padding: 38px 0; gap: 24px; }
  .hero h1 { font-size: 30px; line-height: 1.14; }
  .hero p { font-size: 14px; max-width: 38ch; }
  .hero-panel {
    padding: 14px;
  }
  .hero-panel__title {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .hero-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .metric {
    min-height: 82px;
    padding: 14px 12px;
    min-width: 0;
  }
  .metric strong {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .metric span {
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .trust-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .category-grid, .brand-grid, .product-grid {
    grid-template-columns: repeat(2, minmax(0, calc((100% - 10px) / 2)));
    gap: 10px;
  }
  .brand-grid {
    display: grid !important;
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    overflow: visible;
    margin-right: 0;
    padding: 0;
    gap: 7px;
  }
  .brand-grid .brand-card {
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: 108px;
    padding: 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .brand-grid .brand-card img {
    height: 30px;
    max-width: 92px;
    margin-bottom: 8px;
  }
  .brand-grid .brand-card strong { font-size: 11px; line-height: 1.25; overflow-wrap: anywhere; }
  .brand-grid .brand-card span { font-size: 10px; }
  .home-brand-grid {
    display: grid !important;
    grid-template-columns: repeat(3, calc((100% - 14px) / 3)) !important;
    gap: 7px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .home-brand-grid .brand-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .home-category-grid {
    display: grid !important;
    grid-template-columns: repeat(3, calc((100% - 14px) / 3)) !important;
    gap: 7px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .home-category-grid .category-card {
    min-height: 104px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home-category-grid .category-card strong {
    font-size: 11px;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }
  .home-category-grid .category-card span {
    font-size: 10px;
  }
  .section { padding: 38px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .section-head p { max-width: 36ch; overflow-wrap: anywhere; }
  .toolbar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
  }
  .toolbar .btn {
    width: 100%;
    text-align: center;
  }
  .catalog-layout > div,
  .toolbar > *,
  .product-grid > *,
  .filter-box,
  .product-card__body,
  .product-card__actions,
  .btn {
    min-width: 0;
  }
  .toolbar .btn { min-height: 36px; padding: 8px 10px; font-size: 12px; }
  .catalog-price-note {
    margin: -4px 0 10px;
    padding: 10px 12px;
    font-size: 11px;
    overflow-wrap: anywhere;
  }
  .filters {
    position: static;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, calc((100% - 10px) / 2)));
  }
  .filters .filter-box:first-child {
    max-width: none;
    grid-column: 1 / -1;
  }
  .filter-box { padding: 12px; }
  .filter-box h3 { font-size: 12px; }
  .mobile-filter-controls { display: none; }
  .filters .filter-box:not(:first-child) {
    display: block;
    max-height: 196px;
    overflow-y: auto;
  }
  .filter-link { padding: 8px 7px; font-size: 11px; gap: 6px; }
  .product-card__body { padding: 10px; }
  .product-card__image { height: 158px; }
  .product-card__image img { padding: 8px; }
  .featured-carousel { padding: 0 0 32px; }
  .featured-carousel__track { gap: 10px; }
  .featured-carousel__item { flex-basis: calc((100% - 10px) / 2); }
  .featured-carousel__nav {
    top: 76px;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
  .featured-carousel__nav--prev { left: 8px; }
  .featured-carousel__nav--next { right: 8px; }
  .product-card__meta { font-size: 10px; }
  .product-card__meta, .price { overflow-wrap: anywhere; }
  .product-card h3 { font-size: 12px; }
  .price { font-size: 13px; }
  .price-note { font-size: 10px; }
  .product-card__actions .btn { min-height: 32px; font-size: 11px; white-space: normal; }
  .product-copy { padding: 16px; }
  .product-copy h1,
  .product-copy p,
  .market-price-note,
  .footer-brand p,
  .footer-contact p {
    overflow-wrap: anywhere;
  }
  .product-media { padding: 12px; }
  .product-card__actions { grid-template-columns: 1fr; }
  .product-action-panel .btn { width: 100%; }
  .variant-table th, .variant-table td { padding: 10px; font-size: 13px; }
  .footer {
    padding: 18px 0 58px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }
  .footer-brand, .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-brand {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
  }
  .footer-brand img {
    width: 54px;
    max-height: 44px;
    margin: 0;
  }
  .footer-brand p {
    margin: 0;
    font-size: 11px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .footer h4 {
    margin: 0 0 5px;
    font-size: 13px;
  }
  .footer a {
    padding: 2px 0;
    font-size: 12px;
    line-height: 1.35;
  }
  .footer-contact {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 9px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 12px;
  }
  .footer-contact h4,
  .footer-contact p {
    grid-column: 1 / -1;
  }
  .footer-contact p {
    margin: 0 0 4px;
    font-size: 12px;
    line-height: 1.35;
  }
  .footer-bottom {
    margin-top: 10px;
    padding-top: 8px;
    font-size: 10px;
  }
  .product-mobile-bar { display: grid; }
  .mobile-cta { display: grid; }
  .back-to-top {
    right: 12px;
    bottom: 62px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* UI refresh 2026-07 */
:root {
  --paper-warm: #fffaf2;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --ink-strong: #101828;
  --brand-soft: #fff1d6;
  --accent-soft: #e8f3fb;
  --shadow-soft: 0 12px 30px rgba(16, 24, 40, .08);
  --shadow-lift: 0 18px 48px rgba(16, 24, 40, .14);
}

body {
  background:
    linear-gradient(180deg, #fffaf2 0, #f7f9fc 420px, #f5f7fb 100%);
}

.site-top {
  background: #0b1220;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-header {
  box-shadow: 0 1px 0 rgba(16, 24, 40, .04);
}

.site-header__inner {
  min-height: 82px;
}

.brand-logo {
  width: 172px;
  height: 58px;
}

.site-search {
  min-height: 46px;
  border-color: #d8dde7;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .05);
}

.site-search:focus-within {
  border-color: rgba(216, 148, 34, .72);
  box-shadow: 0 0 0 4px rgba(216, 148, 34, .13);
}

.site-search button {
  min-width: 74px;
  background: linear-gradient(135deg, #f1b348, var(--brand));
  color: #18140b;
}

.header-cta .btn,
.hotline-pill {
  box-shadow: 0 8px 18px rgba(16, 24, 40, .05);
}

.hotline-pill {
  background: #fff;
}

.site-nav {
  border-bottom: 0;
  box-shadow: inset 0 -1px 0 var(--line);
}

.site-nav a {
  position: relative;
  padding: 15px 14px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: transparent;
}

.site-nav a.active::after,
.site-nav a:hover::after {
  background: var(--brand);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 18, 31, .95) 0%, rgba(24, 47, 72, .93) 54%, rgba(13, 23, 35, .96) 100%),
    url('/img/cotran.webp') right 8% center / min(560px, 46vw) auto no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -32% 42%;
  z-index: -1;
  height: 78%;
  background: radial-gradient(circle, rgba(216,148,34,.32), transparent 62%);
  filter: blur(8px);
}

.hero__inner {
  min-height: 560px;
  gap: 54px;
}

.hero h1 {
  max-width: 720px;
  text-wrap: balance;
}

.hero p {
  color: rgba(255,255,255,.82);
}

.btn {
  gap: 8px;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(16, 24, 40, .12);
}

.btn--brand {
  background: linear-gradient(135deg, #ffc667, var(--brand));
  color: #18140b;
}

.btn--ghost {
  background: #fff;
}

.btn--outline:hover {
  border-color: rgba(255,255,255,.56);
  background: rgba(255,255,255,.08);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
}

.hero-panel::before {
  content: "";
  display: block;
  height: 230px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,250,242,.78)),
    url('/img/logo-vietbac-decor.webp') center 22px / 190px auto no-repeat,
    url('/img/vtdura.webp') center bottom 16px / min(360px, 86%) auto no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.hero-panel__title {
  margin: 16px 18px 10px;
}

.hero-panel__grid {
  padding: 0 18px 18px;
}

.metric {
  background: rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

.section {
  padding: 64px 0;
}

.section--white {
  background: rgba(255,255,255,.78);
}

.section-head {
  align-items: center;
  margin-bottom: 26px;
}

.section-head h1,
.section-head h2 {
  color: var(--ink-strong);
  text-wrap: balance;
}

.section-head p {
  color: #5d6678;
}

.brand-card,
.category-card,
.info-card,
.product-card,
.panel,
.filter-box,
.toolbar,
.product-media,
.product-copy,
.prose {
  border-color: #e2e7f0;
  box-shadow: 0 1px 0 rgba(16, 24, 40, .03);
}

.brand-card,
.category-card,
.info-card {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.brand-card:hover,
.category-card:hover,
.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 148, 34, .48);
  box-shadow: var(--shadow-soft);
}

.brand-card img {
  width: 112px;
  height: 52px;
  padding: 8px 10px;
  margin-bottom: 14px;
  border: 1px solid #edf0f5;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.catalog-layout {
  gap: 26px;
}

.filters {
  top: 130px;
}

.filter-box {
  padding: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}

.filter-box input,
.filter-box select,
.filter-box textarea {
  min-height: 42px;
  background: #fbfcfe;
}

.filter-box input:focus,
.filter-box select:focus,
.filter-box textarea:focus {
  outline: 0;
  border-color: rgba(216, 148, 34, .72);
  box-shadow: 0 0 0 3px rgba(216, 148, 34, .12);
}

.filter-link {
  min-height: 38px;
}

.filter-link.active {
  box-shadow: inset 3px 0 0 var(--brand);
}

.toolbar {
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}

.catalog-price-note,
.market-price-note,
.buy-note {
  border-color: #f3cf8d;
  background: linear-gradient(135deg, #fff9ed, #fff4dc);
}

.product-grid {
  gap: 18px;
}

.product-card {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(16, 24, 40, .06);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.product-card__image {
  position: relative;
  height: auto;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, #f9fafc, #fff4df);
}

.product-card__image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 8px;
  pointer-events: none;
}

.product-card__image img {
  padding: 18px;
  transition: transform .22s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

.product-card__body {
  padding: 16px;
}

.product-card__meta {
  min-height: 18px;
  color: #697386;
}

.product-card h3 {
  min-height: 42px;
  color: var(--ink-strong);
}

.price {
  font-size: 16px;
}

.product-card__actions .btn {
  min-height: 38px;
}

.featured-carousel {
  padding-inline: 48px;
}

.featured-carousel__nav {
  border-color: #dbe1ea;
  box-shadow: 0 10px 24px rgba(16, 24, 40, .12);
}

.product-detail {
  grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
  gap: 32px;
}

.product-media,
.product-copy {
  box-shadow: var(--shadow-soft);
}

.product-media {
  padding: 20px;
  background: linear-gradient(180deg, #fff, #fff8ea);
}

.product-media__frame {
  background: linear-gradient(135deg, #f8fafc, #fff4df);
}

.product-copy h1 {
  text-wrap: balance;
}

.product-action-panel .btn {
  min-height: 44px;
}

.variant-table {
  box-shadow: 0 8px 22px rgba(16, 24, 40, .05);
}

.variant-table th {
  background: #f4f7fb;
  color: #344054;
}

.footer {
  background:
    linear-gradient(135deg, rgba(10, 18, 31, .98), rgba(19, 36, 55, .98)),
    url('/img/cotran.webp') right bottom / 360px auto no-repeat;
}

.back-to-top {
  box-shadow: 0 10px 24px rgba(16, 24, 40, .18);
}

@media (max-width: 1180px) {
  .header-cta {
    gap: 8px;
  }

  .header-cta .btn {
    padding-inline: 12px;
  }

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

@media (max-width: 960px) {
  .site-header__inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .brand-logo {
    width: 150px;
    height: 52px;
  }

  .site-search {
    order: 3;
    flex-basis: 100%;
  }

  .header-cta {
    margin-left: auto;
  }

  .header-cta .hotline-pill,
  .header-cta .btn--ghost {
    display: none;
  }

  .hero {
    background:
      linear-gradient(135deg, rgba(10, 18, 31, .96), rgba(24, 47, 72, .94)),
      url('/img/cotran.webp') right -80px bottom 18px / 420px auto no-repeat;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 0;
  }

  .hero-panel::before {
    height: 190px;
  }

  .catalog-layout,
  .product-detail,
  .content-page {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .filters .filter-box:not(:first-child) {
    display: none;
  }

  .mobile-filter-controls {
    display: grid;
  }
}

@media (max-width: 760px) {
  .site-top__inner {
    min-height: 38px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 6px 0;
  }

  .section {
    padding: 42px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head .btn,
  .actions .btn {
    width: 100%;
  }

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

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

  .featured-carousel {
    padding-inline: 0;
  }

  .featured-carousel__item {
    flex-basis: calc((100% - 14px) / 2);
  }

  .featured-carousel__nav {
    display: none;
  }

  .product-card__body {
    padding: 12px;
  }

  .product-card h3 {
    min-height: 58px;
    font-size: 14px;
  }

  .product-card__actions {
    grid-template-columns: 1fr;
  }

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

  .toolbar .btn {
    width: 100%;
  }

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

@media (max-width: 520px) {
  .site-top__inner,
  .site-header__inner,
  .site-nav__inner,
  .container,
  .hero__inner {
    width: min(100% - 22px, 1180px);
  }

  .header-cta .btn--brand {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-panel__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .metric {
    min-height: 84px;
    padding: 14px 12px;
  }

  .metric strong {
    font-size: 25px;
  }

  .home-brand-grid,
  .home-category-grid,
  .category-grid,
  .trust-grid,
  .brand-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .featured-carousel__item {
    flex-basis: 100%;
  }

  .product-card h3 {
    min-height: auto;
  }

  .product-copy {
    padding: 18px;
  }

  .product-action-panel {
    display: grid;
  }

  .product-action-panel .btn {
    width: 100%;
  }

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

/* Showroom-led hero based on the supplied UI direction. */
.hero {
  color: var(--ink-strong);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 36%, rgba(255,255,255,.5) 58%, rgba(255,255,255,.05) 82%),
    url('/img/showroom-hero-2026.webp') center / cover no-repeat;
  border-bottom: 1px solid #eadfce;
}

.hero::before {
  display: none;
}

.hero__inner {
  position: relative;
  grid-template-columns: minmax(0, 640px) 1fr;
  min-height: 540px;
  padding: 66px 0;
}

.hero h1 {
  color: #121722;
  font-size: clamp(40px, 4.6vw, 62px);
}

.hero p {
  max-width: 610px;
  color: #3e4654;
  font-weight: 500;
}

.hero .btn--outline {
  border-color: #adb5c2;
  background: rgba(255,255,255,.72);
  color: var(--ink-strong);
  backdrop-filter: blur(10px);
}

.hero .btn--outline:hover {
  border-color: var(--brand);
  background: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d3440;
  font-size: 13px;
  font-weight: 800;
}

.hero-trust span::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 3px solid var(--brand);
  border-radius: 3px;
  transform: rotate(45deg);
}

.hero-panel {
  align-self: end;
  justify-self: end;
  width: min(410px, 100%);
  padding: 16px;
  background: rgba(13, 25, 40, .88);
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 18px 48px rgba(16, 24, 40, .24);
}

.hero-panel::before {
  display: none;
}

.hero-panel__title {
  margin: 0 0 10px;
}

.hero-panel__grid {
  padding: 0;
}

.metric {
  min-height: 86px;
  padding: 14px;
}

@media (max-width: 960px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.83) 62%, rgba(255,255,255,.38)),
      url('/img/showroom-hero-2026.webp') center / cover no-repeat;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

  .hero-panel {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 58%, rgba(255,255,255,.72) 100%),
      url('/img/showroom-hero-2026.webp') 62% center / cover no-repeat;
  }

  .hero__inner {
    padding: 38px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero__actions .btn {
    flex: 1 1 150px;
  }

  .hero-trust {
    display: grid;
    gap: 9px;
  }
}

/* Mobile UX pass 2026-08 */
@media (max-width: 640px) {
  body {
    padding-bottom: calc(54px + env(safe-area-inset-bottom));
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 0;
  }

  .brand-mark {
    display: grid;
    place-items: center;
  }

  .brand-logo {
    width: 74px;
    height: 46px;
  }

  .site-search {
    order: initial;
    width: 100%;
    max-width: none;
    min-width: 0;
    flex-basis: auto;
  }

  .site-search input {
    min-width: 0;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
    text-overflow: ellipsis;
  }

  .site-nav__inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .site-nav__spacer,
  .site-nav__spacer ~ a {
    display: none;
  }

  .site-nav a {
    display: grid;
    min-width: 0;
    min-height: 44px;
    place-items: center;
    padding: 8px 3px;
    font-size: 11px;
    text-align: center;
  }

  .site-nav__inner > a:nth-of-type(n + 6) {
    display: none;
  }

  .site-nav a::after {
    left: 8px;
    right: 8px;
  }

  .hero__inner {
    gap: 18px;
    padding: 30px 0 34px;
  }

  .hero h1 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.08;
  }

  .hero p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 44px;
    padding: 9px 8px;
    font-size: 13px;
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 16px;
  }

  .hero-trust span {
    gap: 6px;
    font-size: 11px;
  }

  .hero-trust span::before {
    width: 7px;
    height: 7px;
    border-width: 2px;
  }

  .hero-panel {
    width: 100%;
    padding: 11px;
  }

  .hero-panel__title {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .hero-panel__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .metric {
    min-height: 76px;
    padding: 10px 5px;
    text-align: center;
  }

  .metric strong {
    margin-bottom: 6px;
    font-size: 22px;
  }

  .metric span {
    font-size: 9px;
    line-height: 1.25;
  }

  .section {
    padding: 34px 0;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 18px;
  }

  .section-head h1,
  .section-head h2 {
    font-size: 24px;
  }

  .section-head p {
    margin-top: 6px;
    font-size: 14px;
  }

  .section-head .btn {
    min-height: 42px;
  }

  .home-brand-grid .brand-card,
  .home-category-grid .category-card {
    min-height: 94px;
  }

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

  .catalog-results .product-card__image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .catalog-results .product-card__body {
    padding: 10px;
  }

  .catalog-results .product-card h3 {
    display: -webkit-box;
    min-height: 48px;
    margin-bottom: 8px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .catalog-results .product-card__meta {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .catalog-results .price {
    min-height: 34px;
    font-size: 12px;
    line-height: 1.35;
  }

  .catalog-results .price-note {
    display: none;
  }

  .catalog-results .product-card__actions {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 10px;
  }

  .catalog-results .product-card__actions .btn {
    min-height: 38px;
    padding: 6px 4px;
    font-size: 10px;
  }

  .catalog-pagination {
    gap: 4px;
  }

  .breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .product-detail {
    gap: 14px;
  }

  .product-copy h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .product-action-panel .btn:not(:first-child) {
    display: none;
  }

  .content-page {
    gap: 12px;
  }

  .prose {
    padding: 18px;
  }

  .prose h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  .prose form.filter-box {
    padding: 14px;
  }

  .prose form.filter-box .btn {
    width: 100%;
    min-height: 46px;
  }

  .prose form.filter-box .btn--ghost {
    display: none;
  }

  .side-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .side-panel .info-card {
    min-height: 100px;
    padding: 12px;
  }

  .side-panel .info-card strong {
    font-size: 13px;
  }

  .side-panel .info-card span,
  .side-panel .info-card a {
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .product-mobile-bar,
  .mobile-cta {
    min-height: 54px;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -8px 24px rgba(16, 24, 40, .14);
  }

  .product-mobile-bar a,
  .mobile-cta a {
    min-height: 54px;
    font-size: 13px;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
  }

  /* Keep the desktop information hierarchy, compressed for touch screens. */
  .site-nav__inner {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav__inner > a,
  .site-nav__inner > a:nth-of-type(n + 6),
  .site-nav__spacer ~ a {
    display: grid;
    flex: 0 0 20%;
  }

  .catalog-results .price-note {
    display: block;
    min-height: 28px;
    line-height: 1.35;
  }

  .product-action-panel .btn:not(:first-child),
  .prose form.filter-box .btn--ghost {
    display: inline-flex;
  }
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.catalog-pagination a,
.catalog-pagination span {
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.catalog-pagination a:hover,
.catalog-pagination a:focus-visible,
.catalog-pagination .current {
  border-color: var(--brand);
  background: var(--brand);
  color: #171717;
}

@media (max-width: 360px) {
  .site-header__inner {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .brand-logo {
    width: 64px;
  }

  .site-nav a {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .metric span {
    font-size: 8px;
  }
}

/* Services, local SEO pages and the branded showroom hero. */
.brand-mark__text,
.brand-mark__text span,
.eyebrow,
.hero-panel__title,
.product-card__meta {
  letter-spacing: 0;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding-bottom: 7px;
  border-bottom: 3px solid var(--brand);
  color: #87570d;
  font-size: 12px;
  font-weight: 800;
}

.hero-brand-watermark {
  align-self: center;
  justify-self: end;
  width: min(410px, 100%);
  color: rgba(18, 23, 34, .76);
  text-align: right;
  text-shadow: 0 2px 14px rgba(255,255,255,.72);
}

.hero-brand-watermark strong,
.hero-brand-watermark span {
  display: block;
  line-height: .95;
  letter-spacing: 0;
}

.hero-brand-watermark strong {
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 800;
}

.hero-brand-watermark span {
  margin-top: 10px;
  color: #9d6410;
  font-size: clamp(23px, 2.7vw, 36px);
  font-weight: 700;
}

.service-overview-section {
  background: #fff;
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.service-overview__media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  background: #e8eaed;
}

.service-overview__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(12, 20, 31, .8));
}

.service-overview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overview__media > span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.service-overview__links {
  display: grid;
  align-content: stretch;
  border-top: 1px solid var(--line);
}

.service-overview__links > a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}

.service-overview__links > a:hover strong,
.service-overview__links > a:focus-visible strong {
  color: var(--brand-dark);
}

.service-overview__number {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.service-overview__links strong,
.service-overview__links small {
  display: block;
}

.service-overview__links strong {
  margin-bottom: 4px;
  color: #151b26;
  font-size: 16px;
}

.service-overview__links small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.service-overview__links b {
  color: var(--brand-dark);
  font-size: 20px;
}

.service-index-hero,
.service-detail-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.service-index-hero {
  background-image: url('/img/materials-services-2026.webp');
}

.service-detail-hero {
  background-image: url('/img/materials-services-2026.webp');
  background-position: var(--service-focus) center;
}

.service-index-hero::before,
.service-detail-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 20, 31, .94) 0%, rgba(12, 20, 31, .78) 48%, rgba(12, 20, 31, .25) 100%);
}

.service-index-hero__inner,
.service-detail-hero__inner {
  display: flex;
  min-height: 430px;
  max-width: 720px;
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  padding: 72px 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-index-hero h1,
.service-detail-hero h1 {
  max-width: 780px;
  margin: 12px 0 14px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: 0;
}

.service-index-hero p,
.service-detail-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 16px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 32, 47, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(23, 32, 47, .11);
}

.service-card__image {
  display: block;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
  background: #eceff2;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.035);
}

.service-card__body {
  display: block;
  padding: 17px;
}

.service-card__body > strong,
.service-card__body > small {
  display: block;
}

.service-card__body > strong {
  margin-bottom: 7px;
  color: #151b26;
  font-size: 17px;
}

.service-card__body > small {
  min-height: 54px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.service-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.supply-note-band,
.service-cta-band .container {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr) auto;
  gap: 28px;
  align-items: center;
}

.supply-note-band h2,
.service-cta-band h2,
.service-faq-layout h2,
.service-facts h2 {
  margin: 5px 0 0;
  line-height: 1.2;
}

.supply-note-band p {
  margin: 0;
  color: var(--muted);
}

.service-content-intro {
  display: grid;
  gap: 38px;
}

.service-lead {
  max-width: 900px;
  margin: 0;
  color: #273346;
  font-size: clamp(19px, 2.2vw, 27px);
  font-weight: 600;
  line-height: 1.55;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-facts section {
  padding: 30px 34px 30px 0;
}

.service-facts section + section {
  padding-right: 0;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.service-facts ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-facts li {
  position: relative;
  padding-left: 20px;
  color: #475467;
}

.service-facts li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--brand);
  border-radius: 2px;
  transform: rotate(45deg);
}

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

.service-topic-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-topic-list h3 {
  margin: 0 0 9px;
  color: #192333;
  font-size: 16px;
  line-height: 1.4;
}

.service-topic-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 56px;
}

.service-faq-layout > div:first-child > p {
  color: var(--muted);
}

.service-faq {
  border-top: 1px solid var(--line);
}

.service-faq details {
  border-bottom: 1px solid var(--line);
}

.service-faq summary {
  position: relative;
  padding: 18px 42px 18px 0;
  color: #182230;
  font-weight: 800;
  list-style: none;
}

.service-faq summary::-webkit-details-marker {
  display: none;
}

.service-faq summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 4px;
  color: var(--brand-dark);
  font-size: 24px;
}

.service-faq details[open] summary::after {
  content: "−";
}

.service-faq p {
  margin: -4px 0 18px;
  color: var(--muted);
}

.service-cta-band {
  padding: 44px 0;
  color: #fff;
  background: #111b2a;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.service-cta-band .container {
  grid-template-columns: minmax(0, 1fr) auto;
}

.service-cta-band .actions {
  margin: 0;
}

@media (max-width: 960px) {
  .hero-brand-watermark {
    justify-self: start;
    width: auto;
    text-align: left;
  }

  .hero-brand-watermark strong {
    font-size: 46px;
  }

  .hero-brand-watermark span {
    font-size: 22px;
  }

  .service-overview {
    grid-template-columns: .9fr 1.1fr;
    gap: 22px;
  }

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

  .supply-note-band {
    grid-template-columns: 1fr 1fr;
  }

  .supply-note-band .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.91) 72%, rgba(255,255,255,.65) 100%),
      url('/img/showroom-hero-2026.webp') 64% center / cover no-repeat;
  }

  .hero__inner {
    min-height: 560px;
    padding: 26px 0 24px;
    align-content: space-between;
  }

  .hero-kicker {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-brand-watermark {
    align-self: end;
    justify-self: end;
    text-align: right;
  }

  .hero-brand-watermark strong {
    font-size: 35px;
  }

  .hero-brand-watermark span {
    margin-top: 5px;
    font-size: 17px;
  }

  .service-overview {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-overview__media {
    min-height: 0;
    aspect-ratio: 1.45 / 1;
  }

  .service-overview__links > a {
    grid-template-columns: 30px minmax(0, 1fr) 20px;
    gap: 9px;
    min-height: 82px;
  }

  .service-overview__links strong {
    font-size: 14px;
  }

  .service-overview__links small {
    font-size: 11px;
  }

  .service-index-hero__inner,
  .service-detail-hero__inner {
    width: min(100% - 32px, 1180px);
    min-height: 430px;
    margin: 0 auto;
    padding: 44px 0;
  }

  .service-index-hero::before,
  .service-detail-hero::before {
    background: linear-gradient(90deg, rgba(12, 20, 31, .94), rgba(12, 20, 31, .66));
  }

  .service-index-hero h1,
  .service-detail-hero h1 {
    font-size: 34px;
  }

  .service-index-hero p,
  .service-detail-hero p {
    font-size: 14px;
  }

  .service-index-hero .hero__actions,
  .service-detail-hero .hero__actions {
    width: 100%;
  }

  .service-card-grid,
  .service-topic-list,
  .service-facts,
  .service-faq-layout,
  .supply-note-band,
  .service-cta-band .container {
    grid-template-columns: 1fr;
  }

  .service-card__image {
    aspect-ratio: 2 / 1;
  }

  .service-card__body > small {
    min-height: 0;
  }

  .supply-note-band {
    gap: 15px;
  }

  .supply-note-band .btn {
    grid-column: auto;
    width: 100%;
  }

  .service-lead {
    font-size: 18px;
  }

  .service-facts section,
  .service-facts section + section {
    padding: 24px 0;
    border-left: 0;
  }

  .service-facts section + section {
    border-top: 1px solid var(--line);
  }

  .service-topic-list article {
    padding: 16px;
  }

  .service-faq-layout {
    gap: 20px;
  }

  .service-cta-band {
    padding: 34px 0;
  }

  .service-cta-band .actions,
  .service-cta-band .btn {
    width: 100%;
  }
}

/* Capability, contact and catalog refinement 2026-08. */
.filter-box h3 {
  letter-spacing: 0;
}

.catalog-filter-primary {
  display: grid;
  gap: 10px;
}

.catalog-filter-submit {
  width: 100%;
  margin-top: 10px;
}

.about-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background: url('/img/materials-services-2026.webp') center / cover no-repeat;
}

.about-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 31, .96) 0%, rgba(10, 18, 31, .84) 48%, rgba(10, 18, 31, .2) 100%);
}

.about-hero__inner {
  display: flex;
  min-height: 500px;
  padding: 72px 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about-hero h1 {
  margin: 10px 0 4px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1;
  letter-spacing: 0;
}

.about-hero__inner > strong {
  max-width: 660px;
  color: #f5b33d;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.25;
}

.about-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.82);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 70px;
  align-items: start;
}

.about-intro h2,
.about-process h2,
.contact-heading h1,
.contact-form-panel h2,
.contact-details h2 {
  margin: 7px 0 0;
  color: #111827;
  font-size: clamp(29px, 3.5vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

.about-intro__lead {
  margin: 0;
  color: #374151;
  font-size: 18px;
  line-height: 1.75;
}

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

.about-value-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.about-value-grid article > span {
  display: block;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.about-value-grid h3 {
  margin: 26px 0 8px;
  color: #182230;
  font-size: 18px;
}

.about-value-grid p,
.about-audience-grid p,
.about-process p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-audience-grid article {
  min-height: 160px;
  padding: 26px 30px 26px 0;
}

.about-audience-grid article + article {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.about-audience-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #17202f;
  font-size: 18px;
}

.about-process {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}

.about-process__heading > p {
  max-width: 520px;
  margin-top: 16px;
}

.about-process ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about-process li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.about-process li > span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.about-process li strong {
  display: block;
  margin-bottom: 6px;
  color: #182230;
  font-size: 17px;
}

.contact-heading {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-heading__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
  gap: 64px;
  align-items: end;
}

.contact-heading h1 {
  font-size: clamp(38px, 4.2vw, 52px);
}

.contact-heading p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-quick-actions a {
  min-width: 0;
  padding: 16px 14px;
}

.contact-quick-actions a + a {
  border-left: 1px solid var(--line);
}

.contact-quick-actions strong,
.contact-quick-actions span {
  display: block;
}

.contact-quick-actions strong {
  overflow: hidden;
  color: #182230;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-quick-actions span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 36px;
  align-items: start;
}

.contact-form-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-form-panel h2,
.contact-details h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.contact-form-panel__head > p,
.contact-details > p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  margin-top: 24px;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

.contact-form label,
.contact-form label > span {
  display: block;
}

.contact-form label > span {
  margin-bottom: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  background: #fbfcfd;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(216, 148, 34, .14);
  border-color: var(--brand);
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.contact-form__actions > span {
  color: var(--muted);
  font-size: 11px;
}

.form-alert {
  display: grid;
  gap: 3px;
  margin-top: 20px;
  padding: 13px 15px;
  border: 1px solid;
  border-radius: 6px;
}

.form-alert span {
  font-size: 13px;
}

.form-alert--success {
  border-color: #a6dfc5;
  background: #f0fff7;
  color: #146c49;
}

.form-alert--error {
  border-color: #f2b8b5;
  background: #fff5f5;
  color: #9d2924;
}

.contact-details {
  padding: 10px 0;
}

.contact-detail-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-detail-list > * {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail-list span {
  color: var(--muted);
  font-size: 11px;
}

.contact-detail-list strong {
  color: #1f2937;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.contact-supply-note {
  margin-top: 24px;
  padding: 18px;
  border-left: 3px solid var(--brand);
  background: #fff7e8;
}

.contact-supply-note p {
  margin: 7px 0 11px;
  color: #5e6570;
  font-size: 13px;
}

.contact-supply-note a {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.service-price-updated {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.service-price-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-price-table table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.service-price-table th,
.service-price-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.service-price-table th {
  color: #4b5563;
  background: #f7f8fa;
  font-size: 11px;
  text-transform: uppercase;
}

.service-price-table tr:last-child td {
  border-bottom: 0;
}

.service-price-value {
  color: var(--brand-dark);
  font-weight: 800;
  white-space: nowrap;
}

.service-price-disclaimer {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(16,24,40,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.project-card__image {
  display: block;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
  background: #edf0f3;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card__body,
.project-card__body > * {
  display: block;
}

.project-card__body {
  padding: 17px;
}

.project-card__body small {
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card__body strong {
  margin: 6px 0 7px;
  color: #182230;
  font-size: 17px;
}

.project-card__body > span {
  color: var(--muted);
  font-size: 12px;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: 38px;
  align-items: start;
}

.project-detail__media {
  overflow: hidden;
  border-radius: 8px;
  background: #edf0f3;
}

.project-detail__media img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.project-detail__copy {
  padding-top: 12px;
}

.project-detail__copy h1 {
  margin: 8px 0 18px;
  color: #111827;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.14;
}

.project-detail__copy > p {
  color: #4b5563;
  line-height: 1.75;
}

.project-detail__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.project-detail__meta strong {
  color: #1f2937;
}

@media (max-width: 960px) {
  .about-intro,
  .about-process,
  .contact-heading__inner,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-heading__inner {
    align-items: start;
  }

  .contact-quick-actions {
    max-width: 620px;
  }

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

  .project-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .filters .filter-box:first-child {
    padding: 10px;
  }

  .filters .filter-box:first-child h3 {
    display: none;
  }

  .catalog-filter-primary {
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 7px;
  }

  .catalog-filter-primary input,
  .catalog-filter-primary select,
  .mobile-filter-controls select {
    min-width: 0;
    min-height: 44px;
    padding: 9px 10px;
    font-size: 12px;
  }

  .mobile-filter-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 7px;
  }

  .catalog-filter-submit {
    min-height: 44px;
    margin-top: 7px;
  }

  .about-hero::before {
    background: linear-gradient(90deg, rgba(10, 18, 31, .96), rgba(10, 18, 31, .7));
  }

  .about-hero__inner {
    min-height: 430px;
    padding: 44px 0;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .about-hero__inner > strong {
    font-size: 20px;
  }

  .about-hero p {
    font-size: 13px;
  }

  .about-hero .hero__actions {
    width: 100%;
  }

  .about-intro {
    gap: 20px;
  }

  .about-intro h2,
  .about-process h2 {
    font-size: 27px;
  }

  .about-intro__lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-value-grid,
  .about-audience-grid {
    grid-template-columns: 1fr;
  }

  .about-value-grid {
    gap: 10px;
    margin-top: 26px;
  }

  .about-value-grid article {
    min-height: 0;
    padding: 17px;
  }

  .about-value-grid h3 {
    margin: 12px 0 5px;
    font-size: 16px;
  }

  .about-audience-grid article,
  .about-audience-grid article + article {
    min-height: 0;
    padding: 19px 0;
    border-left: 0;
  }

  .about-audience-grid article + article {
    border-top: 1px solid var(--line);
  }

  .about-process {
    gap: 20px;
  }

  .about-process li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 17px 0;
  }

  .contact-heading {
    padding: 30px 0;
  }

  .contact-heading__inner {
    gap: 22px;
  }

  .contact-heading h1 {
    font-size: 34px;
  }

  .contact-heading p {
    font-size: 13px;
  }

  .contact-quick-actions {
    width: 100%;
  }

  .contact-quick-actions a {
    min-height: 64px;
    padding: 12px 8px;
  }

  .contact-quick-actions strong {
    font-size: 12px;
  }

  .contact-quick-actions span {
    font-size: 9px;
    line-height: 1.3;
  }

  .contact-section {
    padding-top: 26px;
  }

  .contact-layout {
    gap: 26px;
  }

  .contact-form-panel {
    padding: 17px;
  }

  .contact-form-panel h2,
  .contact-details h2 {
    font-size: 25px;
  }

  .contact-form {
    margin-top: 18px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .contact-form__wide {
    grid-column: auto;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form__actions {
    display: grid;
    gap: 8px;
  }

  .contact-form__actions .btn {
    width: 100%;
  }

  .contact-form__actions > span {
    text-align: center;
  }

  .contact-details {
    padding: 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-card__image {
    aspect-ratio: 1.55 / 1;
  }

  .project-detail {
    gap: 20px;
  }

  .project-detail__copy h1 {
    font-size: 29px;
  }

  .project-detail__meta {
    grid-template-columns: 1fr;
  }

  .service-price-table table {
    min-width: 0;
  }

  .service-price-table thead {
    display: none;
  }

  .service-price-table tbody,
  .service-price-table tr,
  .service-price-table td {
    display: block;
    width: 100%;
  }

  .service-price-table tr {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .service-price-table tr:last-child {
    border-bottom: 0;
  }

  .service-price-table td {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 8px;
    padding: 5px 0;
    border: 0;
    font-size: 12px;
    white-space: normal;
  }

  .service-price-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
  }
}
