/* S & M Concrete, option A: job ticket / field notebook */

:root {
  --paper: #f4f1ea;
  --paper-2: #ece7dc;
  --card: #fffdf8;
  --ink: #161922;
  --ink-2: #3b3a35;
  --muted: #555147;
  --taupe: #958f7d;
  --taupe-deep: #5f5a4c;
  --taupe-deeper: #494539;
  --rule: #c9c2b1;
  --flag: #f5e27a;
  --accent: #8a3b24;        /* red-oxide stain, white text 7.7:1 */
  --accent-hover: #6f2e1b;
  --accent-active: #561f12;
  --focus: #161922;

  --font-display: "Zilla Slab", Rockwell, "Roboto Slab", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

  --step-0: clamp(1rem, 0.92rem + 0.4vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --step-2: clamp(1.625rem, 1.3rem + 1.4vw, 2.25rem);
  --step-3: clamp(2.125rem, 1.3rem + 3.4vw, 3.5rem);
  --step-num: clamp(3rem, 2rem + 4vw, 5.5rem);

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;
  --section: clamp(3rem, 2rem + 6vw, 7rem);
  --wrap: 1200px;
  --gutter: clamp(16px, 5vw, 48px);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration-color: var(--taupe); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
p { margin: 0 0 0.9em; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 var(--s-4); color: var(--ink); }
h1 { font-size: var(--step-3); }
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-1); line-height: 1.2; }
ul, ol { margin: 0; padding: 0; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.prose { max-width: 66ch; }
.prose ul { padding-left: 1.2em; margin-bottom: 1em; }
.prose li { margin-bottom: 0.4em; }
.prose h2 { margin-top: var(--s-7); }

.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 12px 16px; font-weight: 600;
}
.skip-link:focus { top: 12px; }

/* labels, flags, captions */
.label {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-4);
}
.label .n { color: var(--ink); font-weight: 700; margin-right: 0.6em; }
.confirm {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.3;
  background: var(--flag);
  color: var(--ink);
  padding: 2px 6px;
  border: 1px solid #c9b23c;
  vertical-align: middle;
  text-transform: none;
}
.updated { font-family: var(--font-mono); font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 24px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; line-height: 1.2;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background-color 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}
.btn-fill { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-fill:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }
.btn-fill:active { background: var(--accent-active); border-color: var(--accent-active); }
.btn-fill:focus-visible { outline-color: var(--ink); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-line:active { background: var(--ink-2); color: var(--paper); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }
@media (max-width: 599px) { .cta-row .btn { width: 100%; } }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.header-inner { display: flex; align-items: center; gap: var(--s-4); min-height: var(--header-h); }
.brand { display: block; flex: 0 0 auto; }
.brand img { height: 50px; width: auto; }
.site-nav { margin-left: auto; }
.site-nav ul { list-style: none; }
.header-actions { display: flex; align-items: center; gap: var(--s-3); margin-left: auto; }
.header-call {
  font-weight: 700; text-decoration: none; white-space: nowrap;
  min-height: 44px; display: inline-flex; align-items: center; padding: 0 4px;
  font-size: 1rem;
}
.header-call:hover { text-decoration: underline; }
.header-call { gap: 6px; }
.hc-icon { flex: 0 0 auto; }
.hc-word { display: none; }
@media (max-width: 639px) {
  .header-call { border: 2px solid var(--ink); padding: 0 12px; min-height: 44px; margin-left: auto; }
  .header-call:hover { background: var(--ink); color: var(--paper); text-decoration: none; }
  .hc-word { display: inline; }
  .hc-num { display: none; }
}
.header-cta { display: none; min-height: 44px; padding: 8px 16px; }
.menu-toggle {
  min-height: 44px; min-width: 64px; padding: 8px 12px;
  font: 700 0.875rem var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--card); color: var(--ink); border: 1px solid var(--ink); cursor: pointer;
}
.menu-toggle:hover { background: var(--ink); color: var(--paper); }

