/* ==========================================================================
   Fabrication BR Métal — Global Stylesheet
   Industrial red/black system with sharp geometry
   ========================================================================== */

/* ----------------------- Design tokens ----------------------- */
:root {
  --primary: #e30613;
  --primary-rgb: 227, 6, 19;
  --primary-dark: #94040c;
  --primary-dark-rgb: 148, 4, 12;
  --primary-light: #fb5e68;
  --primary-light-rgb: 251, 94, 104;
  --secondary: #222222;
  --secondary-rgb: 34, 34, 34;
  --secondary-dark: #000000;
  --secondary-dark-rgb: 0, 0, 0;
  --secondary-light: #5a5a5a;
  --secondary-light-rgb: 90, 90, 90;
  --accent: #e30613;
  --accent-rgb: 227, 6, 19;
  --accent-dark: #94040c;
  --accent-dark-rgb: 148, 4, 12;
  --text: #111827;
  --text-rgb: 17, 24, 39;
  --text-light: #afb9c9;
  --text-light-rgb: 175, 185, 201;
  --text-muted: #b1b8c6;
  --text-muted-rgb: 177, 184, 198;
  --background: #ffffff;
  --background-rgb: 255, 255, 255;
  --bg: #ffffff;
  --bg-rgb: 255, 255, 255;
  --bg-alt: #f8fafc;
  --bg-alt-rgb: 248, 250, 252;
  --bg-dark: #111827;
  --bg-dark-rgb: 17, 24, 39;
  --surface: #ffffff;
  --surface-rgb: 255, 255, 255;
  --surface-dark: #f3f4f6;
  --surface-dark-rgb: 243, 244, 246;
  --border: #909296;
  --border-rgb: 144, 146, 150;
  --border-light: #f3f4f6;
  --border-light-rgb: 243, 244, 246;
  --accent-on-light: #e30613;
  --accent-on-light-rgb: 227, 6, 19;
  --primary-ink: #ffffff;
  --primary-ink-rgb: 255, 255, 255;
  --secondary-ink: #ffffff;
  --secondary-ink-rgb: 255, 255, 255;
  --accent-ink: #ffffff;
  --accent-ink-rgb: 255, 255, 255;
  --bg-alt-ink: #111827;
  --bg-alt-ink-rgb: 17, 24, 39;

  /* Utility */
  --dark-ink: #ffffff;
  --dark-ink-muted: #b8bec8;
  --light-body: #4a5261;
  --light-border: #e5e7eb;
  --panel-black: #0d0d0d;
  --panel-black-elev: #171717;
  --panel-black-line: rgba(255, 255, 255, 0.09);

  /* Typography */
  --font-display: 'Neue Aachen Pro', 'Barlow Condensed', 'Oswald', 'Impact', system-ui, sans-serif;
  --font-body: 'Neue Aachen Pro', 'Barlow', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Sizing / layout */
  --container-max: 1240px;
  --container-pad: clamp(1rem, 3vw, 2.25rem);
  --section-y: clamp(4rem, 8vw, 7rem);
  --radius-none: 0;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.14);

  /* Motion */
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.18s;
  --dur: 0.32s;
  --dur-slow: 0.55s;
}

/* ----------------------- Reset ----------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--easing); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); font-weight: 900; letter-spacing: 0.005em; line-height: 1.05; text-transform: uppercase; color: var(--text); }
p { margin: 0; }

::selection { background: var(--primary); color: var(--primary-ink); }

/* ----------------------- Layout ----------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.section {
  position: relative;
  padding-block: var(--section-y);
  overflow: hidden;
}
.section--light { background: var(--bg); color: var(--text); }
.section--dark { background: var(--panel-black); color: var(--dark-ink); }
.section--darker { background: #050505; color: var(--dark-ink); }

/* Red diagonal geometric cut (industrial signature) */
.section-diag {
  position: absolute;
  top: -1px;
  right: 0;
  width: 42%;
  height: 90px;
  background: var(--primary);
  clip-path: polygon(100% 0, 100% 100%, 30% 100%, 0 0);
  z-index: 1;
}
.section-diag--reverse {
  right: auto;
  left: 0;
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
}

