/* MRW Masonry, Restoration & Waterproofing — site styles
   Tokens first, components second. Light palette on :root, dark palette via
   prefers-color-scheme (guarded) and [data-theme]. */

:root {
  --bg: #F2EEE7;          /* limestone */
  --surface: #FBF9F5;
  --surface-2: #E8E2D7;
  --ink: #1B1714;         /* mortar black */
  --ink-2: #5A524A;
  --ink-3: #8A8177;
  --line: #D8D1C5;
  --brick: #9B3A26;       /* Boston brick */
  --brick-hover: #7F2E1D;
  --on-brick: #FFFFFF;
  --slate: #4A5A66;       /* bluestone */
  --band: #1B1714;        /* dark band background */
  --band-ink: #F2EEE7;
  --band-ink-2: #B7AEA3;
  --band-line: #3A322C;
  --focus: #2B6CB0;

  --font-display: "Bricolage Grotesque", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Public Sans", "Helvetica Neue", Arial, sans-serif;
  --font-quote: "Newsreader", Georgia, "Times New Roman", serif;

  --max: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --radius: 4px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #161311;
    --surface: #1F1A16;
    --surface-2: #2A231E;
    --ink: #F1ECE4;
    --ink-2: #BBB1A6;
    --ink-3: #8A7F74;
    --line: #362E27;
    --brick: #D05B3F;
    --brick-hover: #E36E52;
    --on-brick: #1B1714;
    --slate: #93A6B4;
    --band: #0F0D0B;
    --band-ink: #F1ECE4;
    --band-ink-2: #A99F94;
    --band-line: #2C2520;
    --focus: #7FB3F0;
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #161311;
  --surface: #1F1A16;
  --surface-2: #2A231E;
  --ink: #F1ECE4;
  --ink-2: #BBB1A6;
  --ink-3: #8A7F74;
  --line: #362E27;
  --brick: #D05B3F;
  --brick-hover: #E36E52;
  --on-brick: #1B1714;
  --slate: #93A6B4;
  --band: #0F0D0B;
  --band-ink: #F1ECE4;
  --band-ink-2: #A99F94;
  --band-line: #2C2520;
  --focus: #7FB3F0;
  color-scheme: dark;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus); outline-offset: 2px;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.02; margin: 0; text-wrap: balance; letter-spacing: -0.015em; }
h1 { font-size: clamp(38px, 5.8vw, 70px); font-weight: 800; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; }
h3 { font-size: clamp(21px, 2.2vw, 26px); font-weight: 700; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.measure { max-width: 62ch; }
.eyebrow {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brick);
  margin: 0 0 14px;
}
.lede { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-2); max-width: 58ch; }
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section + .section { padding-top: 0; }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 18px 40px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head .lede { margin-top: 10px; }

/* mortar-joint rule: two thin lines with a pale gap, like a raked joint */
.course { height: 0; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-top: 3px; margin: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 1;
  padding: 15px 22px; border-radius: var(--radius); text-decoration: none; cursor: pointer; white-space: nowrap;
  border: 1.5px solid var(--ink); color: var(--ink); background: transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn-brick { background: var(--brick); border-color: var(--brick); color: var(--on-brick); }
.btn-brick:hover { background: var(--brick-hover); border-color: var(--brick-hover); color: var(--on-brick); }
.btn-ghost-light { border-color: var(--band-ink); color: var(--band-ink); }
.btn-ghost-light:hover { background: var(--band-ink); color: var(--band); }
.btn svg { width: 18px; height: 18px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- header ---------- */
.topline { background: var(--band); color: var(--band-ink-2); font-size: 13.5px; }
.topline .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 16px; padding-top: 7px; padding-bottom: 7px; }
.topline strong { color: var(--band-ink); font-weight: 600; }
.topline a { color: var(--band-ink); text-decoration: none; }
.topline a:hover { text-decoration: underline; }
.topline .hours { display: none; }
@media (min-width: 720px) { .topline .hours { display: inline; } }

.site-header { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 68px; }
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand .mark { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.02em; line-height: 1; }
.brand .mark span { color: var(--brick); }
.brand .sub { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; display: none; }
@media (min-width: 900px) { .brand .sub { display: inline; } }
.nav-links { display: none; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a { white-space: nowrap; text-decoration: none; font-weight: 500; font-size: 15.5px; padding: 10px 12px; border-radius: var(--radius); color: var(--ink); }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--surface-2); }
.nav-links .has-menu { position: relative; }
.nav-links .has-menu > a::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-left: 8px; position: relative; top: -3px; }
.menu {
  position: absolute; top: 100%; left: 0; min-width: 300px; margin: 0; padding: 8px; list-style: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 18px 40px -20px rgba(0,0,0,.35);
  display: none; grid-template-columns: 1fr 1fr; gap: 2px; width: 560px;
}
.has-menu:hover .menu, .has-menu:focus-within .menu { display: grid; }
.menu a { display: block; padding: 10px 12px; font-size: 15px; }
.menu a small { display: block; color: var(--ink-3); font-weight: 400; font-size: 13px; margin-top: 2px; }
.nav-cta { display: none; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 11px 16px; font-size: 15px; }
@media (min-width: 1020px) { .nav-links { display: flex; } .nav-cta { display: flex; } .nav-toggle { display: none; } }
.nav-toggle { background: none; border: 1.5px solid var(--ink); border-radius: var(--radius); color: var(--ink); font: inherit; font-weight: 600; padding: 9px 14px; cursor: pointer; }
.drawer { display: none; border-top: 1px solid var(--line); background: var(--surface); }
.drawer.open { display: block; }
.drawer ul { list-style: none; margin: 0; padding: 8px var(--gutter) 18px; }
.drawer li a { display: block; padding: 12px 0; text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--line); }
.drawer li.group { padding: 16px 0 6px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.drawer .btn-row { padding-top: 16px; }

/* sticky call bar, mobile only */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--band-line); border-top: 1px solid var(--band-line); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; font-weight: 700; font-size: 15px; text-decoration: none; background: var(--band); color: var(--band-ink); }
.callbar a.primary { background: var(--brick); color: var(--on-brick); }
.callbar svg { width: 18px; height: 18px; }
@media (min-width: 1020px) { .callbar { display: none; } }
@media (max-width: 1019px) { body { padding-bottom: 58px; } }