.site-nav { display: none; }
.site-header.is-open .site-nav {
  display: block; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper); border-bottom: 1px solid var(--rule);
  padding: var(--s-2) var(--gutter) var(--s-5);
}
.site-nav a {
  display: flex; align-items: center; min-height: 48px;
  text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--rule);
}
.site-nav a[aria-current="page"] { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; }
.site-nav .nav-estimate { display: flex; }
.site-nav .nav-estimate a { justify-content: center; border: 0; margin-top: var(--s-4); color: #fff; }

@media (min-width: 640px) {
  .header-cta { display: inline-flex; }
  .site-nav .nav-estimate { display: none; }
}
@media (min-width: 1100px) {
  .menu-toggle { display: none; }
  .site-nav, .site-header.is-open .site-nav {
    display: block; position: static; padding: 0; border: 0; background: none;
  }
  .site-nav ul { display: flex; gap: var(--s-5); }
  .site-nav a { border: 0; min-height: 44px; font-size: 1rem; }
  .site-nav a:hover { text-decoration: underline; text-decoration-color: var(--taupe); }
  .header-actions { margin-left: var(--s-5); }
}

/* hero */
.hero {
  padding-block: clamp(1.5rem, 1rem + 3vw, 4rem) clamp(2rem, 1rem + 3vw, 3.5rem);
  background-image: linear-gradient(to right, rgba(149,143,125,0.12) 1px, transparent 1px);
  background-size: 48px 100%;
}
.hero-grid { display: grid; gap: var(--s-6); align-items: center; }
.hero h1 { max-width: 16ch; }
.hero .lede { font-size: var(--step-1); line-height: 1.45; color: var(--ink-2); max-width: 36ch; margin-top: var(--s-4); }
.hero-note { margin-top: var(--s-5); font-size: 1rem; color: var(--muted); max-width: 44ch; }
.hero-proof { margin: var(--s-4) 0 0; font-size: 1rem; color: var(--ink-2); font-weight: 600; }
.sms-link { display: none; }
.print-hero img, .head-print img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.print-hero { max-width: 1000px; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--s-7); }
}
/* phones: call is the primary action */
@media (max-width: 767px) {
  .hero-ctas { flex-direction: column; align-items: stretch; max-width: 440px; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas .btn-call { order: -2; background: var(--accent); color: #fff; border-color: var(--accent); }
  .hero-ctas .btn-call:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
  .hero-ctas .btn-call:active { background: var(--accent-active); border-color: var(--accent-active); }
  .hero-ctas .sms-link { order: -1; display: inline-flex; align-self: center; align-items: center; min-height: 44px; margin-top: -6px; font-weight: 600; }
  .hero-ctas .btn-est { background: transparent; color: var(--ink); border-color: var(--ink); }
  .hero-ctas .btn-est:hover { background: var(--ink); color: var(--paper); }
}

/* print frames */
.print { margin: 0; }
.print-frame {
  position: relative;
  background: var(--card);
  padding: 10px;
  border: 1px solid var(--rule);
  box-shadow: 0 1px 2px rgba(22,25,34,0.06), 0 8px 24px rgba(22,25,34,0.06);
}
.print-hero .print-frame::before {
  content: ""; position: absolute; inset: 0; transform: translate(12px, 12px);
  border: 1px solid var(--taupe); z-index: -1;
}
.print-hero { position: relative; z-index: 0; margin-right: 12px; margin-bottom: 12px; }
.print figcaption {
  display: flex; gap: var(--s-3); align-items: baseline;
  font-family: var(--font-mono); font-size: 0.875rem; line-height: 1.45; color: var(--muted);
  padding-top: var(--s-3);
}
.print figcaption .fig { color: var(--ink); font-weight: 700; white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase; }
.print figcaption .finish { display: block; color: var(--muted); }
.print figcaption strong { color: var(--ink); font-weight: 600; }
.print-empty .print-frame {
  aspect-ratio: 4 / 5; display: grid; place-items: center; text-align: center;
  background: repeating-linear-gradient(135deg, var(--card) 0 12px, var(--paper-2) 12px 13px);
  padding: var(--s-5);
}

/* proof strip */
.proof { border-block: 1px solid var(--ink); background: var(--card); }
.proof-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; }
.proof-grid li { padding: var(--s-5) var(--s-4); border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.proof-grid li:nth-child(2n) { border-right: 0; }
.proof-grid strong { display: block; white-space: nowrap; font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); line-height: 1; color: var(--accent); margin-bottom: var(--s-2); }
.proof-grid span { font-size: 1rem; line-height: 1.4; display: block; }
.proof-grid .fn-mark { display: inline; }
.fn-mark { font-family: var(--font-body); font-size: 0.6em; color: var(--ink); vertical-align: super; line-height: 0; margin-left: 2px; }
.proof-note { margin: 0; padding: var(--s-3) 0; border-top: 1px solid var(--rule); font-size: 0.875rem; color: var(--muted); }
.proof-grid li:last-child { grid-column: 1 / -1; }
@media (max-width: 899px) {
  .proof-grid li:last-child { display: flex; align-items: baseline; gap: var(--s-3); border-right: 0; padding-block: var(--s-4); }
  .proof-grid li:last-child strong { flex: 0 0 auto; white-space: nowrap; }
  .proof-grid li:last-child > span { flex: 1 1 auto; min-width: 0; }
  .proof-grid li:last-child strong { margin: 0; font-size: 1.375rem; }
  .proof-grid li:last-child > span { display: inline; }
}
@media (min-width: 900px) {
  .proof-grid { grid-template-columns: repeat(5, 1fr); }
  .proof-grid li { border-bottom: 0; padding: var(--s-6) var(--s-5); }
  .proof-grid li:nth-child(2n) { border-right: 1px solid var(--rule); }
  .proof-grid li:last-child { grid-column: auto; border-right: 0; }
}

/* sections */
.section { padding-block: var(--section); }
.section + .section { border-top: 1px solid var(--rule); }
.section-head { display: grid; gap: var(--s-4); margin-bottom: var(--s-7); }
.section-head p { max-width: 58ch; color: var(--ink-2); margin: 0; }
.section-head h2 { margin: 0; max-width: 22ch; }
.section-head .label { border-top: 2px solid var(--ink); padding-top: var(--s-3); margin: 0; max-width: 260px; }
@media (min-width: 900px) {
  .section-head { grid-template-columns: 260px 1fr; column-gap: var(--s-8); align-items: start; }
  .section-head .label { grid-row: span 2; }
}

/* work gallery */
.work-grid { display: grid; gap: var(--s-6); grid-template-columns: 1fr; }
.work-grid { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.work-grid > :first-child { grid-column: 1 / -1; }
.work-grid .print { display: flex; flex-direction: column; min-width: 0; }
.work-grid .print-frame { padding: 6px; }
.work-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.work-grid figcaption { display: block; padding-top: var(--s-2); }
.work-grid figcaption .cap-title, .work-grid figcaption .finish { display: block; }
.work-grid figcaption .cap-title { color: var(--ink); font-weight: 600; }
.work-grid figcaption .fig { margin-right: 0.5em; }
.work-note { background: var(--card); border: 1px solid var(--rule); border-top: 4px solid var(--accent); padding: var(--s-4); display: flex; flex-direction: column; justify-content: center; gap: var(--s-3); min-width: 0; }
.work-note .ticket-head { margin: 0; padding-bottom: var(--s-2); }
.work-note .ticket-head .label { font-size: 0.875rem; }
.tile-line { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; line-height: 1.2; margin: 0; }
.work-note .btn { width: 100%; padding: 10px 12px; }
.tile-link { display: inline-flex; align-items: center; min-height: 44px; font-weight: 600; }
@media (min-width: 900px) {
  .work-grid { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: var(--s-5); }
  .work-grid > :first-child { grid-column: 1; grid-row: 1 / span 2; }
  .work-grid > :first-child .print-frame { flex: 1; position: relative; min-height: 360px; }
  .work-grid > :first-child img { position: absolute; top: 8px; left: 8px; width: calc(100% - 16px); height: calc(100% - 16px); aspect-ratio: auto; }
  .work-grid .print-frame { padding: 8px; }
  .work-grid figcaption .cap-title, .work-grid figcaption .finish { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

/* services list */
.svc-list { list-style: none; border-top: 1px solid var(--ink); }
.svc { display: grid; grid-template-columns: 80px minmax(0, 1fr); gap: var(--s-4); padding-block: var(--s-6); border-bottom: 1px solid var(--rule); align-items: start; }
.svc-thumb { width: 80px; height: 80px; object-fit: cover; border: 1px solid var(--rule); background: var(--card); padding: 4px; }
.svc-items { font-size: 0.875rem; color: var(--muted); margin: 0 0 var(--s-2); max-width: 60ch; }
.svc h3 { margin-bottom: var(--s-3); }
.svc h3 a { text-decoration: none; }
.svc h3 a:hover { text-decoration: underline; text-decoration-color: var(--taupe); }
.svc p { color: var(--ink-2); max-width: 52ch; }
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s-2); }
.tags li {
  font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.02em;
  border: 1px solid var(--rule); background: var(--card); padding: 4px 10px;
}
.more { font-weight: 700; display: inline-flex; align-items: center; min-height: 44px; }
@media (min-width: 900px) {
  .svc { grid-template-columns: 120px minmax(0, 1fr); column-gap: var(--s-6); }
  .svc-thumb { width: 120px; height: 120px; }
}

/* steps */
.steps { list-style: none; display: grid; gap: var(--s-6); counter-reset: step; }
.steps li { border-top: 1px solid var(--ink); padding-top: var(--s-4); }
.steps .step-num { font-family: var(--font-display); font-weight: 700; font-size: var(--step-num); line-height: 0.9; color: var(--taupe); display: block; margin-bottom: var(--s-3); }
.steps h3 { margin-bottom: var(--s-2); }
.steps p { color: var(--ink-2); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); } }

