/* =====================================================================
   Four Guys Junk Removal — style.css
   One stylesheet for every page.

   PALETTE (five colors only)
   #1C3A2E  deep utility green   — headers, footer, primary surfaces
   #F7F6F3  off-white            — page background
   #E4572E  warm safety orange   — CTA buttons + phone numbers ONLY
   #232320  near-black           — body text
   #6B6B63  warm grey            — secondary text, rules
   (#152C23 is the same green, darkened, used for the nav strip + footer)
   ===================================================================== */

:root {
  --green:        #1C3A2E;
  --green-deep:   #152C23;
  --bg:           #F7F6F3;
  --orange:       #E4572E;
  --ink:          #232320;
  --grey:         #6B6B63;

  --rule:         rgba(107, 107, 99, .30);
  --rule-dark:    rgba(247, 246, 243, .16);
  --on-green:     rgba(247, 246, 243, .84);
  --on-green-dim: rgba(247, 246, 243, .64);
  --tint:         rgba(28, 58, 46, .055);

  --sans: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --cond: "Barlow Condensed", "Barlow", "Arial Narrow", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--cond);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: .004em;
  margin: 0;
  text-wrap: balance;
}
h3 { line-height: 1.1; }

p { margin: 0; }

/* ---------- focus + motion ---------- */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 600;
  padding: 12px 18px;
  text-decoration: none;
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1200px) { .container { padding: 0 40px; } }

/* Vertical rhythm: every section pays its own top padding; a ruled section
   also pays an equal margin ABOVE the rule so the hairline sits centred in
   the gap. Only the last section in <main> pays bottom padding. Deliberately
   avoids `.section + .section` overrides that would out-specify .section--ruled. */
.section { padding: clamp(3.25rem, 8vw, 5.5rem) 0 0; }
main > .section:last-child { padding-bottom: clamp(3.25rem, 8vw, 5.5rem); }
.section--ruled {
  margin-top: clamp(3.25rem, 8vw, 5.5rem);
  border-top: 1px solid var(--rule);
}

.section__head { max-width: 58ch; margin-bottom: clamp(1.75rem, 4.5vw, 2.5rem); }
.section__head h2 { font-size: clamp(2rem, 6.5vw, 3.1rem); }
.section__head p { margin-top: .75rem; color: var(--grey); font-size: 1.1rem; max-width: 56ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .95rem 1.5rem;
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: outline-color .12s linear, background-color .12s linear, transform .08s linear;
}
.btn svg { flex: none; }

.btn--call {
  background: var(--orange);
  color: var(--ink);          /* 5.0:1 on orange — white would fail AA */
  border-color: var(--orange);
}
.btn--call:hover  { outline: 3px solid var(--ink); outline-offset: 2px; }
.btn--call:active { transform: translateY(1px); }

.btn--ghost {
  background: transparent;
  color: var(--bg);
  border-color: rgba(247, 246, 243, .55);
}
.btn--ghost:hover  { border-color: var(--bg); background: rgba(247, 246, 243, .09); }
.btn--ghost:active { transform: translateY(1px); }

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--grey);
}
.btn--ghost-dark:hover  { border-color: var(--green); background: var(--tint); }
.btn--ghost-dark:active { transform: translateY(1px); }