/* ---------- hero ---------- */
.hero { padding: clamp(40px, 6vw, 84px) 0 clamp(40px, 6vw, 72px); overflow: hidden; }
.hero .wrap { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .hero .wrap { grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); } }
.hero h1 { margin: 0 0 22px; }
.hero h1 em { font-style: normal; color: var(--brick); }
.hero .lede { margin-bottom: 28px; }
.hero .btn-row { margin-bottom: 30px; }
.hero-note { font-size: 14px; color: var(--ink-3); max-width: 46ch; }

/* brick-bond wall of real photos: rows offset like running bond */
.wall { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 6px; }
.wall .row { display: contents; }
.wall a, .wall span { display: block; aspect-ratio: 1; overflow: hidden; background: var(--surface-2); border-radius: 3px; grid-column: span 2; }
.wall .half { grid-column: span 1; background: transparent; }
.wall img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.wall a:hover img { transform: scale(1.04); }
.hero-photo { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 4px; background: var(--surface-2); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.wall-caption { margin-top: 12px; font-size: 13.5px; color: var(--ink-3); display: flex; justify-content: space-between; gap: 12px; }

/* ---------- facts strip ---------- */
.facts { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.facts ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .facts ul { grid-template-columns: repeat(5, 1fr); } }
.facts li { padding: 20px 18px; border-right: 1px solid var(--line); }
.facts li:last-child { border-right: 0; }
@media (max-width: 759px) { .facts li:nth-child(2n) { border-right: 0; } .facts li { border-bottom: 1px solid var(--line); } .facts li:nth-last-child(-n+1) { border-bottom: 0; } }
.facts .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 36px); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.facts .lbl { font-size: 13.5px; color: var(--ink-2); margin-top: 6px; }

/* ---------- services ---------- */
.svc-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc { background: var(--surface); padding: 26px 24px 28px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; min-height: 100%; transition: background .15s ease; position: relative; }
.svc:hover { background: var(--surface-2); }
.svc h3 { font-size: 22px; }
.svc p { color: var(--ink-2); font-size: 15.5px; margin: 0; }
.svc .go { margin-top: auto; padding-top: 12px; font-weight: 600; font-size: 14.5px; color: var(--brick); }
.svc .go::after { content: " →"; }
.svc .thumb { aspect-ratio: 16/9; overflow: hidden; border-radius: 3px; margin: -4px 0 6px; background: var(--surface-2); }
.svc .thumb img { width: 100%; height: 100%; object-fit: cover; }
.svc .thumb.empty { display: flex; align-items: center; justify-content: center; font-size: 12.5px; color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase; }