/* taupe band / owner */
.band { background: var(--ink); color: var(--paper); padding-block: var(--section); }
.band .label { color: #c9c2b1; }
.band h2, .band .pullquote { color: var(--paper); }
.band-grid { display: grid; gap: var(--s-6); }
.band-quote footer { font-family: var(--font-mono); font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; color: #c9c2b1; margin-top: var(--s-4); }
.band-side { display: grid; gap: var(--s-5); grid-template-columns: minmax(0, 1fr); }
.band .print-empty { max-width: 260px; }
.band .print-empty .print-frame { background: repeating-linear-gradient(135deg, #23262f 0 12px, #2c2f38 12px 13px); border-color: #4a4c55; color: #e9e5db; box-shadow: none; font-size: 1rem; }
.band .print figcaption, .band .print figcaption .finish { color: #c9c2b1; }
.band .print figcaption .fig, .band .print figcaption strong { color: var(--paper); }
@media (min-width: 600px) { .band-side { grid-template-columns: 200px minmax(0, 1fr); align-items: start; } }
.pullquote {
  margin: 0; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.75rem, 1.1rem + 2.8vw, 3.25rem); line-height: 1.12; letter-spacing: -0.01em;
}
.pullquote p { margin: 0 0 var(--s-4); }
.pullquote footer { font-family: var(--font-mono); font-size: 0.875rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; }
.band .band-copy p { max-width: 48ch; }
.band a { color: var(--paper); text-decoration-color: var(--taupe); }
.band .btn-line { color: var(--paper); border-color: var(--paper); }
.band .btn-line:hover { background: var(--paper); color: var(--ink); }
.band a:focus-visible { outline-color: var(--paper); }
@media (min-width: 900px) { .band-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s-8); align-items: center; } }

/* reviews placeholder */
.placeholder {
  border: 2px dashed var(--taupe); background: var(--card);
  padding: var(--s-6); display: grid; gap: var(--s-3); max-width: 760px;
}
.placeholder p { margin: 0; }
.check-list { list-style: none; border-top: 1px solid var(--ink); display: grid; }
@media (min-width: 700px) { .check-list { grid-template-columns: 1fr 1fr; column-gap: var(--s-7); } }
.section-tight { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.section-tight .section-head { margin-bottom: var(--s-5); }
.check-list li { padding-block: var(--s-4); border-bottom: 1px solid var(--rule); display: grid; gap: var(--s-1); }
.check-list strong { font-family: var(--font-display); font-size: var(--step-1); line-height: 1.2; }
.check-list span { color: var(--ink-2); }
.definition { padding-block: var(--s-8) var(--s-6); }
.def-grid { display: grid; gap: var(--s-6); align-items: center; }
.field-note { border-left: 4px solid var(--ink); padding-left: var(--s-5); max-width: 60ch; }
.field-note p { margin: 0 0 var(--s-4); }
.field-note p:last-child { margin-bottom: 0; }
.def-lede { font-size: 1.25rem; line-height: 1.4; }
.def-list { list-style: none; border-top: 1px solid var(--rule); margin: 0 0 var(--s-4); }
.def-list li { padding-block: var(--s-3); border-bottom: 1px solid var(--rule); }
.def-list a { font-weight: 700; }
.def-print { max-width: 460px; }
.def-print img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 900px) { .def-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--s-8); } .def-print { justify-self: end; width: 100%; } }
.summary { padding-block: var(--s-6) 0; }
.summary-box { border-left: 4px solid var(--ink); padding-left: var(--s-5); max-width: 76ch; }
.summary-box p:last-child { margin-bottom: 0; }

