/* ============================================
   MOBILE WELDING UNLIMITED LLC
   Reno, NV — D1.1 Certified Mobile Welding
   ============================================ */

:root {
  --orange: #f97316;
  --orange-dark: #c75607;
  --amber: #fbbf24;
  --dark: #09090b;
  --dark-mid: #18181b;
  --dark-warm: #1c1917;
  --steel-950: #020617;
  --steel-900: #0f172a;
  --steel-800: #1e293b;
  --text: #1f2024;
  --text-light: #5a5d64;
  --bg: #f7f6f3;
  --bg-alt: #eceae4;
  --white: #fff;
  --border: #d4d2cd;
  --steel: #4a5560;
  --green: #2f7d32;
  --star: #fbbf24;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.14);
  --radius: 2px;
  --max-width: 1180px;
  --hazard: repeating-linear-gradient(135deg, #f97316 0 14px, #09090b 14px 28px);
  --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--dark);
  color: #d0d0d0;
  font-size: 14px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: #fff; font-weight: 600; }
.top-bar a:hover { color: var(--orange); }
.top-bar .badges { display: flex; gap: 12px; font-size: 13px; }
.top-bar .badge { color: #bdbdbd; }
.top-bar .badge strong { color: #fff; }

/* ---- HEADER ---- */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header.dark-header {
  background: transparent;
  box-shadow: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
}
header.dark-header .logo { color: #fff; }
header.dark-header .logo small { color: #b9bcc5; }
header.dark-header nav a { color: #e4e5ea; }
header.dark-header nav a:hover, header.dark-header nav a.active { color: var(--amber); background: rgba(251,191,36,0.07); }
header.dark-header .mobile-toggle span { background: #fff; }
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1;
}
.logo .accent { color: var(--orange); }
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 2px;
}
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
nav a:hover, nav a.active { color: var(--orange); background: rgba(249,115,22,0.06); }
nav .cta-phone {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  margin-left: 8px;
  font-size: 14px;
}
nav .cta-phone:hover { background: var(--orange-dark); color: #fff; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO (spark canvas) ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 40%, #1c1917 0%, #09090b 60%, #020617 100%);
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(249,115,22,0.15), transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
canvas.sparks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero canvas.sparks { z-index: 2; }
.hero .container {
  position: relative;
  z-index: 4;
  padding-top: 96px;
  padding-bottom: 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero .eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(251,191,36,0.8);
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(46px, 6.5vw, 86px);
  color: #fff;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--orange);
  text-shadow: 0 0 40px rgba(249,115,22,0.6);
}
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.5);
}
.hero p {
  color: #d1d5db;
  font-size: 19px;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero .hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero .hero-badge {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero .hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(251,191,36,0.8);
}
.hero .btn { font-size: 17px; padding: 16px 34px; }
.hero .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.04);
}
.hero .btn-outline:hover { background: #fff; color: var(--dark); }

/* Hero side card (stats / review) */
.hero-card {
  background: rgba(24,24,27,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  padding: 28px 28px 24px;
  color: #e4e5ea;
}
.hero-card .card-label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.hero-card .card-rating {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-card .card-rating .star { color: var(--amber); font-size: 44px; }
.hero-card .card-stars { color: var(--amber); letter-spacing: 3px; font-size: 20px; margin-bottom: 10px; }
.hero-card .card-count {
  font-size: 14px;
  color: #a1a5b0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: #d1d5db;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}
.hero-card blockquote footer {
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
}

/* Hero marquee strip */
.hero-strip {
  position: relative;
  z-index: 5;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  overflow: hidden;
}
.hero-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 14px;
  color: #6b6f78;
}
.hero-strip .hs-item { display: flex; align-items: center; gap: 10px; }
.hero-strip .hs-item strong { color: #fff; font-weight: 700; }
.hero-strip .hs-sep { color: var(--orange); font-weight: 700; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--dark); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-mid); color: #fff; }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: var(--bg); color: var(--orange-dark); }

/* ---- SECTIONS ---- */
section { padding: 72px 0; }
section.alt { background: var(--bg-alt); }
section.dark-section { background: var(--dark); color: #e0e0e0; }
section.dark-section .section-title { color: #fff; }
section.dark-section .section-subtitle { color: #b0b0b0; }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 46px);
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 48px;
}
.section-subtitle.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title.center { text-align: center; }
.section-eyebrow {
  font-family: var(--font-heading);
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}
.section-eyebrow.center { text-align: center; }

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.intro-strip a { color: #fff; text-decoration: underline; }

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
  background: var(--bg-alt);
  padding: 14px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.breadcrumbs li::after {
  content: '>';
  margin-left: 8px;
  color: #999;
}
.breadcrumbs li:last-child::after { content: ''; margin: 0; }
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span { color: var(--text); font-weight: 600; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trust-item .icon {
  font-size: 22px;
  color: var(--orange);
}

/* ---- ABOUT PREVIEW ---- */
.about-preview {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.about-preview img {
  border-radius: var(--radius);
  border-bottom: 5px solid var(--orange);
  width: 100%;
}
.about-preview h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--dark);
  line-height: 1.15;
}
.about-preview p { margin-bottom: 16px; }

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 3px solid var(--orange);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 28px 24px; }
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p { color: var(--text-light); font-size: 15px; margin-bottom: 16px; }
.service-card .more-link { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ---- SERVICE LIST (services page) ---- */
.service-category { margin-bottom: 48px; }
.service-category h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}
.service-category ul { list-style: none; }
.service-category li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.service-category li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.service-category li a { color: var(--text); font-weight: 600; }
.service-category li a:hover { color: var(--orange); }

/* ---- REVIEWS ---- */
.reviews-grid { display: flex; flex-direction: column; gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.review-stars { color: var(--star); font-size: 20px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.review-author { font-weight: 700; color: var(--dark); }
.review-meta { color: var(--text-light); font-size: 14px; }
.review-google {
  display: inline-block;
  font-size: 12px;
  color: var(--text-light);
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--bg-alt);
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---- PAGE HEADER (industrial dark panel) ---- */
.page-header {
  background: radial-gradient(ellipse at 30% 30%, #1c1917 0%, #09090b 60%, #020617 100%);
  position: relative;
  padding: 120px 0 104px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 2px solid rgba(249,115,22,0.35);
  border-bottom: 2px solid rgba(249,115,22,0.35);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  z-index: 3;
  background: var(--hazard);
  opacity: 0.55;
}
.page-header .container { position: relative; z-index: 4; }
.page-header h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(38px, 5vw, 64px);
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 30px rgba(249,115,22,0.35);
}
.page-header h1::before {
  content: attr(data-chapter);
  display: block;
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 14px;
  opacity: 0.9;
}
.page-header p {
  color: #d5d7dc;
  font-size: 18px;
  margin-top: 14px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- CONTACT ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-details h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
}
.contact-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(225,74,10,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 20px;
}
.contact-form { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.contact-form h3 { font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; font-size: 26px; margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 15px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color var(--transition);
  background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- FEATURED REVIEW (industrial dark panel) ---- */
.featured-review {
  background: radial-gradient(ellipse at 70% 30%, #1c1917 0%, #09090b 65%, #020617 100%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 2px solid rgba(249,115,22,0.25);
  border-bottom: 2px solid rgba(249,115,22,0.25);
}
.featured-review::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 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: 44px 44px;
  pointer-events: none;
}
.featured-review .container { position: relative; z-index: 3; }
.featured-review blockquote {
  max-width: 820px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.8;
  font-style: italic;
  color: #f0f0f0;
}
.featured-review .review-stars { margin-bottom: 20px; color: var(--star); letter-spacing: 3px; font-size: 22px; }
.featured-review footer {
  margin-top: 20px;
  font-style: normal;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 16px;
}
.cta-section p { font-size: 18px; margin-bottom: 28px; opacity: 0.95; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---- TWO COL LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
}
.sidebar h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--dark);
}
.sidebar ul { list-style: none; }
.sidebar li { border-bottom: 1px solid var(--border); }
.sidebar li a {
  display: block;
  padding: 10px 0;
  color: var(--text);
  font-weight: 600;
}
.sidebar li a:hover { color: var(--orange); }
.sidebar img {
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.sidebar-cta {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-top: 24px;
}
.sidebar-cta h4 { color: #fff; margin-bottom: 12px; }
.sidebar-cta p { font-size: 15px; color: #ccc; margin-bottom: 16px; }
.sidebar-cta .btn { width: 100%; }

/* ---- SERVICE PAGE CONTENT ---- */
.service-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  color: var(--dark);
  margin: 40px 0 16px;
  line-height: 1.15;
}
.service-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  color: var(--dark);
  margin: 30px 0 12px;
}
.service-content p { margin-bottom: 16px; }
.service-content ul, .service-content ol {
  margin: 0 0 20px 24px;
}
.service-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.service-content img {
  border-radius: var(--radius);
  margin: 24px 0;
}
.service-content .highlight-box {
  background: rgba(225,74,10,0.06);
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.service-content .highlight-box strong { color: var(--dark); }

/* ---- GALLERY ---- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.gallery-filter {
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter:hover, .gallery-filter.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 24px 14px 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .caption { opacity: 1; }

/* ---- LOCATION LINKS ---- */
.location-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.location-links a {
  display: block;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 15px;
  color: var(--dark);
  transition: all var(--transition);
}
.location-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---- RELATED SERVICES ---- */
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.related-services a {
  display: block;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 14px;
  transition: all var(--transition);
}
.related-services a:hover {
  background: var(--orange);
  color: #fff;
}

/* ---- STATS STRIP (industrial stamped-plate) ---- */
.stats-strip {
  background: linear-gradient(180deg, #0a0a0c 0%, #141418 100%);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(249,115,22,0.2);
  border-bottom: 1px solid rgba(249,115,22,0.2);
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 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: 44px 44px;
  pointer-events: none;
}
.stats-strip .container { position: relative; z-index: 3; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 72px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(249,115,22,0.55);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 13px;
  color: #a5a7ae;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
  border-top: 1px solid rgba(249,115,22,0.25);
  padding-top: 10px;
  display: inline-block;
}

/* ---- 404 ---- */
.error-page {
  text-align: center;
  padding: 120px 24px;
}
.error-page h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 96px;
  color: var(--orange);
  margin-bottom: 16px;
  line-height: 1;
}
.error-page h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 16px;
}
.error-page p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- FOOTER ---- */
footer.site-footer {
  background: var(--dark);
  color: #aaa;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 20px;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #aaa; }
.footer-grid a:hover { color: var(--orange); }
.footer-grid .footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.footer-grid .footer-logo .accent { color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .about-preview { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .location-links { grid-template-columns: 1fr 1fr; }
  .related-services { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .hero { min-height: 700px; }
}

@media (max-width: 720px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    z-index: 99;
  }
  nav.open a { padding: 12px 16px; }
  nav.open .cta-phone { margin-left: 0; text-align: center; }
  .mobile-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 440px; }
  section { padding: 56px 0; }
  .top-bar { font-size: 13px; }
  .top-bar .badges { display: none; }
  .location-links { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-bar .container { flex-direction: column; }
}
