:root {
  --ground: #f6f1e7;
  --ground-2: #efe7d8;
  --card: #fffdf8;
  --ink: #1c211e;
  --muted: #59605b;
  --line: #ddd2bf;
  --green: #1f4a38;
  --green-2: #163828;
  --green-tint: #e3ebe4;
  --timber: #b85f24;
  --timber-2: #9c4e1b;
  --stone-1: #d9cdb6;
  --radius: 10px;
  --serif: "Young Serif", Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 400 17px/1.6 var(--sans);
}
img { max-width: 100%; }
a { color: var(--green); text-underline-offset: 2px; }
a:hover { color: var(--timber-2); }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 6.2vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 4.2vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.section { padding: 56px 16px; }
.narrow { max-width: 760px; }
.small { font-size: .88rem; color: var(--muted); }

/* header */
.top { position: sticky; top: 0; z-index: 10; background: rgba(246, 241, 231, .94); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.top-row { display: flex; align-items: center; gap: 10px; min-height: 60px; }
.brand { font-family: var(--serif); font-size: 1.2rem; color: var(--green-2); text-decoration: none; white-space: nowrap; }
.tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--timber-2); border: 1px solid currentColor; border-radius: 99px; padding: 2px 8px; white-space: nowrap;
}
.btn-call { margin-left: auto; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font: 600 1rem/1 var(--sans); border: 0; border-radius: 8px; cursor: pointer; text-decoration: none;
  padding: 12px 16px; min-height: 44px; white-space: nowrap;
}
.btn-call { background: var(--green); color: #fff; font-size: .92rem; padding: 10px 14px; }
.btn-call:hover { background: var(--green-2); color: #fff; }
.btn-go { width: 100%; background: var(--timber); color: #fff; font-size: 1.08rem; padding: 16px; }
.btn-go:hover { background: var(--timber-2); }
.btn-go[disabled] { opacity: .6; cursor: wait; }

/* hero */
.hero { position: relative; padding: 32px 0 0; }
.hero-grid { display: grid; gap: 24px; padding-bottom: 40px; }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 36em; }
.crumb { font-size: .88rem; color: var(--muted); margin-bottom: .6em; }
.crumb a { color: var(--muted); }
.flags {
  height: 28px;
  background-color: var(--stone-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='28'%3E%3Cg fill='none' stroke='%23f6f1e7' stroke-width='3'%3E%3Cpath d='M0 1.5h240M0 14h58M58 0v28M58 12h70M128 0v28M128 16h52M180 0v28M180 10h60M30 14v14M96 12v16M152 16v12M212 10v18'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 240px 28px;
  border-top: 1px solid var(--line);
}

.flags.boards {
  background-image: repeating-linear-gradient(90deg, transparent 0 22px, var(--ground) 22px 25px);
  background-color: #c9a67c;
}
.flags.cladding {
  background-image: repeating-linear-gradient(180deg, transparent 0 6px, rgba(255,255,255,.55) 6px 7px);
  background-color: #8a6a4a;
}

/* form */
.quote, .done {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: 0 1px 0 var(--line), 0 12px 30px -18px rgba(31, 74, 56, .35);
}
.quote-title { font-size: 1.35rem; margin-bottom: .7em; }
.quote label { display: block; font-weight: 500; font-size: .95rem; margin-bottom: 14px; }
.quote input, .quote select {
  display: block; width: 100%; margin-top: 5px; min-height: 48px;
  font: 400 1rem var(--sans); color: var(--ink);
  background: #fff; border: 1px solid #c9bda7; border-radius: 8px; padding: 10px 12px;
}
.quote input:focus, .quote select:focus { outline: 3px solid rgba(184, 95, 36, .35); border-color: var(--timber); }
.quote .consent { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: .88rem; line-height: 1.45; color: var(--muted); }
.quote .consent input { width: 22px; min-height: 22px; height: 22px; margin: 1px 0 0; flex: none; accent-color: var(--green); }
.quote .consent strong { color: var(--ink); }
.quote .small { text-align: center; margin: 10px 0 0; }
.hp { position: absolute !important; left: -9999px; }
.form-error { color: #9b2c1c; font-size: .9rem; font-weight: 500; }
.invalid { border-color: #9b2c1c !important; }
.done { border-left: 5px solid var(--green); }
.done h2 { color: var(--green-2); }
.test-note { background: #fff3cd; border: 1px dashed var(--timber); padding: 8px 10px; border-radius: 6px; font-size: .85rem; }

.waiting { border-left: 5px solid var(--timber); }
.waiting p { color: var(--muted); }

/* bands */
.band { background: var(--green); color: #eef2ec; padding: 56px 0; }
.band h2, .band h3 { color: #fff; }
.band.alt { background: var(--ground-2); color: var(--ink); }
.band.alt h2, .band.alt h3 { color: var(--ink); }
.steps { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 22px; }
.steps li { position: relative; padding-left: 52px; }
.steps .n {
  position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; background: var(--timber); color: #fff; font-family: var(--serif); font-size: 1.1rem;
}
.steps p { color: #cfdad1; margin: 0; }

/* local */
.cols { display: grid; gap: 28px; }
.prose p { max-width: 40em; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.band.alt .panel { background: var(--card); }
.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.ticks li::before { content: ""; position: absolute; left: 2px; top: .5em; width: 12px; height: 7px; border-left: 2.5px solid var(--timber); border-bottom: 2.5px solid var(--timber); transform: rotate(-45deg); }
.areas { list-style: none; padding: 0; margin: 0 0 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.areas li { background: var(--card); border: 1px solid var(--line); border-radius: 99px; padding: 4px 12px; font-size: .92rem; }

/* towns */
.town-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); margin-top: 18px; }
.town-card {
  display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; text-decoration: none; color: var(--ink); border-left: 4px solid var(--green);
}
.town-card strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.25rem; color: var(--green-2); }
.town-card span { font-size: .88rem; color: var(--muted); }
.town-card:hover { border-left-color: var(--timber); }

/* faq */
.faq { margin-top: 16px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 16px 32px 16px 0; font-weight: 600; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 12px; font: 400 1.5rem var(--serif); color: var(--timber); }
.faq details[open] summary::after { content: "–"; }
.faq details p { max-width: 44em; color: var(--muted); }

/* footer */
.foot { background: var(--green-2); color: #cfdad1; padding: 40px 0 48px; font-size: .92rem; }
.foot a { color: #fff; }
.foot .small { color: #9fb2a5; }
.disclose { max-width: 48em; }
.disclose strong { color: #fff; }

@media (min-width: 820px) {
  body { font-size: 18px; }
  .hero { padding-top: 56px; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; padding-bottom: 56px; }
  .hero-copy { padding-top: 24px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .cols { grid-template-columns: 1.4fr 1fr; gap: 48px; }
  .section { padding: 80px 16px; }
  .band { padding: 80px 0; }
}

@media (max-width: 400px) {
  .brand { font-size: 1.02rem; }
  .tag { font-size: .64rem; padding: 2px 6px; }
  .btn-call { font-size: .85rem; padding: 9px 10px; }
}
