/* ============================================
   OWEN'S JUNK & DEBRIS REMOVAL — DESIGN SYSTEM
   Industrial work-truck aesthetic.
   ============================================ */

:root {
  /* Color tokens */
  --navy-deep: #0f2438;
  --navy: #1b3a5c;
  --steel-blue: #2e6da4;
  --charcoal: #20242a;
  --safety-orange: #d4571f;
  --safety-orange-bright: #e8722f;
  --paper: #f4f2ed;
  --white: #ffffff;
  --gray-mid: #6b7280;
  --gray-line: #d8dce0;
  --success-green: #2f7d4f;

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-stamp: 'Courier Prime', 'Courier New', monospace;

  --radius: 4px;
  --shadow-card: 0 2px 8px rgba(15, 36, 56, 0.12);
  --shadow-lift: 0 8px 24px rgba(15, 36, 56, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em 0;
  color: var(--navy-deep);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: 0.01em;}

p { margin: 0 0 1em 0; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}
.section--tight { padding: 44px 0; }
.section--navy { background: var(--navy-deep); color: var(--paper); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }

/* ---------- Eyebrow / stamped label ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-stamp);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--safety-orange);
  border: 1.5px dashed var(--safety-orange);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
  transform: rotate(-1deg);
}
.section--navy .eyebrow { color: var(--safety-orange-bright); border-color: var(--safety-orange-bright); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1140px;
  margin: 0 auto;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand img { height: 64px; width: auto; border-radius: 3px; }

nav.main-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
nav.main-nav a {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  border-radius: 3px;
  transition: background 0.15s ease;
}
nav.main-nav a:hover, nav.main-nav a.active { background: rgba(255,255,255,0.1); color: var(--safety-orange-bright); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-call-header {
  background: var(--safety-orange);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.btn-call-header:hover { background: var(--safety-orange-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--paper);
  color: var(--paper);
  font-size: 1.4rem;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--safety-orange);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--safety-orange-bright); transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-dark {
  background: var(--navy-deep);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--steel-blue) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 64px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 56px;
}
.hero h1 { color: var(--white); margin-bottom: 0.4em; }
.hero .lede { font-size: 1.15rem; color: #d6e2ec; max-width: 520px; margin-bottom: 1.6em; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 4px solid rgba(255,255,255,0.15);
  transform: rotate(0.6deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.hero-strip {
  background: var(--safety-orange);
  color: var(--navy-deep);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
}
.hero-strip span { margin: 0 18px; }

/* ---------- Trust bar ---------- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
  background: var(--white);
  padding: 28px 24px;
  border-bottom: 1px solid var(--gray-line);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
}
.trust-item .icon { font-size: 1.4rem; color: var(--safety-orange); }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px;
  border-top: 4px solid var(--safety-orange);
}
.card h3 { margin-bottom: 0.4em; }
.card p { color: #444; font-size: 0.96rem; margin-bottom: 0; }
.card .icon-badge {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-deep);
  color: var(--safety-orange-bright);
  border-radius: 6px;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.photo-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.photo-card .cap { padding: 14px 16px; font-size: 0.9rem; color: var(--gray-mid); }

/* ---------- Load gauge (signature pricing element) ---------- */
.load-gauge-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.load-gauge {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  position: relative;
  border: 2px solid var(--navy-deep);
}
.load-gauge.full { border-color: var(--safety-orange); }
.load-gauge .gauge-label {
  font-family: var(--font-stamp);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.load-gauge .gauge-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 6px 0 14px;
}
.load-gauge.full .gauge-price { color: var(--safety-orange); }
.gauge-bar {
  width: 100%;
  height: 22px;
  background: #e7e9ec;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--gray-line);
}
.gauge-fill { height: 100%; background: var(--steel-blue); }
.load-gauge.full .gauge-fill { background: var(--safety-orange); width: 100% !important; }
.gauge-desc { font-size: 0.92rem; color: #444; }

/* ---------- FAQ accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--gray-line);
  padding: 18px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-deep);
  text-transform: none;
  letter-spacing: 0;
}
.faq-q .plus { color: var(--safety-orange); font-size: 1.4rem; transition: transform 0.2s ease; flex-shrink: 0; margin-left: 16px;}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: #444;
  font-size: 0.96rem;
}
.faq-item.open .faq-a { max-height: 500px; padding-top: 12px; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: var(--navy-deep);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-line);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--steel-blue); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--charcoal);
  color: #b6bcc4;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.footer-grid a { color: #b6bcc4; display: block; padding: 4px 0; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--safety-orange-bright); }
.footer-bottom {
  border-top: 1px solid #3a3f47;
  padding-top: 20px;
  font-size: 0.84rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #888e96;
}

/* ---------- Service area chips ---------- */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-chip {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-deep);
}

/* ---------- Mobile sticky call bar ---------- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--safety-orange);
  color: var(--white);
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  padding: 14px 0;
  z-index: 200;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.25);
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .brand img { height: 50px; }
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-inner { flex-wrap: wrap; }
  nav.main-nav.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--navy-deep);
    padding: 8px 0;
  }
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 36px; }
  .hero-photo { order: -1; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .load-gauge-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-call { display: block; }
  body { padding-bottom: 54px; }
  .section { padding: 48px 0; }
}

@media (min-width: 881px) and (max-width: 1080px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