/* ----------------------- Section headers ----------------------- */
.section-head {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-eyebrow--dark { color: var(--primary-light); }
.eyebrow-dash {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: currentColor;
}
.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  margin-bottom: 1.25rem;
}
.section-title--dark { color: #fff; }
.text-accent { color: var(--primary); }
.section--dark .text-accent { color: var(--primary); }
.section-lede {
  color: var(--light-body);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.section-lede--dark { color: var(--dark-ink-muted); }

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius-none);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: transform var(--dur-fast) var(--easing), background var(--dur-fast) var(--easing), color var(--dur-fast) var(--easing), border-color var(--dur-fast) var(--easing);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid rgba(var(--primary-rgb), 0.4); outline-offset: 2px; }

.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--primary-ink); }

.btn-dark {
  background: var(--panel-black);
  color: #fff;
}
.btn-dark:hover { background: #1f1f1f; color: #fff; }

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

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--panel-black); }

.btn-ghost {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; color: var(--panel-black); border-color: #fff; }

.btn-lg { padding: 1.15rem 2rem; font-size: 0.88rem; }
.btn-block { display: flex; width: 100%; }
.btn-header { padding: 0.75rem 1.25rem; font-size: 0.75rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--dur-fast) var(--easing);
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }

/* Top thin bar */
.topbar {
  background: var(--panel-black);
  color: #fff;
  font-size: 0.78rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 1rem;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: nowrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.topbar-item svg { color: var(--primary); flex-shrink: 0; }
.topbar-item:where(a):hover { color: #fff; }
.topbar-sep { color: rgba(255, 255, 255, 0.25); }
.topbar-item--social {
  width: 26px;
  height: 26px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  transition: background var(--dur-fast);
}
.topbar-item--social:hover { background: var(--primary); }
.topbar-item--social svg { color: #fff; }

/* Main bar */
.mainbar { background: #fff; }
.mainbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
}

/* Brand mark (typographic logo) */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-mark {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 0.55rem;
  background: var(--panel-black);
  padding: 0.55rem 0.9rem;
  border-left: 4px solid var(--primary);
  line-height: 1;
}
.brand-mark-line {
  grid-column: 2;
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}
.brand-mark-line--red { color: var(--primary); }
.brand-mark-big {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.1rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

/* Primary nav */
.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--dur-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--easing);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }
.caret { transition: transform var(--dur-fast); }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur) var(--easing);
  padding: 0.5rem 0;
  z-index: 50;
}
.dropdown--wide { min-width: 200px; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  border-left: 3px solid transparent;
  transition: all var(--dur-fast);
}
.dropdown li a:hover {
  background: #f5f5f5;
  color: var(--primary-dark);
  border-left-color: var(--primary);
  padding-left: 1.4rem;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  transition: color var(--dur-fast);
}
.phone-link:hover { color: var(--primary); }
.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
}
.phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  white-space: nowrap;
}
.phone-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--secondary-light);
  font-weight: 600;
}
.phone-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.phone-link:hover .phone-number { color: var(--primary); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  background: var(--panel-black);
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform var(--dur-fast), opacity var(--dur-fast);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--panel-black);
  color: #fff;
  padding: 1.5rem var(--container-pad) 2rem;
  max-height: calc(100vh - 82px);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-list > li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.mobile-list > li > a,
