/* Roseville Parcel Book — drawing-sheet layout, authored for this domain only. */
:root{
  --ink:#17231f;
  --field:#f2f4ef;
  --sheet:#fbfcf9;
  --steel:#2b4d5e;
  --steel-deep:#16303c;
  --creek:#1f6f62;
  --brick:#a2482a;
  --rule:#c6d0c8;
  --quiet:#586761;
}
*{box-sizing:border-box}
body{
  margin:0;
  background:var(--field);
  color:var(--ink);
  font:1rem/1.7 ui-sans-serif,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
h1,h2,h3{
  font-family:"Iowan Old Style",Charter,"Bitstream Charter",Cambria,Georgia,"Times New Roman",serif;
  font-weight:600;
  line-height:1.24;
  overflow-wrap:anywhere;
  margin:0 0 .55em;
}
h1{font-size:clamp(1.5rem,4.3vw,2.25rem);letter-spacing:-.008em}
h2{font-size:clamp(1.16rem,3.1vw,1.5rem)}
h3{font-size:1.05rem}
p{margin:0 0 1.05em}
a{color:var(--creek)}
a:hover{color:var(--brick)}
img{max-width:100%;height:auto;display:block}

/* title block ---------------------------------------------------------- */
.sheet-head{background:var(--sheet);border-bottom:3px double var(--steel);padding:1.1rem 1rem .75rem}
.sheet-in{max-width:69rem;margin:0 auto}
.blockname{
  font-family:"Iowan Old Style",Charter,"Bitstream Charter",Cambria,Georgia,"Times New Roman",serif;
  font-size:1.42rem;
  color:var(--ink);
  text-decoration:none;
  display:inline-block;
  letter-spacing:.005em;
  border-bottom:2px solid var(--brick);
  padding-bottom:.06rem;
}
.blockname b{font-weight:600;color:var(--steel)}
.blocknote{
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
  font-size:.7rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--quiet);
  margin:.4rem 0 .75rem;
  overflow-wrap:anywhere;
}
.lotnav ul{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.25rem .35rem}
.lotnav a{
  display:block;
  color:var(--steel);
  background:var(--field);
  text-decoration:none;
  font-size:.83rem;
  line-height:1.35;
  padding:.27rem .55rem;
  border:1px solid var(--rule);
  overflow-wrap:anywhere;
}
.lotnav a:hover{background:var(--steel);border-color:var(--steel);color:var(--sheet)}
.lotnav a[aria-current="page"]{background:var(--brick);border-color:var(--brick);color:#fff;font-weight:600}

/* survey tick rule ------------------------------------------------------ */
.tickrule{
  height:12px;
  background:
    repeating-linear-gradient(90deg,var(--steel) 0 1px,transparent 1px 16px),
    linear-gradient(180deg,var(--sheet) 0 6px,var(--creek) 6px 8px,var(--sheet) 8px 12px);
}

main{max-width:69rem;margin:0 auto;padding:1.6rem 1rem 2.8rem}

/* parcel row (homepage photographs) ------------------------------------ */
.parcelrow{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(15.5rem,1fr));
  gap:1.2rem;
  margin:0 0 2.3rem;
}
.parcel{position:relative;background:var(--sheet);border:1px solid var(--rule);padding:.7rem .7rem .45rem}
.parcel::before,.parcel::after{
  content:"";position:absolute;width:13px;height:13px;pointer-events:none;
}
.parcel::before{top:-1px;left:-1px;border-top:3px solid var(--brick);border-left:3px solid var(--brick)}
.parcel::after{bottom:-1px;right:-1px;border-bottom:3px solid var(--brick);border-right:3px solid var(--brick)}
.parcel>a{text-decoration:none;color:inherit;display:block}
.parcel img{aspect-ratio:8/5;object-fit:cover}
.lottag{
  display:block;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
  font-size:.68rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--steel);
  margin:.65rem 0 .3rem;
}
.parcel h2{font-size:1.1rem;margin:0 0 .35rem}
.parcel .brief{font-size:.92rem;color:#3c4a43;margin:0 0 .55rem}
.credit{
  font-size:.74rem;
  line-height:1.5;
  color:var(--quiet);
  margin:.35rem 0 .35rem;
  overflow-wrap:anywhere;
}
.credit a{color:var(--quiet)}

/* opening ---------------------------------------------------------------- */
.opening{max-width:45rem;margin:0 0 2.3rem}
.overline{
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
  font-size:.7rem;
  letter-spacing:.17em;
  text-transform:uppercase;
  color:var(--brick);
  margin:0 0 .5rem;
  overflow-wrap:anywhere;
}
.opening .lede{font-size:1.07rem;color:#2d3a34}
.schedule{
  border:1px solid var(--rule);
  background:var(--sheet);
  border-top:5px solid var(--steel);
  padding:1.15rem 1.15rem 1.05rem;
  margin:0 0 2.3rem;
}
.schedule ul{
  list-style:none;
  margin:.6rem 0 0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(13rem,1fr));
  gap:.25rem .9rem;
}
.schedule li{border-bottom:1px dotted var(--rule);padding:.34rem 0}
.schedule a{text-decoration:none;font-weight:600}

/* article sheet ---------------------------------------------------------- */
.sheet{max-width:45rem;margin:0 auto 2.1rem}
.sheet figure{margin:0 0 1.3rem}
.sheet figcaption{font-size:.75rem;color:var(--quiet);margin-top:.45rem;overflow-wrap:anywhere}
.sheet h2{margin-top:1.75em;padding:0 0 .3rem;border-bottom:1px solid var(--rule)}
.sheet.guide h2{
  border-bottom:none;
  border-left:4px solid var(--creek);
  padding:.05rem 0 .05rem .65rem;
}
.limits{
  list-style:none;
  margin:0 0 1.15em;
  padding:.85rem 1rem;
  background:var(--sheet);
  border:1px solid var(--rule);
}
.limits li{padding:.3rem 0;border-bottom:1px dotted var(--rule);overflow-wrap:anywhere}
.limits li:last-child{border-bottom:none}
.limits b{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;color:var(--steel)}
.sourcenote{
  font-size:.86rem;
  line-height:1.6;
  color:#39463f;
  background:var(--sheet);
  border:1px solid var(--rule);
  border-left:5px solid var(--brick);
  padding:.75rem .85rem;
  margin-top:1.7rem;
  overflow-wrap:anywhere;
}
.sourcenote span{
  display:block;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
  font-size:.68rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--quiet);
  margin-bottom:.3rem;
}
.adjacent{
  max-width:45rem;
  margin:0 auto 2.1rem;
  font-size:.93rem;
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  padding:.85rem 0;
}
.adjacent ul{list-style:none;margin:.45rem 0 0;padding:0;display:flex;flex-wrap:wrap;gap:.35rem .9rem}
.adjacent a{overflow-wrap:anywhere}

