/* Pflugerville TX Concrete — Site styles */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --c-ink: #1a1a1a;
  --c-mute: #555;
  --c-bg: #ffffff;
  --c-band: #f5f3ef;
  --c-accent: #c8472b;
  --c-accent-dark: #a23720;
  --c-line: #e2ddd4;
  --max: 1100px;
  --r: 6px;
  --shadow: 0 2px 8px rgba(0,0,0,.06);
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
}
a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.band { background: var(--c-band); padding: 60px 0; }
.section { padding: 60px 0; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid var(--c-line); position: sticky; top: 0; z-index: 50; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { font-weight: 700; font-size: 18px; color: var(--c-ink); }
.brand small { color: var(--c-mute); font-weight: 400; display: block; font-size: 12px; }
.nav a { color: var(--c-ink); margin-left: 22px; font-weight: 500; font-size: 15px; }
.nav a:hover { color: var(--c-accent); text-decoration: none; }
.nav .cta { background: var(--c-accent); color: #fff; padding: 8px 14px; border-radius: var(--r); }
.nav .cta:hover { background: var(--c-accent-dark); }

@media (max-width: 700px) {
  .nav a { margin-left: 12px; font-size: 14px; }
  .nav .home, .nav .services { display: none; }
}

/* Hero */
.hero { background: linear-gradient(135deg, #2b2825 0%, #4a3f36 100%); color: #fff; padding: 70px 0; }
.hero h1 { font-size: 2.4rem; line-height: 1.15; margin: 0 0 16px; }
.hero p.lead { font-size: 1.15rem; color: #e7e2d8; max-width: 680px; margin: 0 0 28px; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .cta-row a { background: var(--c-accent); color: #fff; padding: 14px 22px; border-radius: var(--r); font-weight: 600; }
.hero .cta-row a.secondary { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); }
.hero .cta-row a:hover { background: var(--c-accent-dark); text-decoration: none; }
.hero .badges { margin-top: 26px; font-size: 14px; color: #c8c0b1; }
.hero .badges span { margin-right: 22px; }

@media (max-width: 700px) {
  .hero { padding: 50px 0; }
  .hero h1 { font-size: 1.9rem; }
}

/* Typography */
h1, h2, h3 { font-weight: 700; line-height: 1.2; margin-top: 0; }
h2 { font-size: 1.8rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
p { margin-top: 0; }

/* Grid */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* Cards */
.card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--c-mute); margin-bottom: 14px; }
.card a.more { font-weight: 600; }

/* Buttons */
.btn { display: inline-block; background: var(--c-accent); color: #fff; padding: 12px 22px; border-radius: var(--r); font-weight: 600; }
.btn:hover { background: var(--c-accent-dark); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--c-ink); border: 1px solid var(--c-line); }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { background: #fff; border-left: 4px solid var(--c-accent); padding: 18px 22px; border-radius: var(--r); box-shadow: var(--shadow); }
.testimonial p { font-style: italic; color: #333; margin-bottom: 12px; }
.testimonial .who { font-size: 14px; color: var(--c-mute); }
.testimonial .who strong { color: var(--c-ink); display: block; }
@media (max-width: 800px) { .testimonials { grid-template-columns: 1fr; } }

/* FAQ */
.faq details { border-bottom: 1px solid var(--c-line); padding: 16px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; }
.faq details[open] summary { color: var(--c-accent); }
.faq details p { margin-top: 10px; color: var(--c-mute); }

/* Lists */
ul.checks { list-style: none; padding-left: 0; }
ul.checks li { padding-left: 26px; position: relative; margin-bottom: 8px; }
ul.checks li::before { content: "✓"; color: var(--c-accent); font-weight: 700; position: absolute; left: 0; }

/* Footer */
.site-footer { background: #1a1a1a; color: #c8c0b1; padding: 50px 0 30px; margin-top: 80px; }
.site-footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; }
.site-footer a { color: #c8c0b1; display: block; padding: 4px 0; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer .bottom { grid-column: 1 / -1; border-top: 1px solid #333; padding-top: 20px; margin-top: 20px; font-size: 13px; color: #888; display: flex; justify-content: space-between; }
@media (max-width: 700px) {
  .site-footer .container { grid-template-columns: 1fr; }
  .site-footer .bottom { flex-direction: column; gap: 8px; }
}

/* Sticky CTA on mobile */
.mobile-cta { display: none; }
@media (max-width: 700px) {
  .mobile-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--c-accent); color: #fff; padding: 14px; justify-content: center; align-items: center;
    font-weight: 600; z-index: 100; box-shadow: 0 -2px 10px rgba(0,0,0,.2);
  }
  .mobile-cta a { color: #fff; text-decoration: none; }
  body { padding-bottom: 56px; }
}

/* Forms */
form .field { margin-bottom: 16px; }
form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
form input, form textarea, form select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--c-line); border-radius: var(--r);
  font-size: 16px; font-family: inherit;
}
form textarea { min-height: 120px; resize: vertical; }
form button { background: var(--c-accent); color: #fff; border: 0; padding: 14px 28px; font-size: 16px; font-weight: 600; border-radius: var(--r); cursor: pointer; }
form button:hover { background: var(--c-accent-dark); }

/* Breadcrumbs */
.breadcrumb { font-size: 14px; color: var(--c-mute); margin-bottom: 20px; }
.breadcrumb a { color: var(--c-mute); }
.breadcrumb a:hover { color: var(--c-accent); }