.mobile-group-label {
  display: block;
  padding: 1rem 0;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mobile-list > li > a.active { color: var(--primary); }
.mobile-group-label { color: var(--primary-light); font-size: 0.72rem; letter-spacing: 0.18em; }
.mobile-group ul li a {
  display: block;
  padding: 0.55rem 0 0.55rem 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.mobile-group ul li a:hover { color: var(--primary-light); }
.mobile-actions {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: #050505;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--easing);
}
.hero-img.is-active { opacity: 1; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 45%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.hero-diagonal {
  position: absolute;
  right: -10%;
  top: 15%;
  width: 55%;
  height: 60%;
  background: var(--primary);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero-diagonal-2 {
  position: absolute;
  right: -5%;
  bottom: -5%;
  width: 40%;
  height: 30%;
  background: var(--primary);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 8rem 6rem;
}
.hero-inner {
  max-width: 680px;
  position: relative;
  padding: 2rem 1.75rem 2rem;
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.55) 65%, rgba(0, 0, 0, 0.35) 100%);
  border-left: 4px solid var(--primary);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #ffffff;
  padding: 0.45rem 0.9rem 0.45rem 0.9rem;
  margin-bottom: 1.5rem;
  background: #0d0d0d;
  border-left: 3px solid var(--primary);
}
.hero-eyebrow .eyebrow-dash { display: none; }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: #ffffff;
  max-width: 560px;
  margin-bottom: 2.25rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-slides {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  gap: 0.6rem;
  z-index: 4;
}
.hero-dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  transition: all var(--dur-fast);
  cursor: pointer;
  padding: 0;
}
.hero-dot.is-active { background: var(--primary); width: 44px; }
.hero-dot:hover { background: rgba(255, 255, 255, 0.6); }

/* Hero trust band */
.hero-trustband {
  position: relative;
  z-index: 3;
  background: var(--panel-black);
  border-top: 3px solid var(--primary);
  color: #fff;
}
.hero-trustband-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 1.75rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 1rem;
  border-left: 2px solid var(--primary);
}
.trust-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}
.trust-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}

/* ==========================================================================
   INTRO STRIP
   ========================================================================== */
.intro-strip { padding-block: clamp(3.5rem, 6vw, 5rem); background: var(--bg); border-bottom: 1px solid var(--light-border); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.intro-copy .section-title { margin-bottom: 0; font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
.intro-body p { color: var(--light-body); font-size: 1.02rem; line-height: 1.75; }
.intro-body p + p { margin-top: 1rem; }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-section { padding-block: var(--section-y); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-none);
  transition: transform var(--dur) var(--easing), box-shadow var(--dur) var(--easing);
  text-decoration: none;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--dur-slow) var(--easing);
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__label {
  position: absolute;
  left: 0;
  bottom: 1rem;
  background: var(--primary);
  color: var(--primary-ink);
  padding: 0.55rem 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}
.service-card__body {
  display: block;
  padding: 1.5rem 1.5rem 1.75rem;
  background: #fff;
  border-top: 1px solid var(--light-border);
}
.service-card__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.55rem;
}
.service-card__text {
  display: block;
  color: var(--light-body);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: gap var(--dur-fast);
}
.service-card:hover .service-card__link { gap: 0.75rem; }

/* Wide featured service card — spans the full grid width */
.service-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  background: #fff;
  overflow: hidden;
}
.service-card--wide .service-card__media {
  aspect-ratio: auto;
  min-height: 260px;
  height: 100%;
}
.service-card--wide .service-card__body {
  padding: 2rem 2rem 2rem;
  border-top: 0;
  border-left: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card--wide .service-card__title { font-size: 1.4rem; }
.service-card--wide .service-card__text { font-size: 1rem; margin-bottom: 1.25rem; }
@media (max-width: 720px) {
  .service-card--wide { grid-template-columns: 1fr; }
  .service-card--wide .service-card__body {
    border-left: 0;
    border-top: 1px solid var(--light-border);
    padding: 1.5rem 1.5rem 1.75rem;
  }
  .service-card--wide .service-card__media { min-height: 220px; }
}

/* ==========================================================================
   WHY US (dark)
   ========================================================================== */
.why-section { padding-block: calc(var(--section-y) + 1rem); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.why-card {
  background: var(--panel-black-elev);
  padding: 0;
  border-left: 3px solid var(--primary);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background var(--dur) var(--easing);
}
.why-card:hover { background: #1e1e1e; }
.why-card__media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
  margin: 0;
}
.why-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--dur-slow) var(--easing);
}
.why-card:hover .why-card__media img { transform: scale(1.04); }
.why-card > .why-icon,
.why-card > .why-title,
.why-card > .why-text { padding-inline: 1.5rem; }
.why-card > .why-icon { padding-top: 1.5rem; }
.why-card > .why-text { padding-bottom: 1.75rem; }
.why-icon {
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-flex;
}
.why-title {
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.why-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--dark-ink-muted);
}

