/* ============================================================
   CADILLAC FABRICATION OF TEXAS — Main Stylesheet
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --black:        #080808;
  --dark:         #101010;
  --dark-2:       #181818;
  --dark-3:       #222222;
  --dark-4:       #2c2c2c;
  --orange:       #f05a1a;
  --orange-light: #ff7a3a;
  --orange-dark:  #c44a10;
  --orange-glow:  rgba(240, 90, 26, 0.35);
  --steel:        #8b9dc3;
  --silver:       #bec8d8;
  --white:        #f4f4f4;
  --gray-light:   #aaaaaa;
  --gray:         #666666;
  --border:       rgba(255,255,255,0.07);
  --border-warm:  rgba(240,90,26,0.2);

  --radius:       6px;
  --radius-lg:    12px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-h:        76px;

  --shadow-card:  0 4px 30px rgba(0,0,0,0.5);
  --shadow-glow:  0 0 30px rgba(240,90,26,0.25);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1rem; color: var(--gray-light); line-height: 1.75; }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--white);
}
.section-title span { color: var(--orange); }

.section-sub {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section--dark  { background: var(--dark); }
.section--dark2 { background: var(--dark-2); }
.section--dark3 { background: var(--dark-3); }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.flex { display: flex; }
.grid { display: grid; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(240,90,26,0.4);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,90,26,0.5);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-icon { font-size: 1.1rem; }

/* ── Divider line ─────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 1rem 0 1.5rem;
}
.divider--center { margin: 1rem auto 1.5rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */

/* ── Nav Logo Shield ─────────────────────────────────────── */
.nav__logo {
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
}
.nav__logo-shield {
  height: 40px;
  width: auto;
  /* Dark badge background hides the JPEG white — matches site bg */
  background: var(--black);
  border-radius: 5px;
  padding: 3px 4px;
  filter:
    drop-shadow(0 0 6px rgba(240, 90, 26, 0.45))
    drop-shadow(0 0 2px rgba(240, 90, 26, 0.2));
  transition: filter var(--transition);
  flex-shrink: 0;
}
.nav__logo:hover .nav__logo-shield {
  filter:
    drop-shadow(0 0 10px rgba(240, 90, 26, 0.75))
    drop-shadow(0 0 4px rgba(240, 90, 26, 0.4));
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}


/* ── Heritage Seal (About page) ──────────────────────────── */
.heritage-seal-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0 60px;
}
.heritage-seal {
  position: relative;
  width: 230px;
  height: 230px;
}
.heritage-seal__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.heritage-seal__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115px;
  /* Dark circle hides the JPEG white background cleanly */
  background: var(--dark-2);
  border-radius: 50%;
  padding: 10px;
}
.heritage-seal__logo img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    brightness(1.05)
    drop-shadow(0 0 10px rgba(240, 90, 26, 0.4));
  transition: filter 0.4s;
}
.heritage-seal:hover .heritage-seal__logo img {
  filter:
    brightness(1.15)
    drop-shadow(0 0 20px rgba(240, 90, 26, 0.65));
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.nav__logo-main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}
.nav__logo-main span { color: var(--orange); }
.nav__logo-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gray-light);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav__link:hover, .nav__link.active {
  color: var(--white);
}
.nav__link:hover::after, .nav__link.active::after { width: calc(100% - 28px); }

