/* ============================================================
   Overcast Industriez — Shared stylesheet for city/service
   landing pages (auto/residential/ceramic x Indio/La Quinta/
   Palm Desert). Design tokens and component patterns mirror
   index.html exactly so these pages read as the same site.
   ============================================================ */

:root {
  --black: #080808;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --red: #c8102e;
  --red-dark: #9b0c22;
  --red-glow: rgba(200,16,46,0.25);
  --white: #f0ece6;
  --white-dim: rgba(240,236,230,0.6);
  --white-dimmer: rgba(240,236,230,0.25);
  --border: rgba(240,236,230,0.08);
  --border-red: rgba(200,16,46,0.4);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id], div[id] { scroll-margin-top: 72px; }
body { background: var(--black); color: var(--white); font-family: 'Barlow', sans-serif; font-weight: 300; overflow-x: hidden; }

/* NAV (identical to homepage) */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 72px; background: rgba(8,8,8,0.9); border-bottom: 1px solid rgba(200,16,46,0.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: background 0.3s; }
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 0; list-style: none; height: 100%; }
.nav-links li { height: 100%; display: flex; align-items: center; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white-dim); text-decoration: none; padding: 0 18px; height: 100%; display: flex; align-items: center; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-links a:hover { color: var(--white); border-bottom-color: var(--red); }
.nav-cta { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); background: var(--red); border: none; padding: 11px 26px; cursor: pointer; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--red-dark); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* BREADCRUMB */
.breadcrumb-bar { padding: 96px 48px 0; max-width: 1400px; margin: 0 auto; }
.breadcrumb-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; color: var(--white-dimmer); }
.breadcrumb-list a { color: var(--white-dim); text-decoration: none; transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--red); }
.breadcrumb-list li:last-child { color: var(--red); }

/* HERO (landing pages) */
.lp-hero { position: relative; padding: 40px 48px 90px; overflow: hidden; }
.lp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.lp-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.28) saturate(0.5); }
.lp-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.75) 55%, rgba(8,8,8,0.55) 100%); }
.lp-hero-inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding-top: 48px; max-width: 760px; }
.lp-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 20px; }
.lp-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 6vw, 76px); line-height: 0.98; letter-spacing: 1px; color: var(--white); }
.lp-sub { margin-top: 24px; font-size: 18px; line-height: 1.85; color: rgba(240,236,230,0.85); max-width: 620px; }
.lp-badges { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.badge { border: 1px solid var(--border-red); padding: 9px 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); white-space: nowrap; }
.lp-cta-row { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.btn-primary { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; letter-spacing: 2.5px; text-transform: uppercase; background: var(--red); color: var(--white); border: none; padding: 16px 40px; cursor: pointer; text-decoration: none; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; letter-spacing: 2.5px; text-transform: uppercase; background: transparent; color: var(--white); border: 1px solid rgba(240,236,230,0.35); padding: 16px 40px; cursor: pointer; text-decoration: none; transition: border-color 0.2s, color 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* SECTION shell */
.lp-section { padding: 90px 48px; max-width: 1300px; margin: 0 auto; }
.lp-section.tight { padding-top: 0; }
.lp-section.alt { background: var(--black-2); max-width: none; padding-left: 48px; padding-right: 48px; }
.lp-section.alt .lp-section-inner { max-width: 1300px; margin: 0 auto; }
.section-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--red); font-weight: 600; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(34px, 3.6vw, 50px); letter-spacing: 1px; line-height: 1.05; color: var(--white); margin-top: 10px; }
.lp-lede { margin-top: 22px; font-size: 16px; line-height: 1.9; color: var(--white-dim); max-width: 780px; }

/* BENEFIT / LOCAL LIST */
.lp-benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 40px; }
.lp-benefit { background: var(--black-2); padding: 28px 30px; border-top: 2px solid transparent; transition: border-color 0.3s, background 0.3s; }
.lp-section.alt .lp-benefit { background: var(--black-3); }
.lp-benefit:hover { border-color: var(--red); }
.lp-benefit p { font-size: 14.5px; line-height: 1.75; color: var(--white-dim); }
.lp-benefit strong { color: var(--white); font-weight: 600; }

/* PROCESS STEPS */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 40px; }
.lp-step { background: var(--black-2); padding: 32px 26px; }
.lp-step-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: rgba(200,16,46,0.35); line-height: 1; }
.lp-step-title { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-top: 14px; font-weight: 600; }
.lp-step-body { font-size: 13px; line-height: 1.7; color: var(--white-dim); margin-top: 8px; }

