:root {
  --gold: #a47e1b;
  --ink: #2e294e;
  --wine: #89023e;
  --dark: #211c1d;
  --text: #161616;
  --muted: #666;
  --line: #eeeeee;
  --soft: #f6f5f2;
  --shadow: 0 9px 16px rgba(188, 188, 188, 0.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.65;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1160px, calc(100% - 38px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 999; background: #fff; padding: 10px; }
.skip-link:focus { left: 10px; }
.top-strip { background: var(--dark); color: #fff; font-size: 13px; font-weight: 700; }
.top-strip__inner { min-height: 31px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.top-strip a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.55); }
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.header-grid { min-height: 100px; display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--gold); font-family: "Montserrat", Arial, sans-serif; text-transform: uppercase; }
.brand strong { display: block; font-size: 18px; line-height: 1.05; letter-spacing: 0; }
.brand small { display: block; color: #222; font-size: 10px; font-weight: 700; letter-spacing: 0; margin-top: 4px; }
.brand-mark {
  width: 48px; height: 48px; flex: 0 0 48px; border: 2px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(164,126,27,.2) 1px, transparent 1px) 0 0/8px 8px,
    linear-gradient(rgba(164,126,27,.2) 1px, transparent 1px) 0 0/8px 8px,
    linear-gradient(135deg, #fff, #d8bd69);
}
.brand--footer small { color: #ddd; }
.site-nav { display: flex; justify-content: flex-end; align-items: center; gap: 26px; color: var(--gold); font-family: "Montserrat", Arial, sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; }
.site-nav a, .site-nav button { color: var(--gold); background: none; border: 0; padding: 12px 0; font: inherit; text-transform: inherit; cursor: pointer; }
.site-nav a:hover, .site-nav button:hover { color: var(--dark); }
.nav-group { position: relative; }
.submenu { position: absolute; right: 0; top: calc(100% + 4px); min-width: 250px; background: var(--dark); border: 1px solid #fff; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease; }
.submenu a { display: block; color: #fff; padding: 11px 16px; border-bottom: 1px solid rgba(255,255,255,.16); font-family: "Poppins", "Montserrat", sans-serif; font-size: 13px; }
.nav-group:hover .submenu, .nav-group:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-toggle { display: none; margin-left: auto; border: 1px solid var(--gold); background: #fff; color: var(--gold); padding: 8px 12px; font: 700 13px "Montserrat"; text-transform: uppercase; }
.hero { position: relative; min-height: 577px; display: grid; align-items: center; text-align: center; color: #fff; background: #000 url("/assets/img/hero-warehouse.jpg") bottom center/cover no-repeat; }
.hero--small { min-height: 500px; background-image: var(--hero-image); }
.hero__overlay, .section__overlay { position: absolute; inset: 0; background: #000; opacity: .57; }
.hero__content { position: relative; z-index: 1; padding: 80px 0; }
.eyebrow, .section-kicker { margin: 0 0 14px; font-family: "Lato"; font-size: 20px; font-weight: 700; line-height: 1.45; }
.section-kicker { color: #000; text-align: center; }
.section--dark .section-kicker, .section--image .section-kicker { color: #fff; text-align: left; }
h1, h2, h3 { font-family: "Montserrat", Arial, sans-serif; line-height: 1.2; margin: 0; color: var(--ink); letter-spacing: 0; }
h1 { color: #fff; font-size: 40px; font-weight: 800; text-transform: uppercase; }
h2 { color: var(--gold); font-size: 40px; font-weight: 800; text-transform: uppercase; }
h3 { font-size: 19px; font-weight: 800; }
.hero__deck { max-width: 950px; margin: 20px auto 0; font-size: 21px; line-height: 1.45; }
.hero__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; background: var(--wine); color: #fff; border: 2px solid var(--wine); font: 700 15px "Montserrat"; text-transform: uppercase; }
.button:hover { background: transparent; color: var(--wine); }
.hero .button:hover, .section--dark .button:hover, .section--image .button:hover { color: #fff; border-color: #fff; }
.button--ghost { background: transparent; border-color: #fff; color: #fff; }
.section { padding: 78px 0; background: var(--soft); }
.section--white { background: #fff; }
.section--dark { background: var(--dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.82); }
.section--image { position: relative; color: #fff; background: #000 url("/assets/img/polished-concrete.jpg") center/cover fixed no-repeat; }
.section--image .wrap { position: relative; z-index: 1; }
.center { text-align: center; max-width: 880px; }
.center p { color: var(--text); }
.system-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 34px; }
.system-card { text-align: left; }
.system-card__image { height: 250px; margin-bottom: 18px; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.system-card__image--1 { background-image: linear-gradient(135deg, rgba(20,20,20,.2), rgba(164,126,27,.25)), url("/assets/img/polished-concrete.jpg"); }
.system-card__image--2 { background-image: radial-gradient(circle at 25% 25%, #e8e0d1 0 2px, transparent 3px), radial-gradient(circle at 70% 55%, #727272 0 2px, transparent 3px), linear-gradient(135deg, #b6b0a4, #f8f6f0); background-size: 16px 16px, 19px 19px, cover; }
.system-card__image--3 { background-image: linear-gradient(135deg, #2f3236, #aeb4b9); }
.system-card__image--4 { background-image: radial-gradient(circle, #d6c7a6 0 2px, transparent 3px), linear-gradient(135deg, #56514b, #eee6d6); background-size: 14px 14px, cover; }
.system-card h3 { color: var(--ink); text-transform: uppercase; margin-bottom: 8px; }
.system-card p, .service-card p, .industry-card p, .point-list p, .process-grid p, .spec-box li { color: var(--muted); margin: 8px 0 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; }
.service-card, .spec-box, .process-grid article { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 28px; }
.service-card a { display: inline-block; margin-top: 18px; color: var(--wine); font-weight: 800; font-family: "Montserrat"; text-transform: uppercase; font-size: 13px; }
.card-icon { display: block; width: 42px; height: 42px; margin-bottom: 18px; background: linear-gradient(135deg, var(--gold), #e5d39b); clip-path: polygon(0 0, 100% 0, 76% 100%, 0 75%); }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.split--top { align-items: start; }
.split p { font-size: 18px; }
.point-list { display: grid; gap: 18px; }
.point-list article { border-left: 4px solid var(--gold); padding: 4px 0 4px 18px; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.industry-card { display: block; border: 1px solid var(--line); padding: 24px; min-height: 166px; background: #fff; box-shadow: var(--shadow); }
.industry-card:hover { border-color: var(--gold); }
.coverage { text-align: center; }
.coverage .section-kicker { text-align: center; }
.coverage h2 { color: #fff; max-width: 900px; margin: 0 auto 28px; }
.coverage-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.coverage-links a, .tag-grid span { border: 1px solid rgba(255,255,255,.55); color: #fff; padding: 10px 14px; font-weight: 700; background: rgba(0,0,0,.25); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.process-grid span { color: var(--gold); font: 800 34px "Montserrat"; }
.faq-list { max-width: 900px; margin-top: 32px; }
details { border: 1px solid var(--line); background: #fff; margin-bottom: 12px; box-shadow: 0 6px 12px rgba(0,0,0,.04); }
summary { cursor: pointer; padding: 18px 22px; font: 800 16px "Montserrat"; color: var(--ink); }
details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }
.quote-section { background: #fff; }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.quote-grid .section-kicker { text-align: left; }
.check-list { padding-left: 0; list-style: none; }
.check-list li { margin: 10px 0; padding-left: 24px; position: relative; }
.check-list li:before { content: ""; position: absolute; left: 0; top: 10px; width: 9px; height: 9px; background: var(--gold); }
.quote-form { display: grid; gap: 14px; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 28px; }
.quote-form label { display: grid; gap: 6px; font-weight: 800; color: var(--ink); }
.quote-form input, .quote-form textarea, .quote-form select { width: 100%; border: 1px solid #d8d8d8; padding: 12px; font: inherit; color: var(--text); background: #fff; }
.form-status { min-height: 24px; margin: 0; color: var(--wine); font-weight: 700; }
.spec-box h3 { margin-bottom: 12px; }
.spec-box ul { margin: 0; padding-left: 20px; }
.tag-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.tag-grid span { color: var(--ink); border-color: var(--line); background: #fff; }
.site-footer { background: var(--dark); color: #fff; padding: 56px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 34px; }
.site-footer h2 { color: #fff; font-size: 17px; margin-bottom: 12px; }
.site-footer p { color: rgba(255,255,255,.72); margin: 18px 0 0; }
.site-footer a:not(.brand) { display: block; color: rgba(255,255,255,.78); margin: 8px 0; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 34px; padding-top: 16px; display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.68); font-size: 13px; }
@media (max-width: 980px) {
  .header-grid { grid-template-columns: 1fr auto; min-height: 80px; }
  .menu-toggle { display: inline-flex; }
  .site-nav { grid-column: 1 / -1; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 0 0 16px; }
  .site-nav.is-open { display: flex; }
  .nav-group { display: grid; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-group.is-open .submenu { display: block; }
  .system-grid, .service-grid, .industry-grid, .process-grid, .split, .quote-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .top-strip__inner { justify-content: center; text-align: center; flex-direction: column; padding: 7px 0; gap: 4px; }
  .brand strong { font-size: 15px; }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; }
  h1 { font-size: 29px; }
  h2 { font-size: 24px; }
  .eyebrow, .hero__deck { font-size: 15px; }
  .hero, .hero--small { min-height: 445px; }
  .section { padding: 48px 0; }
  .system-grid, .service-grid, .industry-grid, .process-grid, .split, .quote-grid, .footer-grid { grid-template-columns: 1fr; }
  .system-card__image { height: 210px; }
  .footer-bottom { flex-direction: column; }
}

.liveinternet-counter { display: flex; justify-content: center; padding: 10px 0 18px; background: var(--dark); }
.liveinternet-counter img { width: 88px; height: 31px; }