.btn--sm { padding: .6rem 1rem; font-size: 1rem; gap: 8px; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--green);
  border-bottom: 1px solid var(--rule-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
}
.wordmark {
  display: block;
  font-family: var(--cond);
  font-weight: 600;
  color: var(--bg);
  text-decoration: none;
  line-height: .94;
  text-transform: uppercase;
}
.wordmark__a { display: block; font-size: 1.4rem; font-weight: 600; letter-spacing: .015em; }
.wordmark__b {
  display: block;
  font-style: normal;
  font-size: .875rem;
  letter-spacing: .085em;
  color: var(--on-green-dim);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn--ghost { display: none; }
@media (min-width: 900px) {
  .header-actions .btn--ghost { display: inline-flex; }
}
@media (max-width: 379px) {
  .wordmark__a { font-size: 1.25rem; }
  .wordmark__b { font-size: .8rem; letter-spacing: .06em; }
  .header-actions .btn--call { padding: .6rem .8rem; font-size: .975rem; }
  .header-actions .btn--call svg { display: none; }
}

/* ---------- nav strip ---------- */
.site-nav { background: var(--green-deep); }
.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.site-nav ul::-webkit-scrollbar { display: none; }
.site-nav a {
  display: block;
  white-space: nowrap;
  padding: 13px 15px;
  font-size: .975rem;
  font-weight: 500;
  color: var(--on-green);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.site-nav li:first-child a { padding-left: 0; }
@media (min-width: 768px) { .site-nav li:first-child a { padding-left: 15px; } }
.site-nav a:hover { color: var(--bg); border-bottom-color: var(--rule-dark); }
.site-nav a[aria-current="page"] { color: var(--bg); border-bottom-color: var(--orange); }

/* ---------- hero (homepage) ---------- */
.hero {
  background: var(--green);
  color: var(--bg);
  padding: clamp(3rem, 9vw, 6rem) 0 clamp(2.75rem, 7vw, 4.5rem);
}
.hero h1 {
  font-size: clamp(3rem, 11.5vw, 6rem);
  max-width: 17ch;
  letter-spacing: -.006em;
}
.hero__sub {
  margin-top: 1.25rem;
  max-width: 42ch;
  font-size: clamp(1.0625rem, 3.4vw, 1.3rem);
  color: var(--on-green);
}
.hero__label {
  margin-top: clamp(2rem, 5.5vw, 3rem);
  font-size: 1rem;
  font-weight: 500;
  color: var(--on-green-dim);
}
.hero__phone {
  display: inline-block;
  margin-top: .2rem;
  font-family: var(--cond);
  font-weight: 600;
  font-size: clamp(3rem, 13vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.01em;
  color: var(--orange);
  text-decoration: none;
}
.hero__phone:hover {
  text-decoration: underline;
  text-decoration-thickness: .045em;
  text-underline-offset: .07em;
}
.hero__note {
  margin-top: 1.1rem;
  max-width: 40ch;
  font-size: .975rem;
  color: var(--on-green-dim);
}

/* ---------- page head (interior pages) ---------- */
.page-head {
  background: var(--green);
  color: var(--bg);
  padding: clamp(1.5rem, 4vw, 2.25rem) 0 clamp(2.5rem, 6.5vw, 4rem);
}
.crumbs {
  font-size: .95rem;
  color: var(--on-green-dim);
  margin-bottom: clamp(1.25rem, 4vw, 2rem);
}
.crumbs a { color: var(--on-green); text-decoration: none; border-bottom: 1px solid var(--rule-dark); }
.crumbs a:hover { color: var(--bg); border-bottom-color: var(--bg); }
.crumbs span { padding: 0 .45em; }
.page-head h1 {
  font-size: clamp(2.4rem, 8.5vw, 4.4rem);
  max-width: 18ch;
}
.page-head__sub {
  margin-top: 1.1rem;
  max-width: 46ch;
  font-size: clamp(1.05rem, 3.2vw, 1.2rem);
  color: var(--on-green);
}
.page-head .btn-row { margin-top: 1.75rem; }

/* ---------- trust bar ---------- */
.trustbar { border-bottom: 1px solid var(--rule); }
.trustbar ul {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 560px)  { .trustbar ul { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .trustbar ul { grid-template-columns: repeat(4, 1fr); } }
.trustbar li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 15px 0;
  font-weight: 500;
  border-top: 1px solid var(--rule);
}
.trustbar li::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: .52em;
  background: var(--green);
}

/* ---------- services grid (hairline grid, no cards) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 680px)  { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  padding: 28px 24px 30px;
  transition: background-color .12s linear;
}
.svc h3 { font-size: 1.6rem; margin-bottom: .55rem; max-width: 20ch; }
.svc p { color: var(--grey); flex: 1; margin-bottom: 1.35rem; }
.svc__link {
  align-self: flex-start;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--rule);
}
.svc__link::after { content: ""; position: absolute; inset: 0; }
.svc:hover { background: var(--tint); }
.svc:hover .svc__link { border-bottom-color: var(--green); }
.svc:focus-within { outline: 3px solid var(--orange); outline-offset: -3px; }
.svc:focus-within .svc__link:focus-visible { outline: none; }

/* ---------- how it works ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  border-top: 3px solid var(--green);
  padding: 16px 0 26px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--green);
}
.step h3 { font-size: 1.45rem; margin: .3rem 0 .45rem; }
.step p { color: var(--grey); max-width: 42ch; }

/* ---------- service area ---------- */
.towns {
  columns: 2;
  column-gap: 20px;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
@media (min-width: 560px)  { .towns { column-gap: 30px; } }
@media (min-width: 680px)  { .towns { columns: 3; } }
@media (min-width: 1000px) { .towns { columns: 4; } }
.towns li {
  break-inside: avoid;
  position: relative;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
}
.towns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.08em;
  width: 10px;
  height: 2px;
  background: var(--green);
}
.towns-note { color: var(--grey); max-width: 52ch; }

/* ---------- prose + item lists (service pages) ---------- */
.prose p { max-width: 66ch; font-size: 1.09rem; margin-bottom: 1.15em; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: .2em; }
.prose a:hover { text-decoration-color: var(--green); }

.items { list-style: none; margin: 0; padding: 0; max-width: 62ch; }
.items li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-top: 1px solid var(--rule);
  font-weight: 500;
}
.items li:last-child { border-bottom: 1px solid var(--rule); }
.items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.42em;
  width: 13px;
  height: 2px;
  background: var(--green);
}