/* ---------- reviews ---------- */
.review-grid { columns: 1; column-gap: 20px; }
@media (min-width: 680px) { .review-grid { columns: 2; } }
@media (min-width: 1000px) { .review-grid { columns: 3; } }
.review { break-inside: avoid; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 22px 22px 20px; margin: 0 0 20px; display: flex; flex-direction: column; gap: 14px; }
.review .q { font-family: var(--font-quote); font-size: 19px; line-height: 1.42; font-style: italic; letter-spacing: -0.005em; margin: 0; }
.review .q::before { content: "“"; color: var(--brick); font-size: 1.3em; line-height: 0; margin-right: 1px; }
.review .q::after { content: "”"; color: var(--brick); font-size: 1.3em; line-height: 0; margin-left: 1px; }
.review .who { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--ink-2); }
.review .who b { color: var(--ink); font-weight: 600; }
.review .src { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); display: inline-flex; align-items: center; gap: 6px; }
.stars { display: inline-flex; gap: 1px; color: #D9A21B; }
.stars svg { width: 13px; height: 13px; }
.stars.big svg { width: 20px; height: 20px; }
.rating { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-weight: 600; font-size: 15px; color: var(--ink-2); }
.review .pics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
.review .pics a { aspect-ratio: 1; overflow: hidden; border-radius: 3px; background: var(--surface-2); }
.review .pics img { width: 100%; height: 100%; object-fit: cover; }
.review .reply { border-left: 2px solid var(--line); padding: 4px 0 4px 14px; font-size: 14px; color: var(--ink-2); }
.review .reply b { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.review.featured .q { font-size: 21px; }
.review .more { background: none; border: 0; padding: 0; color: var(--brick); font: inherit; font-weight: 600; font-size: 14px; cursor: pointer; text-align: left; }
.review.clamped .q { display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filters button { font: inherit; font-size: 14px; font-weight: 600; padding: 9px 14px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); color: var(--ink-2); cursor: pointer; }
.filters button[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filters button:hover:not([aria-pressed="true"]) { border-color: var(--ink-3); color: var(--ink); }
.count { font-size: 14px; color: var(--ink-3); font-variant-numeric: tabular-nums; }

/* ---------- before / after ---------- */
.ba-grid { display: grid; gap: 28px 24px; }
@media (min-width: 720px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .ba-grid.three { grid-template-columns: repeat(3, 1fr); } }
.ba { display: flex; flex-direction: column; gap: 10px; }
.ba .pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.ba .pair a { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 3px; background: var(--surface-2); display: block; }
.ba .pair img { width: 100%; height: 100%; object-fit: cover; }
.ba .tag { position: absolute; left: 8px; top: 8px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding: 4px 8px; border-radius: 3px; background: rgba(27,23,20,.78); color: #F2EEE7; }
.ba .tag.after { background: var(--brick); color: var(--on-brick); }
.ba figcaption { font-size: 14.5px; color: var(--ink-2); }
.ba figcaption b { color: var(--ink); font-weight: 600; }
.ba figcaption .cite { display: block; font-size: 13px; color: var(--ink-3); margin-top: 3px; }

/* ---------- gallery ---------- */
.gal { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
@media (min-width: 640px) { .gal { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .gal { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.gal a { aspect-ratio: 1; overflow: hidden; border-radius: 3px; background: var(--surface-2); display: block; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gal a:hover img { transform: scale(1.04); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(15,13,11,.92); display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; max-width: min(92vw, 720px); color: #F2EEE7; text-align: center; }
.lightbox img { max-height: 70vh; width: auto; margin: 0 auto; border-radius: 4px; image-rendering: auto; }
.lightbox figcaption { margin-top: 14px; font-size: 15px; color: #C9C0B4; }
.lightbox figcaption b { color: #F2EEE7; }
.lightbox button { position: absolute; top: 16px; right: 16px; background: none; border: 1.5px solid #F2EEE7; color: #F2EEE7; border-radius: 4px; font: inherit; font-weight: 600; padding: 8px 12px; cursor: pointer; }

/* ---------- dark band sections ---------- */
.band { background: var(--band); color: var(--band-ink); }
.band .eyebrow { color: var(--brick); }
.band .lede, .band p { color: var(--band-ink-2); }
.band h2, .band h3 { color: var(--band-ink); }
.band .course { border-color: var(--band-line); }

/* process (what to expect) */
.steps { display: grid; gap: 1px; background: var(--band-line); border-top: 1px solid var(--band-line); border-bottom: 1px solid var(--band-line); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--band); padding: 26px 22px 28px; display: flex; flex-direction: column; gap: 12px; }
.step h3 { font-size: 20px; }
.step .q { font-family: var(--font-quote); font-style: italic; font-size: 17px; line-height: 1.45; color: var(--band-ink-2); margin: 0; }
.step .cite { font-size: 12.5px; color: var(--band-ink-2); letter-spacing: .06em; text-transform: uppercase; margin-top: auto; }

/* ---------- service page ---------- */
.page-head { padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 48px); }
.page-head h1 { font-size: clamp(36px, 5.2vw, 64px); margin-bottom: 18px; }
.two-col { display: grid; gap: 40px; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1.1fr .9fr; gap: 64px; } }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
@media (min-width: 560px) { .checklist.cols { grid-template-columns: 1fr 1fr; column-gap: 28px; } }
.checklist li { padding: 11px 0 11px 26px; border-bottom: 1px solid var(--line); position: relative; font-size: 16px; }
.checklist li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 10px; height: 4px; background: var(--brick); }
.aside { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 24px; }
.aside h3 { font-size: 20px; margin-bottom: 10px; }
.aside .btn-row { margin-top: 16px; }
.warranty { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; padding: 6px 10px; border-radius: 3px; background: var(--surface-2); color: var(--ink); }
.warranty svg { width: 16px; height: 16px; color: var(--brick); }
.photo-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
@media (min-width: 640px) { .photo-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.photo-strip a { aspect-ratio: 1; overflow: hidden; border-radius: 3px; background: var(--surface-2); display: block; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; }
.photo-strip.wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 720px) { .photo-strip.wide { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.photo-strip.wide a { aspect-ratio: 4 / 3; }
.strip-note { font-size: 13.5px; color: var(--ink-3); margin-top: 10px; }

/* ---------- CTA ---------- */
.cta { padding: clamp(56px, 8vw, 96px) 0; }
.cta .wrap { display: grid; gap: 28px; align-items: center; }
@media (min-width: 860px) { .cta .wrap { grid-template-columns: 1.2fr .8fr; } }
.cta h2 { margin-bottom: 14px; }
.cta .phone { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.02em; text-decoration: none; display: block; line-height: 1; color: var(--band-ink); font-variant-numeric: tabular-nums; }
.cta .phone:hover { color: var(--brick); }
.cta .small { font-size: 14px; margin-top: 14px; }

/* ---------- forms ---------- */
.form { display: grid; gap: 18px; }
.form .row { display: grid; gap: 18px; }
@media (min-width: 620px) { .form .row { grid-template-columns: 1fr 1fr; } }
.form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.form input, .form select, .form textarea {
  font: inherit; font-size: 16px; color: var(--ink); background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 12px 14px; width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--focus) 30%, transparent); }
.form textarea { min-height: 120px; resize: vertical; }
.form fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 8px; }
.form legend { font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.form .choices { display: flex; flex-wrap: wrap; gap: 8px; }
.form .choices label { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink); border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 14px; cursor: pointer; background: var(--surface); }
.form .choices input { width: auto; }
.form .hint { font-size: 13.5px; color: var(--ink-3); font-weight: 400; }
.form .file { border-style: dashed; padding: 18px 14px; }
.form .actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form .note { font-size: 13.5px; color: var(--ink-3); }
.notice { border: 1px dashed var(--line); border-radius: 6px; padding: 12px 14px; font-size: 13.5px; color: var(--ink-3); }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .85fr 1.15fr; gap: 64px; } }
.dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px 20px; font-size: 16px; }
.dl dt { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; padding-top: 4px; }
.dl dd { margin: 0; }
.dl a { text-decoration: none; font-weight: 600; }
.dl a:hover { color: var(--brick); }
.hours-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; font-size: 15.5px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; color: var(--ink-2); }
.towns { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 12px 0 0; padding: 0; }
.towns li { font-size: 14px; padding: 6px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }

/* ---------- about ---------- */
.about-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }
.pull { font-family: var(--font-quote); font-style: italic; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.35; border-left: 3px solid var(--brick); padding-left: 22px; margin: 0; }
.pull .cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 14px; color: var(--ink-3); margin-top: 12px; letter-spacing: .04em; }

/* ---------- footer ---------- */
.site-footer { background: var(--band); color: var(--band-ink-2); padding: 56px 0 40px; font-size: 14.5px; }
.site-footer .cols { display: grid; gap: 32px; }
@media (min-width: 760px) { .site-footer .cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--band-ink); margin-bottom: 14px; font-weight: 600; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: var(--band-ink); text-decoration: none; }
.site-footer a:hover { color: var(--brick); }
.site-footer .brand .mark { color: var(--band-ink); }
.site-footer .fine { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--band-line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 13px; }

/* ---------- preview router (single-file build only) ---------- */
[data-preview] .page { display: none; }
[data-preview] .page.active { display: block; }
.preview-banner { background: var(--slate); color: #fff; font-size: 13px; text-align: center; padding: 6px 12px; }
.preview-banner a { color: #fff; }