.nav__cta {
  background: var(--orange);
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: var(--radius);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--orange-light); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile nav open */
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.nav__mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.nav__mobile .nav__link {
  font-size: 1.1rem;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   HERO — Home
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.6) 50%, rgba(8,8,8,0.85) 100%),
    url('https://img1.wsimg.com/isteam/ip/5d64baa6-14f0-4ca3-a485-40dc5732b7ec/welding%20photo%201.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: contrast(1.1) saturate(0.7);
  transform: scale(1.05);
  animation: hero-zoom 12s ease-out forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.1) 40%,
    rgba(8,8,8,0.7) 100%
  );
}
.hero__sparks { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s 0.3s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--orange);
}
.hero__title {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.9s 0.6s forwards;
  margin-bottom: 0.3rem;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
}
.hero__title span { color: var(--orange); }
.hero__subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.9s 0.85s forwards;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 2rem;
}
.hero__tagline {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.9s 1.1s forwards;
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.hero__buttons {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.9s 1.3s forwards;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fade-up 1s 1.8s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-line 1.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Spark particles */
.spark {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  animation: spark-rise var(--dur, 2s) var(--delay, 0s) ease-out infinite;
  opacity: 0;
}
@keyframes spark-rise {
  0%   { opacity: 0.9; transform: translate(0, 0) scale(1); }
  100% { opacity: 0;   transform: translate(var(--dx, 40px), -220px) scale(0.1); }
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.6) contrast(1.1);
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.9) 0%,
    rgba(8,8,8,0.3) 100%
  );
}
.page-banner__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.page-banner__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}
.page-banner__eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--orange);
}
.page-banner__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
}
.page-banner__title span { color: var(--orange); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gray);
}
.breadcrumb a { color: var(--gray-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb__sep { color: var(--gray); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 16px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat__number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--dark-2);
  padding: 40px 32px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--orange);
  transition: height 0.4s ease;
}
.service-card:hover { background: var(--dark-3); }
.service-card:hover::before { height: 100%; }

.service-card__icon {
  width: 56px; height: 56px;
  background: rgba(240,90,26,0.1);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: background var(--transition), box-shadow var(--transition);
}
.service-card:hover .service-card__icon {
  background: rgba(240,90,26,0.2);
  box-shadow: var(--shadow-glow);
}
.service-card__title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-card__spec {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card__spec::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--orange);
}

/* ── Services page: full cards with images ─────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-full-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--border-warm);
}
.service-full-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1);
  transition: filter 0.4s, transform 0.6s;
}
.service-full-card:hover .service-full-card__img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.03);
}
.service-full-card__img-wrap {
  overflow: hidden;
  position: relative;
}
.service-full-card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--dark-2), transparent);
}
.service-full-card__body {
  padding: 28px 32px 32px;
}
.service-full-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.service-full-card__title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.service-full-card__desc {
  font-size: 0.95rem;
  color: var(--gray-light);
  margin-bottom: 16px;
}
.service-full-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.spec-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(240,90,26,0.1);
  border: 1px solid var(--border-warm);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── No-image card (for services without photos) ──────────── */
.service-img-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.service-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 40px
  );
}

