/* South Central Junk Removal
   Brand: black / red #e21b1b / white, shield logo. Display type is Barlow Condensed (echoes
   the logo lettering), body is Barlow. Dark bands carry the logo's honeycomb texture. */
:root {
  --ink: #1c1c1e;
  --ink-soft: #55555a;
  --muted: #8a8a8f;
  --accent: #e21b1b;
  --accent-dark: #b81414;
  --accent-glow: rgba(226, 27, 27, 0.35);
  --black: #0b0b0c;
  --charcoal: #1f1f22;
  --charcoal-2: #2a2a2e;
  --paper: #f5f4f2;
  --bg: #ffffff;
  --line: #e6e6e8;
  --radius: 6px;
  --max: 1140px;
  --display: "Barlow Condensed", "Arial Narrow", Helvetica, Arial, sans-serif;
  --body: "Barlow", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --hex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.5'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.5'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
}

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

/* Eyebrow label above section titles */
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  color: #fff;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.site-header .wrap {
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
  transition: min-height 0.25s ease;
}

.site-header.scrolled .wrap { min-height: 80px; }

.brand { display: block; flex: 0 0 auto; }

.brand img { width: 136px; height: auto; transition: width 0.25s ease; }

.site-header.scrolled .brand img { width: 104px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: var(--radius);
  padding: 9px 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 10px 13px;
  text-decoration: none;
  color: #e8e8e8;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta):not(.nav-phone)::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover { color: #fff; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: #fff; }

.site-nav a.nav-phone {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin-left: 10px;
  color: #fff;
}

.site-nav a.nav-phone::before { content: "☎"; margin-right: 8px; color: var(--accent); }

.nav-cta {
  margin-left: 8px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius);
  padding: 12px 22px !important;
  box-shadow: 0 6px 18px var(--accent-glow);
  transition: transform 0.15s ease, background 0.15s ease;
}

.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--charcoal) center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 96px 0 72px;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(11, 11, 12, 0.92) 100%);
  z-index: -1;
}

.hero .wrap { width: 100%; }

.hero-logo {
  width: min(440px, 76vw);
  height: auto;
  margin: 0 auto 30px;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.6));
}

.hero .eyebrow { color: #ff5c5c; }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin: 0 auto 18px;
  max-width: 900px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.18rem;
  color: #e9e9e9;
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero p a { color: #fff; }

.hero .btn { margin: 0 6px 12px; }

/* Trust strip under the hero buttons */
.trust {
  list-style: none;
  margin: 34px auto 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 34px;
  max-width: 900px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8d8d8;
}

.trust li::before { content: "✓"; color: var(--accent); margin-right: 8px; font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 8px 22px var(--accent-glow);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 26px var(--accent-glow); }

.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.7); color: #fff; box-shadow: none; }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; box-shadow: none; }

/* ---------- Sections ---------- */
section { padding: 88px 0; text-align: center; }

section.alt { background: var(--charcoal) var(--hex); color: #fff; }
section.alt .lede { color: #cfcfd3; }
section.alt .eyebrow { color: #ff5c5c; }

section.panel { background: var(--paper); }
section.panel > .wrap { background: #fff; padding: 60px 56px; border-radius: var(--radius); box-shadow: var(--shadow); }

h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin: 0 0 14px; }

h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--accent);
  margin: 18px auto 0;
  border-radius: 2px;
}

.two-col h2::after, .contact-grid h2::after { margin-left: 0; }

.lede { color: var(--ink-soft); max-width: 680px; margin: 0 auto 48px; font-size: 1.12rem; }

/* ---------- Service cards (dark band) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 38px 28px 32px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card:hover { transform: translateY(-6px); border-color: var(--accent); background: rgba(255, 255, 255, 0.06); }

.card .icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: #fff;
  background: rgba(226, 27, 27, 0.12);
}

.card .icon svg { width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.card h3 { margin: 0 0 10px; font-size: 1.5rem; }

.card p { margin: 0 0 18px; color: #d3d3d7; }

.card > a {
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.card > a::after { content: " →"; }
.card > a:hover { color: #ff7070; }

/* Cards on light sections (recurring-pickup tiers) */
section:not(.alt) .card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
section:not(.alt) .card h3 { color: var(--accent); }
section:not(.alt) .card p { color: var(--ink-soft); }
section:not(.alt) .card:hover { border-color: var(--accent); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-bottom: 44px;
}

.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #000; }

.gallery img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.5s ease, opacity 0.3s ease; }

.gallery figure:hover img { transform: scale(1.06); opacity: 0.92; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
  position: relative;
}

.step { padding: 0 12px; position: relative; }

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}

.step h3 { margin: 0 0 8px; font-size: 1.45rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* ---------- Checklist, note ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px;
  text-align: left;
  font-weight: 500;
}

.checklist li { padding-left: 32px; position: relative; }

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note {
  background: #fff5f5;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-top: 30px;
  text-align: left;
}

section.alt .note { background: rgba(255, 255, 255, 0.06); color: #f1f1f1; display: block; max-width: 720px; margin: 36px auto 0; text-align: center; border-left: 0; border-top: 3px solid var(--accent); border-radius: 0 0 var(--radius) var(--radius); }

/* ---------- Two-column feature ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}

.two-col h2 { font-size: clamp(2rem, 3.2vw, 2.7rem); }
.two-col .lede { margin-left: 0; margin-bottom: 30px; }

/* Photo with an offset red frame behind it */
.two-col img { height: auto; position: relative; border-radius: var(--radius); box-shadow: var(--shadow); }
.two-col .frame { position: relative; }
.two-col .frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 3px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

/* ---------- Map ---------- */
.map { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* Static map image (2x) centred on the business; the circle is sized to the real radius. */
.map-image { width: 100%; height: 440px; object-fit: cover; object-position: center; }

.map-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--accent);
  border-radius: 50%;
  background: rgba(226, 27, 27, 0.08);
  box-shadow: 0 0 0 6px rgba(226, 27, 27, 0.12);
  pointer-events: none;
}