.callout {
  border-left: 4px solid var(--green);
  padding: 2px 0 2px 18px;
  margin-top: 1.75rem;
  max-width: 62ch;
  color: var(--grey);
}

/* ---------- other services list ---------- */
.other-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 700px) { .other-list { grid-template-columns: 1fr 1fr; } }
.other-list a {
  display: block;
  background: var(--bg);
  padding: 17px 20px;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 1.35rem;
  text-decoration: none;
  transition: background-color .12s linear;
}
.other-list a:hover { background: var(--tint); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 70ch; }
.faq-item { border-top: 1px solid var(--rule); padding: 26px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item h2 { font-size: clamp(1.5rem, 4.6vw, 2rem); margin-bottom: .5rem; }
.faq-item p { max-width: 66ch; }

.nope { list-style: none; margin: 0; padding: 0; max-width: 62ch; }
.nope li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-top: 1px solid var(--rule);
  font-weight: 500;
}
.nope li:last-child { border-bottom: 1px solid var(--rule); }
.nope li::before,
.nope li::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 1.38em;
  width: 14px;
  height: 2px;
  background: var(--grey);
}
.nope li::before { transform: rotate(45deg); }
.nope li::after  { transform: rotate(-45deg); }

/* ---------- final CTA band ---------- */
.cta {
  background: var(--green);
  color: var(--bg);
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.cta h2 { font-size: clamp(2.2rem, 7.5vw, 3.6rem); max-width: 17ch; }
.cta p { margin-top: 1rem; max-width: 44ch; font-size: 1.15rem; color: var(--on-green); }
.cta .hero__phone { margin-top: 1.5rem; font-size: clamp(2.6rem, 11vw, 4.5rem); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--green-deep);
  color: var(--on-green);
  padding: clamp(2.75rem, 6vw, 4rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
@media (min-width: 700px)  { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; } }
.site-footer h2 {
  font-size: 1.2rem;
  color: var(--bg);
  margin-bottom: .85rem;
}
.site-footer .wordmark { margin-bottom: 1rem; }
.footer-nap { font-style: normal; line-height: 1.75; }
.footer-phone {
  display: inline-block;
  margin: .35rem 0 .15rem;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 1.7rem;       /* large text — keeps orange-on-green at AA */
  line-height: 1.1;
  color: var(--orange);
  text-decoration: none;
}
.footer-phone:hover { text-decoration: underline; text-underline-offset: .1em; }
.site-footer a { color: var(--on-green); }
.footer-links { list-style: none; margin: 0; padding: 0; line-height: 1.9; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--bg); text-decoration: underline; text-underline-offset: .2em; }
.footer-serving {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-dark);
  font-size: .95rem;
  color: var(--on-green-dim);
  max-width: 90ch;
}
.footer-legal {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--on-green-dim);
}

/* =====================================================================
   BELOW: styles for the two sections that are COMMENTED OUT in index.html
   (Before/After gallery, Reviews). Uncomment the markup in index.html
   only once there are at least 6 real job photos and real Google reviews.
   Leaving the CSS here costs nothing and keeps the file in one place.
   ===================================================================== */

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 640px)  { .ba-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }
.ba-item { background: var(--bg); padding: 16px; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ba-pair figure { margin: 0; }
.ba-pair img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ba-pair figcaption {
  margin-top: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--grey);
}
.ba-item p { margin-top: 12px; color: var(--grey); font-size: .975rem; }

.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 700px)  { .reviews { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { background: var(--bg); padding: 26px 24px; }
.review blockquote { margin: 0 0 1rem; font-size: 1.09rem; }
.review cite { font-style: normal; font-weight: 600; }
.review .review-meta { display: block; color: var(--grey); font-size: .95rem; }