/* ==========================================================================
   MATERIALS (light w/ media grid)
   ========================================================================== */
.materials-section { background: var(--bg-alt); }
.materials-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.materials-copy .section-head,
.materials-copy .section-title { text-align: left; margin-left: 0; }
.materials-copy .section-eyebrow { justify-content: flex-start; }
.materials-copy .section-lede { margin-left: 0; margin-bottom: 1.5rem; }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--light-body);
  line-height: 1.55;
  font-size: 0.98rem;
}
.check-list--tight li { padding: 0.35rem 0; font-size: 0.95rem; }
.check-list strong { color: var(--text); font-weight: 700; }
.check-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 900;
  font-size: 0.8rem;
  line-height: 1;
}

.materials-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  align-content: stretch;
}
.materials-figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #111;
}
.materials-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.materials-figure--tall {
  grid-row: 1 / span 2;
  aspect-ratio: 3 / 4;
}
.materials-figure--wide { aspect-ratio: 4 / 3; }
.materials-figure--square { aspect-ratio: 4 / 3; }
.materials-caption {
  position: absolute;
  left: 0;
  bottom: 0.75rem;
  background: var(--primary);
  color: var(--primary-ink);
  padding: 0.35rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   PROCESS (dark, numbered steps)
   ========================================================================== */
.process-section { padding-block: var(--section-y); }
ol.steps {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.75rem 1.25rem 1.5rem;
  background: transparent;
  border-top: 3px solid var(--primary);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--primary);
  line-height: 1;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.step-title {
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 0.55rem;
  line-height: 1.2;
}
.step-text {
  color: var(--dark-ink-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.process-tagline {
  margin-top: 3rem;
  padding: 1.15rem 1.5rem;
  background: rgba(var(--primary-rgb), 0.12);
  border-left: 4px solid var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.process-tagline svg { color: var(--primary); flex-shrink: 0; }

/* ==========================================================================
   CLIENTELE
   ========================================================================== */
.clientele-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.clientele-card {
  padding: 2rem 1.75rem 1.75rem;
  background: #fff;
  border-top: 3px solid var(--primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--dur), transform var(--dur);
}
.clientele-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.clientele-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--primary);
  line-height: 1;
}
.clientele-title { font-size: 1.35rem; color: var(--text); margin-bottom: 0.25rem; }
.clientele-text { color: var(--light-body); font-size: 0.95rem; line-height: 1.65; flex: 1; }
.clientele-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--primary-ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background var(--dur-fast), gap var(--dur-fast);
  margin-top: 0.5rem;
}
.clientele-cta:hover { background: var(--primary-dark); gap: 0.75rem; color: var(--primary-ink); }

/* ==========================================================================
   EXPERT REASONS (dark red panels)
   ========================================================================== */
.expert-section { padding-block: calc(var(--section-y) + 1rem); }
.expert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.expert-card {
  background: var(--primary);
  color: var(--primary-ink);
  padding: 2rem 1.75rem 1.75rem;
  transition: background var(--dur) var(--easing);
  border-left: 4px solid rgba(255, 255, 255, 0.15);
}
.expert-card:hover { background: var(--primary-dark); }
.expert-title {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}
.expert-text {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   WELDING (light)
   ========================================================================== */
.welding-section { padding-block: var(--section-y); }
.welding-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.welding-copy .section-eyebrow { justify-content: flex-start; }
.welding-copy .section-title { text-align: left; }
.welding-copy .section-lede { margin-left: 0; margin-bottom: 1.5rem; }
.welding-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.welding-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}
.welding-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.welding-badge {
  position: absolute;
  left: 0;
  bottom: 1.25rem;
  background: var(--panel-black);
  color: #fff;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-left: 4px solid var(--primary);
}

/* ==========================================================================
   REGIONS
   ========================================================================== */
.regions-section { padding-block: var(--section-y); }
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.region-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 130px;
  padding: 1.1rem 1.25rem 1.25rem;
  background: var(--panel-black-elev);
  color: #fff;
  border-left: 3px solid var(--panel-black-line);
  transition: all var(--dur) var(--easing);
}
.region-card:hover {
  background: var(--primary);
  border-left-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}