/* TRUST STRIP */
.lp-trust { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; padding: 56px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); max-width: 1400px; margin: 0 auto; }
.lp-trust-item { display: flex; flex-direction: column; gap: 4px; }
.lp-trust-num { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--white); line-height: 1; }
.lp-trust-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dimmer); }
.lp-trust-brands { display: flex; gap: 28px; flex-wrap: wrap; margin-left: auto; }
.brand-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: rgba(240,236,230,0.75); text-transform: uppercase; }
.lp-trust-link { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dim); text-decoration: none; border-bottom: 1px solid var(--border-red); padding-bottom: 3px; transition: color 0.2s; }
.lp-trust-link:hover { color: var(--red); }

/* FAQ (identical accordion pattern to homepage) */
.lp-faq-list { max-width: 900px; margin-top: 40px; }
.faq-item { border-top: 1px solid var(--border); padding: 24px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; letter-spacing: 0.5px; font-weight: 600; color: var(--white); text-transform: uppercase; gap: 20px; }
.faq-toggle { width: 26px; height: 26px; border: 1px solid var(--border-red); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 17px; flex-shrink: 0; transition: background 0.2s; font-weight: 300; }
.faq-item.open .faq-toggle { background: var(--red); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 420px; }
.faq-answer p { font-size: 14px; line-height: 1.9; color: var(--white-dim); padding-top: 14px; }

/* RELATED LINKS */
.lp-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.lp-link-card { background: var(--black-2); padding: 26px 28px; border-top: 2px solid transparent; transition: border-color 0.3s, background 0.3s; text-decoration: none; display: block; }
.lp-section.alt .lp-link-card { background: var(--black-3); }
.lp-link-card:hover { border-color: var(--red); background: var(--black-3); }
.lp-link-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--white); }
.lp-link-sub { font-size: 13px; color: var(--white-dim); margin-top: 6px; line-height: 1.6; }
.lp-link-arrow { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-top: 14px; display: inline-block; }

/* FINAL CTA BAND */
.lp-cta-band { background: var(--red); padding: 64px 48px; text-align: center; }
.lp-cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px); color: #fff; letter-spacing: 1px; }
.lp-cta-band p { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 1px; color: rgba(255,255,255,0.85); margin-top: 12px; text-transform: uppercase; }
.lp-cta-band .lp-cta-row { justify-content: center; margin-top: 28px; }
.lp-cta-band .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.lp-cta-band .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }
.lp-cta-band .btn-primary { background: #080808; }
.lp-cta-band .btn-primary:hover { background: #1a1a1a; }

/* FOOTER (identical to homepage) */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 48px 64px; display: flex; justify-content: space-between; align-items: center; }
.footer-logo img { height: 48px; width: auto; display: block; }
.footer-copy { font-size: 11px; color: var(--white-dimmer); letter-spacing: 1px; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dimmer); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-logo img { height: 36px; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex !important; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: rgba(8,8,8,0.99); border-bottom: 1px solid rgba(200,16,46,0.25); padding: 8px 0; gap: 0; height: auto; z-index: 200; }
  .nav-links.nav-open { display: flex; }
  .nav-links li { height: auto; }
  .nav-links a { padding: 14px 24px; border-bottom: none; border-left: 2px solid transparent; height: auto; font-size: 15px; }
  .nav-links a:hover { border-left-color: var(--red); border-bottom: none; }

  .breadcrumb-bar { padding: 78px 20px 0; }
  .lp-hero { padding: 20px 20px 56px; }
  .lp-hero-inner { padding-top: 28px; }
  .lp-h1 { font-size: clamp(38px, 11vw, 56px); }
  .lp-sub { font-size: 15.5px; }
  .lp-cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { text-align: center; padding: 14px 24px; font-size: 13px; }

  .lp-section { padding: 56px 20px; }
  .lp-section.alt { padding-left: 20px; padding-right: 20px; }
  .lp-benefit-grid { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-trust { padding: 40px 20px; flex-direction: column; align-items: flex-start; gap: 28px; }
  .lp-trust-brands { margin-left: 0; gap: 20px; }
  .lp-links-grid { grid-template-columns: 1fr; }
  .lp-cta-band { padding: 48px 20px; }
  .lp-cta-band .lp-cta-row { flex-direction: column; }

  footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 480px) {
  .lp-h1 { font-size: clamp(34px, 13vw, 44px); }
  .lp-benefit, .lp-link-card, .lp-step { padding: 22px 18px; }
}
