:root {
  --black: #0c0c0d;
  --charcoal: #18181a;
  --panel: #1f2023;
  --steel: #33363b;
  --steel-line: #2a2c30;
  --red: #c81e2c;
  --red-dark: #8c1420;
  --amber: #e8821a;
  --off-white: #eeeae2;
  --gray: #9a9ba0;
  --gray-dim: #6b6c70;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Work Sans',sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Oswald',sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mono {
  font-family: 'JetBrains Mono',monospace;
}

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

img {
  display: block;
  max-width: 100%;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* focus visibility */

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- HAZARD STRIPE (signature element) ---------- */

.hazard {
  height: 14px;
  background: repeating-linear-gradient( -45deg, var(--amber) 0px, var(--amber) 22px, var(--black) 22px, var(--black) 44px );
  width: 100%;
}

.hazard.thin {
  height: 8px;
}

/* ---------- HEADER ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12,12,13,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--steel-line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 37px;
  width: auto;
}

.brand-text {
  font-family: 'Oswald',sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.brand-text span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links a {
  color: var(--gray);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--off-white);
}

.call-btn {
  background: var(--amber);
  color: #fff;
  padding: 9px 18px;
  border-radius: 2px;
  font-family: 'JetBrains Mono',monospace;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid var(--red);
  transition: background 0.15s, transform .15s;
}

.call-btn:hover {
  background: var(--amber);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  padding: 88px 0 0;
  background: radial-gradient(ellipse at 15% 0%, rgba(200,30,44,0.16), transparent 55%), radial-gradient(ellipse at 85% 20%, rgba(232,130,26,0.10), transparent 50%), var(--black);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono',monospace;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  /*content: "";*/
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.98;
  font-weight: 700;
  color: var(--off-white);
}

.hero h1 .accent {
  color: var(--amber);
  -webkit-text-stroke: 0px;
}

.hero p.lede {
  margin-top: 20px;
  max-width: 46ch;
  color: var(--gray);
  font-size: 1.08rem;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 2px;
  font-family: 'JetBrains Mono',monospace;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: transform .15s, background .15s, border-color .15s;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  border: 1px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--steel);
  color: var(--off-white);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.rating-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--steel-line);
}

.stars {
  color: var(--amber);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-strip .score {
  font-family: 'Oswald',sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
}

.rating-strip .sub {
  color: var(--gray-dim);
  font-size: 0.85rem;
}

/* signage plate graphic */

.plate {
  position: relative;
  background: var(--charcoal);
  border: 1px solid var(--steel-line);
  border-radius: 4px;
  padding: 26px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
}

.plate::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 6px;
  background: repeating-linear-gradient(-45deg, var(--amber) 0 10px, var(--black) 10px 20px);
  border-radius: 0 0 3px 3px;
}

.plate-logo {
  display: flex;
  justify-content: center;
  padding: 18px 6px 22px;
}

.plate-logo img {
  height: 120px;
  width: auto;
}

.plate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
  border-top: 1px dashed var(--steel-line);
  font-family: 'JetBrains Mono',monospace;
  font-size: 0.82rem;
}

.plate-row:first-of-type {
  border-top: 1px solid var(--steel-line);
}

.plate-row .k {
  color: var(--gray-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.plate-row .v {
  color: var(--off-white);
  text-align: right;
  font-weight: 500;
}

.plate-row .v a:hover {
  color: var(--amber);
}

/* ---------- SECTION LABELS ---------- */

.section {
  padding: 84px 0;
}

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

.section-tag {
  font-family: 'JetBrains Mono',monospace;
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
}

.section-desc {
  color: var(--gray);
  max-width: 42ch;
  font-size: 0.98rem;
}

/* ---------- SERVICES (toolboard grid) ---------- */

.services-panel {
  background: var(--charcoal);
  border: 1px solid var(--steel-line);
  border-radius: 4px;
  padding: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--steel-line);
  border-radius: 2px;
  overflow: hidden;
}

.service-card {
  background: var(--panel);
  padding: 32px 26px;
  position: relative;
  transition: background .18s;
}

.service-card:hover {
  background: #242529;
}

.bolt {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--steel);
}

.bolt::before, .bolt::after {
  content: "";
  position: absolute;
  background: var(--steel);
}

.bolt::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 2px;
  transform: translateY(-50%);
}

.bolt::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transform: translateX(-50%);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--amber);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--off-white);
}

.service-card p {
  color: var(--gray-dim);
  font-size: 0.88rem;
}

/* badges row */

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  border: 1px solid var(--steel-line);
  padding: 12px 18px;
  border-radius: 30px;
  font-family: 'JetBrains Mono',monospace;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--off-white);
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex: none;
}

/* ---------- REVIEWS ---------- */

.reviews-band {
  background: var(--charcoal);
  border-top: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.review-card {
  background: var(--panel);
  border: 1px solid var(--steel-line);
  border-radius: 3px;
  padding: 26px;
  position: relative;
}

.review-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 0;
  border-bottom: 1px dashed var(--steel);
}

.review-stars {
  color: var(--amber);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 1.02rem;
  color: var(--off-white);
  margin-bottom: 16px;
  font-style: normal;
}

.review-src {
  font-family: 'JetBrains Mono',monospace;
  font-size: 0.76rem;
  color: var(--gray-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-src .g {
  color: var(--amber);
  font-weight: 700;
}

/* ---------- CONTACT / LOCATION ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--steel-line);
  border-radius: 4px;
  overflow: hidden;
}

.contact-info {
  background: var(--charcoal);
  padding: 48px;
}

.info-line {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--steel-line);
}

.info-line:last-child {
  border-bottom: none;
}

.info-line .ic {
  width: 20px;
  height: 20px;
  color: var(--amber);
  flex: none;
  margin-top: 2px;
}

.info-line .ic svg {
  width: 100%;
  height: 100%;
}

.info-line .label {
  font-family: 'JetBrains Mono',monospace;
  font-size: 0.72rem;
  color: var(--gray-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.info-line .val {
  font-size: 1.05rem;
  color: var(--off-white);
}

.info-line .val a:hover {
  color: var(--amber);
}

.map-side {
  position: relative;
  min-height: 280px;
  background: var(--panel);
}

.map-side iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  filter: grayscale(0.4) contrast(1.1) invert(0.92) hue-rotate(180deg);
}

.map-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(12,12,13,0.9);
  border: 1px solid var(--steel-line);
  padding: 14px 16px;
  border-radius: 3px;
  font-family: 'JetBrains Mono',monospace;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.map-overlay a {
  color: var(--amber);
  white-space: nowrap;
}

/* ---------- FOOTER ---------- */

footer {
  background: var(--black);
  padding: 40px 0 28px;
  border-top: 1px solid var(--steel-line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 30px;
  width: auto;
}

.footer-brand span {
  font-family: 'Oswald',sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

footer .fine {
  color: var(--gray-dim);
  font-size: 0.8rem;
  font-family: 'JetBrains Mono',monospace;
}

footer .fine a:hover {
  color: var(--amber);
}

/* ---------- RESPONSIVE ---------- */

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

@media (max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width:900px) {
  .plate {
    margin-top: 8px;
  }
}

@media (max-width:900px) {
  .services-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:900px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:560px) {
  .nav .call-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

@media (max-width:560px) {
  .brand-text {
    font-size: 0.9rem;
  }
}

@media (max-width:560px) {
  .hazard {
    background-size: 200% 100%;
  }
}

