/* Conroe Concrete Works — distinct template (slate + safety orange, serif display) */
:root {
  --steel: #2b3440;
  --steel-deep: #1c232c;
  --orange: #e8641b;
  --orange-deep: #c24f10;
  --sand: #f4f1ec;
  --line: #dcd7cf;
  --txt: #2a2f36;
  --txt-mut: #5a636e;
  --w: #ffffff;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--w);
  color: var(--txt);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, .display { font-family: Georgia, "Times New Roman", serif; }

a { color: var(--orange-deep); }

/* Top strip */
.topstrip {
  background: var(--steel-deep);
  color: #cfd6de;
  font-size: 14.5px;
  padding: 7px 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topstrip b a { color: #ffb26b; text-decoration: none; font-size: 15.5px; }

/* Masthead */
.masthead {
  background: var(--w);
  border-bottom: 3px solid var(--orange);
  padding: 16px 20px;
}
.masthead-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.logo { text-decoration: none; color: var(--steel); }
.logo .l1 { font-family: Georgia, serif; font-weight: 700; font-size: 24px; letter-spacing: 0.2px; display: block; line-height: 1.1; }
.logo .l1 em { color: var(--orange); font-style: normal; }
.logo .l2 { font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--txt-mut); }

.navrow { display: flex; gap: 20px; flex-wrap: wrap; }
.navrow a { color: var(--steel); text-decoration: none; font-weight: 600; font-size: 15.5px; border-bottom: 2px solid transparent; padding-bottom: 2px; }
.navrow a:hover { border-color: var(--orange); }

.callchip {
  background: var(--orange);
  color: var(--w);
  text-decoration: none;
  font-weight: 800;
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 16px;
  white-space: nowrap;
}
.callchip:hover { background: var(--orange-deep); }

/* Hero — split with quote panel */
.intro {
  background: linear-gradient(120deg, var(--steel-deep), var(--steel));
  color: var(--w);
  padding: 58px 20px;
}
.intro-cols {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.intro h1 { font-size: clamp(30px, 4.6vw, 44px); line-height: 1.14; }
.intro .sub { margin-top: 16px; color: #c9d2dc; font-size: 18px; max-width: 560px; }
.intro .marks { margin-top: 22px; color: #aeb9c6; font-size: 15px; display: flex; flex-direction: column; gap: 6px; }

.quotecard {
  background: var(--w);
  color: var(--txt);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 10px 34px rgba(0,0,0,0.3);
}
.quotecard h2 { font-size: 21px; color: var(--steel); margin-bottom: 4px; }
.quotecard .qc-sub { font-size: 14.5px; color: var(--txt-mut); margin-bottom: 16px; }
.quotecard a.bigcall {
  display: block;
  background: var(--orange);
  color: var(--w);
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 19px;
  text-decoration: none;
  margin-bottom: 10px;
}
.quotecard a.bigcall:hover { background: var(--orange-deep); }
.quotecard a.alt { display: block; text-align: center; font-size: 15px; }

/* Bands & sections */
.zone { max-width: 1100px; margin: 0 auto; padding: 54px 20px; }
.zone-title { font-size: clamp(24px, 3.2vw, 32px); color: var(--steel); margin-bottom: 8px; }
.zone-kick { color: var(--orange-deep); font-size: 13.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.zone-lead { color: var(--txt-mut); max-width: 700px; margin-bottom: 30px; }

.svc-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.svc {
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  background: var(--sand);
  padding: 24px;
  border-radius: 0 0 8px 8px;
}
.svc h3 { font-size: 20px; color: var(--steel); margin-bottom: 8px; }
.svc h3 a { color: inherit; text-decoration: none; }
.svc p { font-size: 15.5px; color: var(--txt-mut); }
.svc .go { font-weight: 700; font-size: 14.5px; text-decoration: none; display: inline-block; margin-top: 10px; }

/* Article/prose */
.copy { max-width: 780px; }
.copy h2 { color: var(--steel); font-size: 26px; margin: 36px 0 12px; }
.copy h3 { color: var(--steel); font-size: 20px; margin: 24px 0 8px; }
.copy p { margin: 13px 0; }
.copy ul, .copy ol { margin: 13px 0 13px 26px; }
.copy li { margin: 6px 0; }

/* Cost table */
.costs { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15.5px; }
.costs th { background: var(--steel); color: var(--w); text-align: left; padding: 11px 14px; }
.costs td { padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--w); }
.costs tr:nth-child(even) td { background: var(--sand); }

/* FAQ */
.qa details { border: 1px solid var(--line); border-radius: 8px; margin: 10px 0; background: var(--w); }
.qa summary { cursor: pointer; padding: 15px 18px; font-weight: 700; color: var(--steel); }
.qa .a { padding: 0 18px 16px; color: var(--txt-mut); }

/* CTA band */
.orangeband { background: var(--orange); color: var(--w); padding: 46px 20px; text-align: center; }
.orangeband h2 { font-size: clamp(23px, 3vw, 30px); }
.orangeband p { margin: 10px auto 20px; max-width: 540px; color: #ffe4d1; }
.orangeband a.inv {
  background: var(--w);
  color: var(--orange-deep);
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  font-size: 17px;
}

/* Town chips */
.arealist { display: flex; flex-wrap: wrap; gap: 10px; }
.arealist a {
  border: 1.5px solid var(--steel);
  color: var(--steel);
  padding: 7px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
}
.arealist a:hover { background: var(--steel); color: var(--w); }

/* Process rows */
.rows { display: grid; gap: 14px; }
.row { display: flex; gap: 16px; background: var(--sand); border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; align-items: flex-start; }
.row .n { background: var(--steel); color: var(--w); min-width: 34px; height: 34px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: Georgia, serif; }
.row h3 { font-size: 17px; color: var(--steel); }
.row p { font-size: 14.5px; color: var(--txt-mut); }

/* Forms */
.reqform { display: grid; gap: 13px; max-width: 540px; }
.reqform label { font-weight: 700; font-size: 14px; color: var(--steel); }
.reqform input, .reqform select, .reqform textarea {
  width: 100%; padding: 12px; border: 1.5px solid var(--line); border-radius: 6px; font-size: 16px; font-family: inherit;
}
.reqform button {
  background: var(--steel); color: var(--w); border: none; padding: 14px; border-radius: 6px; font-weight: 800; font-size: 16.5px; cursor: pointer;
}
.reqform button:hover { background: var(--steel-deep); }

/* Footer */
.foot { background: var(--steel-deep); color: #aab4bf; padding: 44px 20px 26px; font-size: 15px; }
.foot-cols { max-width: 1100px; margin: 0 auto; display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.foot h4 { color: var(--w); font-family: Georgia, serif; margin-bottom: 10px; font-size: 16px; }
.foot a { color: #aab4bf; text-decoration: none; display: inline-block; margin: 3px 0; }
.foot a:hover { color: var(--w); }
.foot .bignum { color: #ffb26b; font-size: 21px; font-weight: 800; }
.foot-base { max-width: 1100px; margin: 28px auto 0; border-top: 1px solid #37424f; padding-top: 16px; font-size: 13px; color: #7c8894; }

/* Mobile fixed call */
.fixedcall {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--orange); color: var(--w); text-align: center;
  padding: 16px; font-weight: 800; font-size: 18px; text-decoration: none;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2); z-index: 90;
}

@media (max-width: 760px) {
  .intro-cols { grid-template-columns: 1fr; }
  .navrow { display: none; }
  .fixedcall { display: block; }
  body { padding-bottom: 64px; }
}

/* Interior page head */
.pagehead { background: var(--steel); color: var(--w); padding: 40px 20px; border-bottom: 4px solid var(--orange); }
.pagehead .ph-in { max-width: 1100px; margin: 0 auto; }
.pagehead h1 { font-size: clamp(26px, 4vw, 36px); max-width: 760px; line-height: 1.18; }
.pagehead p { margin-top: 10px; color: #c9d2dc; max-width: 640px; }
.pagehead .phcta { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.bcrumb { font-size: 13px; color: var(--txt-mut); margin-bottom: 16px; }
.bcrumb a { text-decoration: none; }
