:root {
  --bg: #0e0e0e;
  --surface: #161618;
  --surface-2: #1c1c1f;
  --border: #2a2a2d;
  --copper: #e85d2d;
  --copper-dim: rgba(232, 93, 45, 0.15);
  --brass: #c4a882;
  --text: #f0ede8;
  --text-2: #a8a49e;
  --text-3: #5a5752;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Karla', sans-serif;
  --max-w: 1180px;
  --section-pad: clamp(72px, 10vw, 120px);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--copper);
  background: var(--copper-dim);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 93, 45, 0.3);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-2);
}

/* ── HERO ── */
.hero {
  padding-top: 80px;
  padding-bottom: 0;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 100px) 32px clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--copper);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 28px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin-right: 28px;
}

/* ── METAL SHOWCASE ── */
.metal-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.metal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.metal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
}
.card-1::before { background: #b8c4c8; }
.card-2::before { background: #8a8a8a; }
.card-3::before { background: #b8935a; }
.card-4::before { background: #3d3d3d; }
.card-bar {
  height: 3px;
  margin-bottom: 10px;
  border-radius: 2px;
}
.stainless { background: linear-gradient(90deg, #b8c4c8, #dce6e9); }
.aluminum { background: linear-gradient(90deg, #8a8a8a, #b0b0b0); }
.brass { background: linear-gradient(90deg, #b8935a, #d4af6a); }
.steel { background: linear-gradient(90deg, #3d3d3d, #5a5a5a); }
.metal-card span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.04em;
}
.card-1 { grid-column: 1 / 2; }
.card-2 { grid-column: 2 / 3; }
.card-3 { grid-column: 1 / 2; }
.card-4 { grid-column: 2 / 3; }

/* ── HERO BOTTOM RULE ── */
.hero-bottom-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--copper) 0%, var(--copper) 240px, var(--border) 240px);
}

/* ── SECTION SHARED ── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--copper);
}

/* ── WHAT WE DO ── */
.what-we-do {
  padding: var(--section-pad) 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
.work-item {
  background: var(--bg);
  padding: 36px 32px;
}
.work-icon {
  margin-bottom: 16px;
}
.work-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.work-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
}
.work-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.work-cta span {
  font-size: 13px;
  color: var(--text-3);
}
.cta-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 93, 45, 0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.cta-link:hover { border-color: var(--copper); }

/* ── PROCESS ── */
.process {
  padding: var(--section-pad) 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.process-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 56px;
  letter-spacing: -0.015em;
}
.process-headline em {
  font-style: normal;
  color: var(--copper);
}
.steps {
  display: flex;
  gap: 0;
  position: relative;
}
.step {
  flex: 1;
  position: relative;
  padding-right: 32px;
}
.step:last-child { padding-right: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin-bottom: 16px;
}
.step-connector {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px;
  height: 1px;
  background: var(--copper);
}
.step-body h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-2);
}

/* ── DIFFERENTIATORS ── */
.differentiators {
  padding: var(--section-pad) 32px;
}
.diff-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diff-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.015em;
}
.diff-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diff-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.diff-item:first-child { border-top: 1px solid var(--border); }
.diff-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.diff-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
}

/* ── LOCATION ── */
.location {
  padding: var(--section-pad) 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.location-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  min-width: 60px;
}
.contact-row a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-row a:hover { color: var(--copper); }
.contact-row span {
  font-size: 14px;
  color: var(--text-2);
}
.contact-secondary { color: var(--text-3); font-size: 12px; }

/* ── MAP GRAPHIC ── */
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}
.grid-line {
  position: absolute;
  background: var(--border);
}
.h1 { top: 33.3%; left: 0; right: 0; height: 1px; }
.h2 { top: 66.6%; left: 0; right: 0; height: 1px; }
.h3 { top: 0; left: 0; right: 0; height: 1px; }
.v1 { left: 33.3%; top: 0; bottom: 0; width: 1px; }
.v2 { left: 66.6%; top: 0; bottom: 0; width: 1px; }
.v3 { left: 0; top: 0; bottom: 0; width: 1px; }
.service-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 93, 45, 0.2);
}
.ring-1 { width: 55%; height: 55%; }
.ring-2 { width: 80%; height: 80%; border-color: rgba(232, 93, 45, 0.1); }
.ring-3 { width: 100%; height: 100%; border-color: rgba(232, 93, 45, 0.05); }
.map-pins {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pin-primary {
  position: absolute;
  left: 40%;
  top: 38%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pin-dot {
  width: 14px;
  height: 14px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232, 93, 45, 0.2);
}
.pin-ring {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(232, 93, 45, 0.4);
  border-radius: 50%;
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
.pin-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-2);
  text-align: center;
  background: rgba(14,14,14,0.8);
  padding: 3px 8px;
  white-space: nowrap;
}
.pin-nyc {
  position: absolute;
  left: 20%;
  top: 52%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pin-dot-sm {
  width: 8px;
  height: 8px;
  background: var(--brass);
  border-radius: 50%;
}
.pin-label-sm {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── CLOSING ── */
.closing {
  padding: var(--section-pad) 32px;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-rule {
  width: 40px;
  height: 1px;
  background: var(--copper);
  margin: 0 auto 40px;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 32px;
}
.closing-meta {
  display: flex;
  justify-content: center;
}
.closing-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--copper);
  text-transform: uppercase;
  border: 1px solid rgba(232, 93, 45, 0.3);
  padding: 8px 20px;
  background: var(--copper-dim);
}

/* ── FOOTER ── */
.site-footer {
  padding: 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand .logo-mark {
  font-size: 14px;
  width: 24px;
  height: 24px;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-3);
  margin-left: 8px;
  padding-left: 20px;
  border-left: 1px solid var(--border);
}
.footer-copy {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
  }
  .hero-visual { display: none; }
  .diff-inner, .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps {
    flex-direction: column;
    gap: 32px;
  }
  .step { padding-right: 0; }
  .step-connector { display: none; }
  .work-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .topbar-inner { padding: 12px 20px; }
  .footer-copy { margin-left: 0; }
  .footer-tagline { display: none; }
}