.map-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  background: var(--accent);
  border: 2px solid #fff;
  border-radius: 50%;
}

.map-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  padding: 6px 12px;
  background: rgba(11, 11, 12, 0.85);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.map-credit {
  position: absolute;
  right: 10px;
  top: 8px;
  margin: 0;
  font-size: 0.72rem;
  color: #555;
  background: rgba(255, 255, 255, 0.8);
  padding: 2px 8px;
  border-radius: 3px;
}

.map-credit a { color: #555; }

/* ---------- Quote form ---------- */
.quote-form { max-width: 640px; text-align: left; }

.form-row { margin-bottom: 20px; }

.form-row label { display: block; font-weight: 600; margin-bottom: 7px; }

.form-row .hint { font-weight: 400; color: var(--ink-soft); font-size: 0.92rem; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #c9c9cc;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(226, 27, 27, 0.15);
}

/* Photo drop zone: the native file input stays for accessibility, the label is the target */
.dropzone {
  display: block;
  border: 2px dashed #c9c9cc;
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.dropzone:hover, .dropzone.drag { border-color: var(--accent); background: #fff5f5; }

.dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

.dropzone strong { display: block; font-family: var(--display); font-size: 1.35rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.dropzone strong::before { content: "📷"; display: block; font-size: 1.7rem; margin-bottom: 6px; }
.dropzone span { display: block; color: var(--ink-soft); font-size: 0.95rem; font-weight: 400; max-width: 420px; margin: 0 auto; }

.previews { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 10px; margin-top: 12px; }
.previews img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.previews-count { margin: 8px 0 0; font-size: 0.92rem; color: var(--ink-soft); }

.quote-form button.btn { cursor: pointer; width: 100%; }
.quote-form button.btn:disabled { opacity: 0.7; cursor: progress; transform: none; }

.hp-field { position: absolute; left: -9999px; }

.form-status { margin-top: 14px; font-weight: 600; }
.form-status.ok { color: #166534; }
.form-status.err { color: var(--accent-dark); }

/* ---------- Contact info ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
  text-align: left;
}

.contact-grid h2 { font-size: 2.1rem; }

section .contact-grid .card { background: var(--paper); border: 0; box-shadow: none; padding: 28px; transform: none; }
section .contact-grid .card h3 { color: var(--ink); font-size: 1.15rem; margin: 22px 0 6px; }
section .contact-grid .card h3:first-child { margin-top: 0; color: var(--accent); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--black) var(--hex); color: #fff; padding: 96px 0; }
.cta-band h2 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }
.cta-band p { color: #cfcfd3; font-size: 1.15rem; margin: 0 0 32px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: #b9b9be;
  padding: 64px 0 0;
  font-size: 0.96rem;
  border-top: 3px solid var(--accent);
}

.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: #ff7070; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  text-align: left;
  padding-bottom: 48px;
}

.footer-logo { width: 200px; height: auto; margin-bottom: 16px; }

.footer-grid h3 { color: #fff; font-size: 1.15rem; letter-spacing: 0.12em; margin-bottom: 14px; }

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }

.footer-phone { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 1.9rem; color: #fff; margin: 4px 0 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 0.85rem;
  color: #85858a;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
}

/* ---------- Mobile action bar ---------- */
.action-bar { display: none; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .gallery img, .nav-cta { transition: none; }
}

/* ---------- Placeholders (kept for any page still using them) ---------- */
.photo-placeholder {
  background: repeating-linear-gradient(45deg, #e5e7eb, #e5e7eb 12px, #f3f4f6 12px, #f3f4f6 24px);
  border: 2px dashed #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-weight: 600;
  text-align: center;
  padding: 20px;
  min-height: 260px;
}

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .nav-toggle { display: block; }

  .site-header .wrap, .site-header.scrolled .wrap { min-height: 76px; }
  .brand img, .site-header.scrolled .brand img { width: 100px; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    border-top: 1px solid #2a2a2e;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }

  .site-nav.open { display: block; }

  .site-nav ul { flex-direction: column; align-items: stretch; padding: 10px 24px 22px; }

  .site-nav a { padding: 14px 6px; border-bottom: 1px solid #222; font-size: 1.15rem; }
  .site-nav a:not(.nav-cta):not(.nav-phone)::after { display: none; }
  .site-nav a.nav-phone { margin: 0; }
  .nav-cta { margin: 14px 0 0; text-align: center; }

  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col .frame { margin: 0 18px 18px 0; }

  section { padding: 60px 0; }
  section.panel > .wrap { padding: 40px 22px; }

  .hero { padding: 64px 0 48px; min-height: 0; }
  .hero-logo { margin-bottom: 22px; }
  .trust { gap: 6px 18px; font-size: 0.9rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Map at three-quarter scale on phones; the circle scales with it so it stays true. */
  .map-image { height: 330px; }
  .map-circle { transform: translate(-50%, -50%) scale(0.75); }

  /* Sticky call / quote bar; body padding keeps the footer clear of it */
  body { padding-bottom: 68px; }
  .action-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--black);
    border-top: 1px solid #2a2a2e;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .action-bar a {
    display: block;
    text-align: center;
    padding: 12px 8px;
    border-radius: var(--radius);
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
  }
  .action-bar a.primary { background: var(--accent); border-color: var(--accent); }
}
