/* ── Talon Works Manufacturing ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:        #0b0d11;
  --bg2:       #111318;
  --bg3:       #181b22;
  --blue:      #378ADD;
  --blue-dim:  #1e4f80;
  --blue-glow: rgba(55,138,221,0.18);
  --gold:      #c8952a;
  --text:      #e8eaf0;
  --muted:     #6b7280;
  --border:    rgba(255,255,255,0.07);
  --radius:    6px;
  --max:       1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,13,17,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { border-bottom: 2px solid var(--blue); padding-bottom: 2px; }
.nav-cta {
  background: var(--blue); color: #fff;
  padding: 9px 22px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; transition: background 0.2s;
}
.nav-cta:hover { background: #2a6fb5; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ── PAGE OFFSET ── */
.page-body { padding-top: 68px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #2a6fb5; }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-glow); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px; display: block;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--muted); max-width: 560px;
  line-height: 1.7; margin-bottom: 48px;
}

/* ── DIVIDER ── */
.gold-rule {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  margin-top: 100px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 280px; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-col p { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg2); border-bottom: 1px solid var(--border);
    padding: 20px 24px; gap: 20px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
