/* Fort Bend Dumpster Rental — base stylesheet
   Single static stylesheet, no build step, no external font/JS dependency.
   Palette: steel-blue chrome + safety-orange accent (roll-off container
   orange), distinct from the other 5 trade sites' palettes per
   site-template-reference.md §2. Contrast-checked: white text on --teal
   (#c1440e) is ~5.1:1, passes WCAG AA. */

:root {
  --navy: #1c2b3a;
  --blue: #3d5873;
  --teal: #c1440e;
  --amber: #f0a202;
  --bg: #f7f9fb;
  --white: #ffffff;
  --ink: #1c2733;
  --muted: #56636f;
  --border: #dfe6ec;
  --radius: 10px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
header.site {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}
header.site .brand {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
header.site .brand span { color: var(--teal); }
header.site nav { display: flex; gap: 16px; flex-wrap: wrap; }
header.site nav a { color: #f3d7c6; font-size: 0.95rem; }
header.site nav a:hover { color: var(--white); }
header.site .call-btn {
  background: var(--teal);
  color: var(--white);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}
header.site .call-btn:hover { background: #9c380b; text-decoration: none; }

.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 56px 20px 48px;
}
.hero .wrap { display: flex; flex-direction: column; gap: 18px; }
.hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  width: fit-content;
}
.hero h1 { font-size: 2.2rem; margin: 0; max-width: 760px; }
.hero p.lead { font-size: 1.1rem; color: #f0dcd0; max-width: 620px; margin: 0; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
}
.btn.primary { background: var(--teal); color: var(--white); }
.btn.primary:hover { background: #9c380b; text-decoration: none; }
.btn.ghost { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn.ghost:hover { background: rgba(255,255,255,0.16); text-decoration: none; }
.hero .subnote { font-size: 0.9rem; color: #e8c3ac; }

/* Hero with a full-bleed background photo (homepage only, once a hero
   photo exists — see images/ folder note). Not applied yet on this site;
   left in place so wiring in a photo later is a one-line class change. */
.hero.with-photo {
  background-image:
    linear-gradient(90deg, rgba(15,23,32,0.90) 0%, rgba(15,23,32,0.72) 38%, rgba(15,23,32,0.28) 68%, rgba(15,23,32,0.05) 100%),
    url('/images/hero-dumpster-photo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 540px;
  display: flex;
  align-items: center;
  padding: 56px 20px;
}
@media (max-width: 820px) {
  .hero.with-photo {
    background-image:
      linear-gradient(180deg, rgba(15,23,32,0.88) 0%, rgba(15,23,32,0.8) 55%, rgba(15,23,32,0.65) 100%),
      url('/images/hero-dumpster-photo.jpg');
    min-height: 460px;
  }
}

/* Sections */
section { padding: 48px 20px; }
section.alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 6px;
}
h2 { font-size: 1.65rem; margin: 0 0 20px; color: var(--navy); }
h3 { font-size: 1.15rem; margin: 0 0 8px; color: var(--navy); }

/* Grid cards */
.grid { display: grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) {
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  header.site .bar { justify-content: center; text-align: center; }
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.card .icon { font-size: 1.6rem; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 6px 0 0; font-size: 0.95rem; }

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  padding: 18px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--muted);
}
.trust-strip strong { color: var(--navy); }

/* FAQ — native <details>/<summary> accordion, no JS needed */
.faq-item { border-bottom: 1px solid var(--border); padding: 14px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-item summary {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 10px 0 0; color: var(--muted); }

/* How It Works */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.step-card .step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: #fbe4d4; color: var(--teal); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.step-card h3 { font-size: 1.02rem; }
.step-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }

/* Pricing table */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.price-table th, .price-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.price-table th { background: var(--navy); color: var(--white); font-weight: 700; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price { font-weight: 700; color: var(--teal); font-size: 1.1rem; white-space: nowrap; }
.price-table tr.popular td { background: #fff6f0; }
.price-badge { display: inline-block; background: var(--teal); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; margin-left: 8px; vertical-align: middle; }

/* Accepted / prohibited items table */
.items-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.items-table th, .items-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.92rem; vertical-align: top; }
.items-table th { background: var(--navy); color: var(--white); }
.items-table tr:last-child td { border-bottom: none; }
.items-table td.yes { color: #1e6734; }
.items-table td.no { color: #b3261e; }

/* Founder note (honest placeholder until real reviews exist) */
.founder-note {
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 24px 28px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  text-align: left;
}
.founder-note .fn-heading { font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.founder-note p { margin: 0 0 12px; color: var(--ink); }
.founder-note .fn-cta { margin: 0; font-weight: 600; color: var(--navy); }
.founder-note .fn-cta a { color: var(--navy); text-decoration: underline; }

/* Sticky mobile CTA bar */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--navy);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}
.sticky-cta-call { background: var(--teal); color: var(--white); }
.sticky-cta-call:hover { background: #9c380b; text-decoration: none; }
.sticky-cta-quote { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.sticky-cta-quote:hover { background: rgba(255,255,255,0.18); text-decoration: none; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 66px; }
}

/* Area links */
.area-links { display: flex; flex-wrap: wrap; gap: 10px; }
.area-links a {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.92rem;
}
.area-links a:hover { border-color: var(--teal); text-decoration: none; }

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 44px 20px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #f0dcd0; margin-bottom: 18px; }

/* Contact form */
form.lead-form { display: grid; gap: 12px; max-width: 480px; }
form.lead-form label { font-size: 0.88rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 4px; }
form.lead-form input, form.lead-form select, form.lead-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}
form.lead-form .disclaimer { font-size: 0.78rem; color: var(--muted); }
form.lead-form .hp-field { position: absolute; left: -9999px; top: -9999px; }
form.lead-form button[disabled] { opacity: 0.6; cursor: not-allowed; }
.form-status { margin-top: 12px; padding: 11px 14px; border-radius: 8px; font-size: 0.9rem; display: none; }
.form-status.visible { display: block; }
.form-status.success { background: #e5f5ea; color: #246036; }
.form-status.error { background: #fdecea; color: #b3261e; }

/* Breadcrumb */
.crumb { font-size: 0.85rem; color: var(--muted); padding: 14px 20px 0; max-width: var(--maxw); margin: 0 auto; }
.crumb a { color: var(--muted); }

/* Footer */
footer.site {
  background: #101820;
  color: #b7c3cd;
  padding: 40px 20px 24px;
  font-size: 0.9rem;
}
footer.site .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
footer.site h4 { color: var(--white); font-size: 0.95rem; margin: 0 0 10px; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 6px; }
footer.site a { color: #b7c3cd; }
footer.site .bottom {
  max-width: var(--maxw);
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 720px) {
  footer.site .wrap { grid-template-columns: 1fr 1fr; }
}
.placeholder-flag {
  background: #fff3cd;
  color: #7a5b00;
  border: 1px dashed #e2a03f;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.82em;
}