/* towns */
.towns { list-style: none; display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--ink); }
.towns li {
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-1);
  padding: var(--s-4) var(--s-5) var(--s-4) 0; margin-right: var(--s-5);
  border-bottom: 1px solid var(--rule);
}
.towns li.soft { font-family: var(--font-body); font-weight: 400; font-size: 1rem; color: var(--muted); align-self: center; border: 0; }

/* FAQ */
.faq-grid { display: grid; gap: var(--s-6); }
.faq { list-style: none; border-top: 1px solid var(--ink); }
.faq li { padding-block: var(--s-5); border-bottom: 1px solid var(--rule); }
.faq h3 { font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem); margin-bottom: var(--s-2); }
.faq p { margin: 0 0 0.5em; color: var(--ink-2); max-width: 64ch; }
.faq p.answer { color: var(--ink); font-weight: 600; }
@media (min-width: 900px) { .faq-grid { grid-template-columns: 260px 1fr; gap: var(--s-8); } }

/* estimate / form */
.estimate { background: var(--card); border-top: 1px solid var(--ink); }
.estimate-grid { display: grid; gap: var(--s-7); }
.contact-lines { list-style: none; margin-top: var(--s-5); border-top: 1px solid var(--rule); }
.contact-lines li { padding-block: var(--s-3); border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 90px 1fr; gap: var(--s-3); align-items: baseline; }
.contact-lines .k { font-family: var(--font-mono); font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact-lines a { font-weight: 700; display: inline-flex; min-height: 44px; align-items: center; }
@media (min-width: 900px) {
  .estimate-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: var(--s-8); }
  .contact-grid .form-col { order: 2; }
}

