/* ── WM WELDING – CSS Variables & Base ── */
:root {
  --fire:    #FF6B00;
  --fire-hot: #FF9A00;
  --steel:   #B8C5D6;
  --dark:    #0A0C0F;
  --dark2:   #111418;
  --dark3:   #181D24;
  --dark4:   #1F2630;
  --spark:   #FFD700;
  --white:   #F0F4F8;
  --muted:   #7A8A9A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── Typography helpers ── */
.section-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--fire);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 3px;
  line-height: 1;
  color: var(--white);
}
.section-title span { color: var(--fire); }

/* ── Layout ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

/* ── Divider ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.3) 50%, transparent);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--fire);
  color: var(--dark);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--fire-hot); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 1px solid rgba(184,197,214,0.35);
  color: var(--steel);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline:hover { border-color: var(--fire); color: var(--fire); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 60% 80% at 70% 60%, rgba(255,107,0,0.12) 0%, transparent 70%),
    linear-gradient(160deg, #0A0C0F 40%, #1a1008 100%);
  border-bottom: 1px solid rgba(255,107,0,0.15);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.page-hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--fire);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: 4px;
  line-height: 0.95;
  color: var(--white);
}
.page-hero h1 span { color: var(--fire); }
.page-hero p {
  font-size: 1.1rem;
  color: var(--steel);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 24px;
  font-weight: 300;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .section-inner { padding: 70px 24px; }
  .page-hero { padding-top: 120px; padding-bottom: 60px; }
  .page-hero-inner { padding: 0 24px; }
}
