/* =========================================================
   H&L Junk Removal - City landing page styles
   Lean, JS-free, mobile-first. Matches the brand
   (Oswald + Special Elite, black & white Texas aesthetic).
   Shared by all /junk-removal-*-tx/ pages.
========================================================= */

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --gray-dark: #2a2a2a;
  --gray-mid: #555555;
  --gray: #888888;
  --gray-light: #cccccc;
  --off-white: #f5f5f7;
  --white: #ffffff;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1140px;
  --space-section: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--white); color: var(--black); padding: 12px 20px;
  font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ---------------- NAV ---------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-light); transition: color 0.25s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-cta {
  font-family: 'Special Elite', monospace;
  font-size: 0.9rem; letter-spacing: 0.02em;
  background: var(--white); color: var(--black);
  padding: 11px 20px; border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); background: var(--off-white); }

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  padding: clamp(4rem, 3rem + 8vw, 8rem) 0 clamp(3rem, 2rem + 5vw, 5.5rem);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(180deg, var(--dark2), var(--black));
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 100px;
  padding: 7px 16px; margin-bottom: 26px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #ffffff; box-shadow: 0 0 10px rgba(255,255,255,0.5); }
.hero-kicker {
  display: block;
  font-family: 'Special Elite', monospace;
  font-size: clamp(0.85rem, 0.8rem + 0.3vw, 1rem);
  letter-spacing: 0.04em; color: var(--gray-light); margin-bottom: 14px;
}
.hero h1 {
  font-weight: 700; line-height: 0.98; letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 1.4rem + 6vw, 6rem);
  text-transform: uppercase; margin-bottom: 22px;
}
.hero-sub {
  max-width: 640px;
  font-size: clamp(1.02rem, 0.96rem + 0.4vw, 1.22rem);
  color: var(--gray-light); font-weight: 300; margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Special Elite', monospace;
  font-size: 1rem; letter-spacing: 0.02em;
  padding: 15px 28px; border-radius: 10px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { transform: translateY(-3px); background: var(--off-white); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-outline:hover { transform: translateY(-3px); border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ---------------- SECTIONS ---------------- */
section { padding: var(--space-section) 0; }
.section-label {
  display: block;
  font-family: 'Special Elite', monospace;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 14px;
}
.section-title {
  font-weight: 600; line-height: 1.05; letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 1.3rem + 2.4vw, 3rem);
  text-transform: uppercase; margin-bottom: 20px;
}
.lead {
  max-width: 720px;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  color: var(--gray-light); font-weight: 300;
}
.prose p { max-width: 760px; color: var(--gray-light); font-weight: 300; margin-bottom: 18px; font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--white); font-weight: 600; }

.divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); }

/* ---------------- SERVICES GRID ---------------- */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 40px;
}
.svc-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.22); background: var(--dark3); }
.svc-card h3 {
  font-size: 1.18rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.01em; margin-bottom: 10px;
}
.svc-card p { color: var(--gray); font-weight: 300; font-size: 0.97rem; }

/* ---------------- TRUST BAND ---------------- */
.band {
  background: linear-gradient(180deg, var(--dark2), var(--dark));
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trust-item h3 {
  font-family: 'Special Elite', monospace;
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px;
}
.trust-item p { color: var(--gray); font-weight: 300; font-size: 0.96rem; }

/* ---------------- NEIGHBORHOODS ---------------- */
.hood-list {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px;
}
.hood-chip {
  border: 1px solid rgba(255,255,255,0.14); border-radius: 100px;
  padding: 8px 16px; font-size: 0.9rem; color: var(--gray-light);
}

/* ---------------- FAQ (native details) ---------------- */
.faq { max-width: 820px; margin-top: 36px; }
.faq details {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 6px 0;
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0;
  font-size: 1.1rem; font-weight: 500; color: var(--white);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: 'Special Elite', monospace;
  font-size: 1.5rem; color: var(--gray); transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--white); }
.faq details p { padding: 0 0 22px; color: var(--gray-light); font-weight: 300; max-width: 720px; }

/* ---------------- CTA BAND ---------------- */
.cta-band { text-align: center; }
.cta-band h2 {
  font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em;
  font-size: clamp(2rem, 1.4rem + 3vw, 3.6rem); line-height: 1; margin-bottom: 18px;
}
.cta-band p { color: var(--gray-light); font-weight: 300; max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------------- NEARBY LINKS ---------------- */
.nearby { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.nearby a {
  border: 1px solid rgba(255,255,255,0.16); border-radius: 8px;
  padding: 10px 16px; font-size: 0.92rem; color: var(--gray-light);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.nearby a:hover { border-color: var(--white); color: var(--white); }

/* ---------------- FOOTER ---------------- */
.footer { padding: 56px 0 36px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px; padding-bottom: 28px;
}
.footer-logo img { height: 52px; width: auto; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav-link {
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray); transition: color 0.25s var(--ease);
}
.footer-nav-link:hover { color: var(--white); }
.footer-tagline { font-family: 'Special Elite', monospace; color: var(--gray-light); letter-spacing: 0.04em; }
.footer-bottom { padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-copy { color: var(--gray); font-size: 0.85rem; font-weight: 300; line-height: 1.7; }
.footer-copy a:hover { color: var(--white); }

/* ---------------- MOBILE ---------------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-top { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .svc-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { flex: 1 1 100%; }
}

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