.form { display: grid; gap: var(--s-4); max-width: 560px; }
.ticket {
  border: 1px solid var(--ink); background: var(--paper); padding: var(--s-5);
  position: relative;
}
.ticket-head { display: flex; justify-content: space-between; gap: var(--s-3); flex-wrap: wrap; border-bottom: 1px dashed var(--taupe); padding-bottom: var(--s-3); margin-bottom: var(--s-4); }
.ticket-head .label { margin: 0; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: 1rem; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; font: inherit; font-size: 1rem;
  padding: 10px 12px; color: var(--ink); background: var(--card);
  border: 1px solid var(--taupe-deep); border-radius: 0;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink); }
.field input[aria-invalid="true"] { border-color: #8a1c1c; border-width: 2px; }
.field-error { color: #8a1c1c; font-size: 1rem; font-weight: 600; min-height: 0; }
.form-after { margin: calc(var(--s-2) * -1) 0 0; font-size: 1rem; color: var(--muted); }
.form-note { font-size: 1rem; padding: var(--s-4); border-left: 4px solid var(--taupe-deep); background: var(--paper-2); }
.form-note[hidden] { display: none; }
.form .btn { width: 100%; }
@media (min-width: 640px) { .form .btn { width: auto; justify-self: start; } }

/* page head (inner pages) */
.page-head { padding-block: clamp(1.5rem, 1rem + 2.5vw, 3.5rem) var(--s-6); border-bottom: 1px solid var(--rule);
  background-image: linear-gradient(to right, rgba(149,143,125,0.12) 1px, transparent 1px); background-size: 48px 100%; }
.page-head h1 { max-width: 20ch; }
.page-head .lede { font-size: var(--step-1); line-height: 1.45; color: var(--ink-2); max-width: 46ch; }
.head-grid { display: grid; gap: var(--s-6); align-items: center; }
.head-grid h1 { max-width: 18ch; }
.head-print { max-width: 560px; }
.head-print.sq img { aspect-ratio: 1 / 1; }
@media (max-width: 899px) { .desk-only { display: none; } }
.head-print.four-three img { aspect-ratio: 4 / 3; }
@media (min-width: 900px) { .head-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: var(--s-7); } .head-print { justify-self: end; width: 100%; } }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s-2); font-family: var(--font-mono); font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--s-5); color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: var(--s-2); color: var(--taupe); }
.crumbs a { color: var(--muted); display: inline-flex; min-height: 44px; align-items: center; }
.crumbs [aria-current] { display: inline-flex; min-height: 44px; align-items: center; }