/* ============================================================
   EQUIPMENT CARDS
   ============================================================ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.equip-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.equip-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at top left, rgba(240,90,26,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.equip-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-warm);
  box-shadow: var(--shadow-card);
}
.equip-card:hover::after { opacity: 1; }
.equip-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.equip-card__name {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}
.equip-card__desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.equip-card__badge {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--border-warm);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ============================================================
   ABOUT SECTION (home)
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split__img-wrap {
  position: relative;
}
.about-split__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: contrast(1.1) saturate(0.75);
}
.about-split__img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}
.about-split__badge {
  position: absolute;
  top: 24px; right: -16px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.about-split__badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.about-split__badge-label {
  font-size: 0.75rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-split__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 1.5rem 0;
}
.about-split__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-light);
}
.about-split__list li::before {
  content: '▸';
  color: var(--orange);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── Full About page content ─────────────────────────────────*/
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.value-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover {
  border-color: var(--border-warm);
  transform: translateY(-4px);
}
.value-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.value-card__title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.value-card__desc {
  font-size: 0.88rem;
  color: var(--gray);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,8,8,0.88), rgba(8,8,8,0.88)),
    url('https://img1.wsimg.com/isteam/ip/5d64baa6-14f0-4ca3-a485-40dc5732b7ec/plasma%20cutting.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: saturate(0.5);
}
.cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p  { margin-bottom: 2rem; font-size: 1.05rem; }
.cta-section .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Orange band CTA ────────────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding: 60px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band__text h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 4px;
}
.cta-band__text p {
  color: rgba(255,255,255,0.8);
}
.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.cta-band .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--dark-3);
}
.gallery-item--wide  { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item--tall  { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.9);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1) brightness(1);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__icon {
  width: 52px; height: 52px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  gap: 10px;
}
.gallery-placeholder__icon { font-size: 3rem; opacity: 0.3; }
.gallery-placeholder__label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-group select option { background: var(--dark-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,90,26,0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.info-card:hover { border-color: var(--border-warm); }
.info-card__icon {
  width: 44px; height: 44px;
  background: rgba(240,90,26,0.1);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-card__label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.info-card__value {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}
.info-card__value a { color: var(--gray-light); transition: color 0.2s; }
.info-card__value a:hover { color: var(--orange); }

.hours-table { width: 100%; margin-top: 8px; }
.hours-table tr td {
  padding: 2px 0;
  font-size: 0.9rem;
  color: var(--gray-light);
}
.hours-table tr td:last-child { text-align: right; }
.hours-table tr.today td { color: var(--white); font-weight: 500; }
.hours-table tr.today td:last-child { color: var(--orange); }

.map-embed {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 4px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg) saturate(0.4);
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__logo-main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}
.footer__logo-main span { color: var(--orange); }
.footer__logo-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
}
.footer__tagline {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer__social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(240,90,26,0.08);
}

.footer__col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
}
.footer__links a:hover { color: var(--white); padding-left: 4px; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--gray);
}
.footer__contact-item span:first-child { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a { color: var(--gray); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}
.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--gray);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: var(--white); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal--left  { transform: translateX(-40px); }
.reveal.reveal--right { transform: translateX(40px); }
.reveal.reveal--scale { transform: scale(0.92); }
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── General keyframes ─────────────────────────────────────── */
@keyframes fade-up {
  to { opacity: 1; transform: none; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(240,90,26,0.3); }
  50%       { box-shadow: 0 0 40px rgba(240,90,26,0.6); }
}

/* ── Decorative dashes ──────────────────────────────────────  */
.metal-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.metal-line::before, .metal-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.metal-line span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── Process steps ──────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 1px;
  background: linear-gradient(to right, var(--border), var(--orange), var(--border));
}
.step {
  text-align: center;
  padding: 0 16px;
}
.step__num {
  width: 56px; height: 56px;
  background: var(--dark-3);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
  position: relative;
  z-index: 1;
}
.step__title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.step__desc {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid          { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid     { grid-template-columns: 1fr; }
  .equipment-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer__grid           { grid-template-columns: 1fr 1fr; }
  .contact-grid           { grid-template-columns: 1fr; }
  .about-split            { grid-template-columns: 1fr; gap: 40px; }
  .about-split__img       { height: 380px; }
  .values-grid            { grid-template-columns: repeat(2, 1fr); }
  .process-steps          { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before  { display: none; }
  .stats-bar__grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__hamburger { display: flex; }

  .section { padding: 70px 0; }

  .services-grid        { grid-template-columns: 1fr; }
  .equipment-grid       { grid-template-columns: 1fr; }
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide   { grid-column: span 2; }
  .gallery-item--tall   { grid-row: auto; aspect-ratio: 1; }
  .values-grid          { grid-template-columns: 1fr 1fr; }
  .footer__grid         { grid-template-columns: 1fr; }
  .cta-band__inner      { flex-direction: column; text-align: center; }
  .form-row             { grid-template-columns: 1fr; }
  .process-steps        { grid-template-columns: 1fr 1fr; }
  .stats-bar__grid      { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
}

@media (max-width: 480px) {
  .hero__buttons  { flex-direction: column; align-items: center; }
  .gallery-grid   { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 1; }
  .values-grid    { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}