.region-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--primary);
  border-left-color: #fff;
  padding: 2rem 2rem 2rem;
  justify-content: space-between;
}
.region-card--featured:hover { background: var(--primary-dark); }
.region-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.region-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}
.region-card--featured .region-name { font-size: 3rem; }
.region-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  background: var(--primary);
  color: var(--primary-ink);
  padding-block: 4rem;
  overflow: hidden;
  isolation: isolate;
}
.cta-slash {
  position: absolute;
  top: -20%;
  width: 20%;
  height: 140%;
  background: rgba(0, 0, 0, 0.12);
  z-index: 0;
}
.cta-slash--left { left: -5%; clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%); }
.cta-slash--right { right: -5%; clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%); }

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta-title {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 0.85rem;
}
.cta-sub {
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 620px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #050505;
  color: #fff;
  padding-top: clamp(3rem, 6vw, 5rem);
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.brand--footer { display: inline-block; margin-bottom: 1.25rem; }
.footer-about {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-license {
  padding: 0.6rem 0.85rem;
  background: rgba(var(--primary-rgb), 0.12);
  border-left: 3px solid var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-block;
}
.footer-license strong { color: var(--primary-light); letter-spacing: 0.02em; }
.footer-title {
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  letter-spacing: 0.1em;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.footer-list li svg { color: var(--primary); flex-shrink: 0; }
.footer-list--links li { display: block; }
.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color var(--dur-fast);
  white-space: nowrap;
}
.footer-link:hover { color: var(--primary-light); }
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background var(--dur-fast);
}
.footer-social:hover { background: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.25rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
  .expert-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clientele-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  ol.steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .regions-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .region-card--featured { grid-column: span 3; grid-row: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-col--brand { grid-column: span 3; }
}

@media (max-width: 980px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .phone-link .phone-text { display: none; }
  .phone-link { padding: 0.25rem; }
  .btn-header { display: none; }
  .mainbar-inner { min-height: 68px; }
  .topbar-hide-md { display: none; }
  .hero-trustband-inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 0; }
  .trust-item { padding: 0 1rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .materials-layout, .welding-layout { grid-template-columns: 1fr; }
  .materials-media { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .materials-figure--tall { grid-row: auto; aspect-ratio: 4/3; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clientele-grid { grid-template-columns: 1fr; }
  ol.steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .expert-grid { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: span 2; }
}

@media (max-width: 720px) {
  .topbar-hide-sm { display: none; }
  .topbar-item { font-size: 0.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  ol.steps { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .region-card--featured { grid-column: span 2; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; text-align: left; }
  .hero-content { padding-block: 6rem 4rem; min-height: 70vh; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-trustband-inner { grid-template-columns: 1fr 1fr; padding-block: 1.25rem; }
  .trust-num { font-size: 1.3rem; }
  .brand-mark-big { font-size: 1.7rem; }
  .brand-mark { padding: 0.45rem 0.7rem; }
  .brand-mark-line { font-size: 0.6rem; }
  .hero-diagonal { width: 75%; height: 45%; top: auto; bottom: 15%; opacity: 0.75; }
  .hero-diagonal-2 { display: none; }
  .cta-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

@media (max-width: 480px) {
  .topbar { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: auto; }
  .footer-legal { flex-direction: column; gap: 0.5rem; }
  .btn-lg { padding: 1rem 1.5rem; font-size: 0.82rem; }
  .hero-slides { right: 1rem; bottom: 1rem; }
  .regions-grid { grid-template-columns: 1fr; }
  .region-card--featured { grid-column: auto; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-img { transition: opacity 0.2s ease; }
}
