/* ── HOME PAGE ── */

.hero {
  background: var(--steel);
  position: relative;
  overflow: hidden;
  padding: 80px 2.5rem 72px;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(255,255,255,0.018) 40px, rgba(255,255,255,0.018) 41px);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-text { flex: 1; min-width: 0; }
.hero-gold { color: var(--gold); }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 9vw, 78px);
  line-height: 0.92;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
  flex-shrink: 0;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 46px);
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* SPEC BAR */
.spec-bar {
  background: var(--steel-mid);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.spec-item {
  padding: 16px 18px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 12px;
}
.spec-item:last-child { border-right: none; }
.spec-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; }
.spec-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  line-height: 1.3;
}
.spec-value {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
  line-height: 1.3;
}

/* ── SERVICES (What We Do) ── */
.section-pad {
  padding: 56px 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.container { max-width: 1100px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}

/* Black boxes, white text, yellow hover */
.service-tile {
  padding: 28px 24px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  text-decoration: none;
  color: #fff;
  background: #111;
  display: block;
  position: relative;
  transition: background 0.22s ease, color 0.22s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.service-tile:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,154,60,0.35);
  z-index: 1;
}
.st-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  margin-bottom: 10px;
  transition: color 0.22s ease;
}
.service-tile:hover .st-num { color: rgba(26,26,26,0.25); }
.service-tile h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  transition: color 0.22s ease;
}
.service-tile:hover h4 { color: #1a1a1a; }
.service-tile p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  transition: color 0.22s ease;
}
.service-tile:hover p { color: rgba(26,26,26,0.75); }
.st-arrow {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 16px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s, color 0.22s;
}
.service-tile:hover .st-arrow { opacity: 1; transform: translateX(3px); color: #1a1a1a; }

/* ── METALS ── */
.metals-section {
  background: #f5f5f3;
  padding: 56px 2.5rem;
}
.metals-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.metals-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  max-width: 1100px;
  margin: 0 auto;
}
/* Black boxes, white text, yellow hover — same style */
.metal-card {
  background: #111;
  padding: 28px 14px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: block;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transition: background 0.22s ease, color 0.22s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.metal-card:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,154,60,0.35);
  z-index: 1;
  position: relative;
}
.metal-card i {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
  transition: transform 0.2s, color 0.22s ease;
}
.metal-card:hover i { transform: scale(1.15); color: #1a1a1a; }
.metal-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
  transition: color 0.22s ease;
}
.metal-card:hover h3 { color: #1a1a1a; }
.metal-card p {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  transition: color 0.22s ease;
}
.metal-card:hover p { color: rgba(26,26,26,0.75); }

/* CTA BANNER */
.cta-banner {
  background: var(--steel);
  padding: 60px 2.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* Phone link style */
a[href^="tel"] {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
a[href^="tel"]:hover { color: var(--gold-light); text-decoration: underline; }

/* ── TABLET ── */
@media (max-width: 1024px) {
  .metals-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-bar { grid-template-columns: repeat(2, 1fr); }
  .spec-item:nth-child(2) { border-right: none; }
  .spec-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .spec-item:nth-child(3), .spec-item:nth-child(4) { border-bottom: none; }
}
@media (max-width: 768px) {
  .hero { padding: 48px 1.25rem 40px; }
  .hero-content { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-sub { max-width: 100%; }
  .hero-stats { flex-direction: row; align-items: flex-start; width: 100%; justify-content: space-between; gap: 16px; }
  .hero-stat { text-align: left; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-outline-light { flex: 1; min-width: 0; }
  .section-pad { padding: 40px 1.25rem; }
  .metals-section { padding: 40px 1.25rem; }
  .metals-header { margin-bottom: 18px; }
  .metals-header .btn-primary { width: auto; }
  .cta-banner { padding: 44px 1.25rem; }
  .cta-content { flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; }
  .cta-actions .btn-primary, .cta-actions .btn-outline-light { flex: 1; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .metals-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-bar { grid-template-columns: 1fr; }
  .spec-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .spec-item:last-child { border-bottom: none; }
}
@media (max-width: 380px) {
  .hero-stats { gap: 10px; }
  .hero-stat-num { font-size: 28px; }
}
