/* Phoenix Radon Mitigation — desert palette, deliberately un-templated */
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@600;700&display=swap');

:root {
  --clay: #9c4322;
  --clay-dark: #7a3218;
  --ink: #33261d;
  --sand: #f4ecdd;
  --dun: #e7dcc4;
  --sky: #22637a;
  --sun: #d98e2b;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Trebuchet MS', Tahoma, sans-serif;
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--ink);
  background: #fff;
}
h1, h2, h3 { font-family: 'Zilla Slab', 'Rockwell', serif; color: var(--clay-dark); line-height: 1.18; }
h1 { font-size: 2.25rem; margin: 0 0 .35rem; }
h2 { font-size: 1.5rem; margin-top: 2.3rem; }
h3 { font-size: 1.12rem; }
a { color: var(--sky); }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 18px; }

/* header: single bar, brand left, nav center, phone right */
.sitehead { background: var(--ink); }
.hwrap { max-width: 1180px; margin: 0 auto; padding: 10px 18px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px 22px; }
.brand { text-decoration: none; margin-right: auto; }
.bname { display: block; font-family: 'Zilla Slab', serif; font-weight: 700; font-size: 1.3rem; color: #f6ead8; }
.btag { display: block; font-size: .66rem; color: #c9b9a4; letter-spacing: .04em; text-transform: uppercase; }
.nb ul.navroot { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.nb li { position: relative; }
.nb a { display: block; color: #f6ead8; text-decoration: none; padding: 10px 13px; font-size: .95rem; }
.nb a:hover { color: var(--sun); }
/* dropdown: rules scoped to ul.drop so the flex rule above can't win (see build lessons) */
.nb ul.drop { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 2px solid var(--ink); min-width: 265px; z-index: 60; margin: 0; padding: 4px 0; list-style: none; }
.nb li.hasdrop:hover > ul.drop, .nb li.hasdrop:focus-within > ul.drop { display: block; }
.nb ul.drop li { width: 100%; }
.nb ul.drop a { color: var(--ink); padding: 8px 14px; font-size: .9rem; }
.nb ul.drop a:hover { background: var(--sand); color: var(--clay-dark); }
.hphone { background: var(--clay); color: #fff !important; text-decoration: none; font-weight: bold; padding: 11px 18px; font-size: 1.02rem; white-space: nowrap; border-radius: 2px; }
.hphone:hover { background: var(--clay-dark); }

/* breadcrumbs */
.bc { font-size: .82rem; color: #7c6f60; padding: 10px 0 0; }
.bc a { color: #7c6f60; }

/* hero */
.hero { background: var(--sand); border-bottom: 4px solid var(--clay); padding: 30px 0 34px; }
.hero .wrap { display: flex; gap: 36px; flex-wrap: wrap; align-items: flex-start; }
.htxt { flex: 1 1 540px; }
.hsub { font-size: 1.08rem; margin: 0 0 4px; color: #55483a; }
.hsvc { font-weight: bold; color: var(--clay-dark); font-size: .93rem; letter-spacing: .015em; }
.callbig { display: inline-block; background: var(--clay); color: #fff; text-decoration: none; font-weight: bold; font-size: 1.28rem; padding: 15px 26px; margin: 16px 0 6px; border-radius: 2px; }
.callbig:hover { background: var(--clay-dark); }
.hero img { border: 3px solid #fff; box-shadow: 2px 3px 0 rgba(51,38,29,.25); margin-top: 14px; }

/* quote box */
.qbox { flex: 0 1 330px; background: #fff; border: 3px solid var(--ink); padding: 18px 20px 22px; }
.qbox h3 { margin: 0 0 4px; }
.qsmall { font-size: .82rem; color: #6c5f50; margin: 0 0 10px; }
.qbox label { display: block; font-size: .8rem; font-weight: bold; margin: 9px 0 2px; }
.qbox input, .qbox textarea, .qbox select { width: 100%; padding: 8px; border: 1px solid #a99a83; background: #fdfbf6; font-family: inherit; font-size: .95rem; }
.qbox textarea { min-height: 74px; }
.qbtn { margin-top: 13px; width: 100%; background: var(--sky); color: #fff; border: 0; padding: 13px; font-size: 1.05rem; font-weight: bold; cursor: pointer; font-family: inherit; }
.qbtn:hover { background: #174c5e; }

/* subpage hero: grid so content fills the column beside a tall form */
.hero2 { background: var(--sand); border-bottom: 4px solid var(--clay); padding: 24px 0 30px; }
.hero2 .wrap { display: grid; grid-template-columns: minmax(0,1fr) 340px; grid-template-areas: "htop qbox" "hmore qbox"; column-gap: 40px; row-gap: 8px; align-items: start; }
.hero2 .htop { grid-area: htop; }
.hero2 .qbox { grid-area: qbox; }
.hero2 .hmore { grid-area: hmore; }
.hero2 .hmore img, .hero2 .hmore table { background: #fff; }
.hero2 .hmore img { border: 3px solid #fff; box-shadow: 2px 3px 0 rgba(51,38,29,.25); }
@media (max-width: 860px) {
  .hero2 .wrap { grid-template-columns: 1fr; grid-template-areas: "htop" "qbox" "hmore"; }
}

/* sections */
section.band { padding: 8px 0 20px; }
section.band.tint { background: var(--sand); }
section.band.dark { background: var(--dun); }
.svcrow { display: flex; gap: 26px; flex-wrap: wrap; align-items: flex-start; margin-top: 12px; }
.svcrow img { flex: 0 1 300px; border: 3px solid #fff; box-shadow: 2px 3px 0 rgba(51,38,29,.22); }
.svcrow .svctxt { flex: 1 1 420px; }
.trust3 p { margin: .5em 0 1.1em; }
.midcta { background: var(--sky); color: #fff; text-align: center; padding: 24px 18px; margin: 26px 0; }
.midcta a.callbig { background: var(--sun); color: var(--ink); margin: 10px 0 0; }
.midcta a.callbig:hover { background: #c07d20; }

/* tables */
table.areas, table.costs { border-collapse: collapse; width: 100%; margin: 14px 0; background: #fff; }
table.areas td, table.costs td, table.costs th { border: 1px solid #cbbda3; padding: 8px 11px; font-size: .95rem; }
table.costs th { background: var(--ink); color: #f6ead8; text-align: left; }
table.costs tr:nth-child(even) td { background: var(--sand); }

/* faq */
.faq h3 { margin: 1.4rem 0 .3rem; color: var(--sky); }

/* reviews */
.rev { border-left: 5px solid var(--sun); background: var(--sand); padding: 12px 16px; margin: 14px 0; }
.rev .who { font-size: .84rem; color: #6c5f50; }

/* callout */
.note { border: 2px dashed var(--clay); background: #fdf7ec; padding: 12px 16px; margin: 16px 0; }

/* footer: dark, stacked link lists (one per line) */
footer { background: var(--ink); color: #d9cbb8; margin-top: 40px; padding: 30px 0 18px; }
footer h4 { color: #f6ead8; font-family: 'Zilla Slab', serif; margin: 0 0 8px; }
footer a { color: #e8b877; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.fcols { display: flex; gap: 36px; flex-wrap: wrap; }
.fcol { flex: 1 1 240px; }
.fcol ul { list-style: none; margin: 0; padding: 0; }
.fcol ul li { display: block; padding: 3px 0; }
.fphone a { font-size: 1.15rem; font-weight: bold; }
.fsmall { font-size: .82rem; color: #a8977f; }
.flegal { border-top: 1px solid #574838; margin-top: 22px; padding-top: 14px; font-size: .8rem; color: #a8977f; }

/* sticky mobile call bar */
.mcall { display: none; }
@media (max-width: 760px) {
  .hwrap { justify-content: center; text-align: center; }
  .brand { margin-right: 0; }
  .hphone { order: 3; }
  .mcall { display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--clay); text-align: center; }
  .mcall a { display: block; color: #fff; font-weight: bold; font-size: 1.12rem; padding: 14px; text-decoration: none; }
  body { padding-bottom: 54px; }
  h1 { font-size: 1.7rem; }
  .qbox { flex-basis: 100%; }
}
