@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  --black: #060606;
  --steel: #0f1113;
  --plate: #181b1e;
  --iron: #222629;
  --wire: #2a2f33;
  --amber: #e8830a;
  --amber-hot: #ffa020;
  --white: #f2ede4;
  --gray: #7a8088;
  --light: #bec4ca;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(6,6,6,0.97);
  border-bottom: 1px solid rgba(232,131,10,0.12);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 5px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--amber); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber); }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--amber);
  padding: 11px 26px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--amber-hot); }

/* TICKER */
.ticker {
  background: var(--amber);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* BUTTONS */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--amber);
  padding: 15px 36px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--amber-hot); transform: translateY(-1px); }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--wire);
  padding: 15px 36px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* SECTION */
section { padding: 120px 48px; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 160px 48px 80px;
  background: var(--steel);
  border-bottom: 1px solid var(--wire);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: attr(data-word);
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 220px;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  letter-spacing: -5px;
  line-height: 1;
}
.page-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
}
.page-hero h1 span { color: var(--amber); }
.page-hero p {
  font-size: 17px;
  color: var(--light);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 24px;
  font-weight: 300;
}

/* FOOTER */
footer {
  background: var(--steel);
  border-top: 1px solid var(--wire);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 72px 48px 48px;
}
.footer-brand-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 5px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand-logo span { color: var(--amber); }
.footer-brand p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid var(--wire);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.5px;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* FORM ELEMENTS */
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}
.field-group input,
.field-group select,
.field-group textarea {
  background: var(--plate);
  border: 1px solid var(--wire);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--amber); }
.field-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8088' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field-group select option { background: var(--plate); color: var(--white); }
.field-group textarea { resize: vertical; min-height: 120px; }

.form-status {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 14px 16px;
  display: none;
}
.form-status.success {
  background: rgba(232,131,10,0.1);
  border: 1px solid var(--amber);
  color: var(--amber);
  display: block;
}
.form-status.error {
  background: rgba(200,50,50,0.1);
  border: 1px solid rgba(200,50,50,0.5);
  color: #e87a7a;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 18px 20px; }
  .nav-links { display: none; }
  section { padding: 72px 20px; }
  .page-hero { padding: 130px 20px 60px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 20px 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
}

/* ── STICKY MOBILE CALL BAR (site-wide) ── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--amber);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 15px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
  .mobile-call-bar { display: block; }
  footer { padding-bottom: 76px; }
}