/* enquiry panel ---------------------------------------------------------- */
.enquiry{
  max-width:45rem;
  margin:0 auto;
  background:var(--sheet);
  border:1px solid var(--rule);
  border-top:5px solid var(--creek);
  padding:1.25rem 1.15rem 1.05rem;
}
.enquiry h2{margin-top:0}
.enquiry form{display:grid;gap:.85rem}
.enquiry label{display:block;font-size:.9rem;font-weight:600}
.enquiry input,.enquiry select,.enquiry textarea{
  display:block;width:100%;margin-top:.3rem;
  font:inherit;font-weight:400;color:var(--ink);
  background:#fff;
  border:1px solid #a5b3aa;
  padding:.55rem .62rem;
}
.enquiry textarea{min-height:7.5rem;resize:vertical}
.enquiry input:focus,.enquiry select:focus,.enquiry textarea:focus{outline:2px solid var(--creek);outline-offset:1px}
.enquiry button{
  font:inherit;font-weight:700;
  color:var(--sheet);background:var(--steel);
  border:0;
  padding:.68rem 1.45rem;
  cursor:pointer;
  justify-self:start;
}
.enquiry button:hover{background:var(--brick)}
.fineprint{font-size:.8rem;line-height:1.55;color:#4b584f;margin:0;overflow-wrap:anywhere}
.answerline{font-size:.95rem;font-weight:600;min-height:1.3em;margin:0;color:var(--steel-deep)}
.offsheet{position:absolute;left:-7000px;top:auto;width:1px;height:1px;opacity:0}

/* footing ---------------------------------------------------------------- */
.footplate{background:var(--steel-deep);color:#cfdcd8;padding:1.6rem 1rem 2rem;margin-top:1.3rem}
.footplate-in{max-width:69rem;margin:0 auto}
.footplate p{margin:0 0 .55em;font-size:.87rem;overflow-wrap:anywhere}
.footplate a{color:#f0b598}
.footplate .lotnav a{background:transparent;border-color:#3d6070;color:#e2ece9}
.footplate .lotnav a:hover{background:#f0b598;border-color:#f0b598;color:var(--steel-deep)}

@media (max-width:26rem){
  .sheet-head{padding:.9rem .7rem .6rem}
  main{padding:1.2rem .7rem 2.1rem}
  .enquiry{padding:1.05rem .8rem .9rem}
  .schedule{padding:.95rem .85rem}
  .limits{padding:.7rem .8rem}
}