.split { display: grid; gap: var(--s-7); }
@media (min-width: 960px) {
  .split { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: var(--s-8); align-items: start; }
  .split .aside { position: sticky; top: calc(var(--header-h) + 24px); }
}
.aside { display: grid; gap: var(--s-6); }
.aside-card { border: 1px solid var(--ink); background: var(--card); padding: var(--s-5); }
.aside-card h2 { font-size: var(--step-1); }
.aside-card .btn { width: 100%; margin-top: var(--s-3); }
.pair { display: grid; gap: var(--s-5); margin-block: var(--s-6); }
@media (min-width: 600px) { .pair { grid-template-columns: 1fr 1fr; } }
.wide-print { margin-block: var(--s-6); }
.print-portrait { max-width: 440px; }

.town-list { list-style: none; border-top: 1px solid var(--ink); }
.town-list li { display: grid; gap: var(--s-2); padding-block: var(--s-5); border-bottom: 1px solid var(--rule); }
.town-list h2 { font-size: var(--step-1); margin: 0; }
.town-list .county { font-family: var(--font-mono); font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.town-list p { margin: 0; max-width: 60ch; }
@media (min-width: 800px) { .town-list li { grid-template-columns: 240px 1fr; column-gap: var(--s-7); } .town-list li > div { grid-row: span 2; } }

/* footer */
.site-footer { background: var(--ink); color: #e9e5db; padding-block: var(--s-8) var(--s-6); }
.site-footer a { color: #fff; text-decoration-color: var(--taupe); }
.site-footer .label { color: #bdb6a4; }
.footer-grid { display: grid; gap: var(--s-6); }
.footer-grid ul { list-style: none; }
.footer-grid li a { display: inline-flex; min-height: 44px; align-items: center; }
.footer-brand img { width: 170px; height: auto; margin-bottom: var(--s-4); }
.footer-brand p { max-width: 34ch; color: #d6d1c4; }
.footer-base { margin-top: var(--s-7); padding-top: var(--s-4); border-top: 1px solid #3a3c44; display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-6); font-family: var(--font-mono); font-size: 0.875rem; letter-spacing: 0.06em; color: #bdb6a4; }
.site-footer .confirm { color: var(--ink); }
.site-footer a:focus-visible { outline-color: #fff; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: var(--s-7); } }

/* 404 */
.lost { padding-block: var(--section); }
.lost ul { list-style: none; border-top: 1px solid var(--ink); max-width: 520px; margin-top: var(--s-5); }
.lost li { border-bottom: 1px solid var(--rule); }
.lost li a { display: flex; min-height: 48px; align-items: center; font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* small helpers */
.quote-block { margin: 0 0 var(--s-7); padding-left: var(--s-5); border-left: 4px solid var(--taupe); font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem); }
.quote-block footer { margin-top: var(--s-3); color: var(--muted); }
.next-h { margin-top: var(--s-7); }
.steps-stack { grid-template-columns: 1fr !important; gap: var(--s-5); }
.steps-stack .step-num { font-size: var(--step-2); }
.prose ul.faq { padding-left: 0; margin-bottom: 0; }
.prose ul.faq li { margin-bottom: 0; }
@media (max-width: 599px) {
  .work-note { padding: var(--s-3); }
  .tile-line { font-size: 1.0625rem; }
  .work-note .btn { font-size: 0.9375rem; padding: 10px 8px; }
}
