/* Taylor's Stump Grinding — taylorstump.com
   Palette: deep forest green, charcoal, warm off-white, restrained orange.
   No webfonts, no frameworks, no third-party origins. */

:root {
  --forest:        #16342a;
  --forest-deep:   #0e241d;
  --forest-mid:    #1e4839;
  --forest-line:   #2c5a49;
  --charcoal:      #22261f;
  --ink:           #171a16;
  --ink-soft:      #4a5249;
  --bone:          #f7f4ed;
  --bone-2:        #efeae0;
  --bone-3:        #e3dcd0;
  --orange:        #bf5518;
  --orange-hi:     #a64612;
  --line:          rgba(23, 26, 22, .14);
  --line-soft:     rgba(23, 26, 22, .08);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --bar-h: 64px;
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* sticky header height + breathing room */
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
svg { display: block; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

/* ---------- focus + skip ---------- */

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}
.band-green :focus-visible,
.site-head :focus-visible { outline-color: #ffb27a; }

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 18px;
  font-weight: 600;
  text-decoration: none;
  transition: top .15s ease;
}
.skip:focus { top: 12px; }

/* ---------- layout ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap.narrow { max-width: 820px; }

.band { padding-block: clamp(64px, 9vw, 116px); }
.band-alt { background: var(--bone-2); }
.band-green {
  background: var(--forest);
  color: var(--bone);
}
.band-green h2 { color: #fff; }
.band-green p { color: rgba(247, 244, 237, .82); }

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin: 0 0 14px;
}
.kicker-light { color: #9dc9b6; }

.band h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  max-width: 21ch;
  margin-bottom: 28px;
}
.center { text-align: center; }
.center h2 { margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: .01em;
  text-decoration: none;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-lg { font-size: 16px; padding: 16px 26px; }
.btn-block { width: 100%; }

.btn-accent {
  background: var(--orange);
  color: #fff;
}
.btn-accent:hover { background: var(--orange-hi); }

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(247, 244, 237, .38);
}
.btn-ghost:hover { border-color: var(--bone); background: rgba(247, 244, 237, .08); }

.closing .btn-ghost { color: var(--ink); border-color: var(--line); }
.closing .btn-ghost:hover { background: rgba(23, 26, 22, .05); border-color: var(--ink); }

.btn-call {
  background: var(--forest);
  color: var(--bone);
}
.btn-call:hover { background: var(--forest-deep); }

.ico { width: 17px; height: 17px; fill: currentColor; flex: none; }

/* ---------- header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 244, 237, .93);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.head-in {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
  color: var(--forest);
}
.brand-mark { width: 30px; height: 30px; flex: none; color: var(--forest); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 14.5px;
  font-weight: 550;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .16s ease, border-color .16s ease;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--orange); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--forest);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 18% 42%, rgba(14, 36, 29, .58) 0%, rgba(14, 36, 29, .82) 58%, rgba(10, 28, 22, .94) 100%);
  z-index: -1;
}
.hero-art {
  position: absolute;
  right: -14%;
  top: 50%;
  transform: translateY(-50%);
  width: min(760px, 78vw);
  aspect-ratio: 1;
  color: rgba(157, 201, 182, .42);
  z-index: -2;
  pointer-events: none;
}
.hero-art svg { width: 100%; height: 100%; }

.hero-in {
  padding-block: clamp(76px, 12vw, 148px);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #a8d0bd;
  margin: 0 0 22px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}

.hero h1 {
  font-size: clamp(40px, 7.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: #fff;
  max-width: 15ch;
  margin-bottom: 22px;
}
.lede {
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.5;
  color: rgba(247, 244, 237, .86);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.center-cta { justify-content: center; }
.hero-note {
  margin-top: 26px;
  font-size: 14px;
  color: rgba(247, 244, 237, .62);
}

/* ---------- grids ---------- */

.grid-3 {
  display: grid;
  gap: clamp(24px, 3.4vw, 42px);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}
.grid-3 h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.grid-3 p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.62;
}

.benefit-list > li { border-top: 2px solid var(--forest); padding-top: 20px; }

.steps > li {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.step-n {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ---------- split sections ---------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.split-quote { align-items: start; }
.split p { color: var(--ink-soft); max-width: 54ch; }
.band-green .split p { color: rgba(247, 244, 237, .82); }
.split h2 { margin-bottom: 22px; }

.only-note {
  margin-top: 26px;
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  background: rgba(191, 85, 24, .06);
  font-size: 15.5px;
  color: var(--ink) !important;
}

.panel {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
}
.band-alt .panel { background: #fff; }
.panel h3 { font-size: 19px; margin-bottom: 18px; }
.ticks { list-style: none; margin: 0 0 18px; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--forest-mid);
  border-radius: 50%;
}
.panel-foot {
  font-size: 14px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  margin: 0;
}

.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--forest-line);
}
.area-list li {
  border-bottom: 1px solid var(--forest-line);
  padding: 18px 2px;
  font-family: var(--serif);
  font-size: clamp(19px, 2.4vw, 25px);
  color: #fff;
}

/* ---------- FAQ ---------- */

details {
  border-bottom: 1px solid var(--line);
}
details:first-of-type { border-top: 1px solid var(--line); }

summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 600;
  color: var(--ink);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -7px;
  border-right: 2px solid var(--forest-mid);
  border-bottom: 2px solid var(--forest-mid);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
summary:hover { color: var(--forest-mid); }

.ans {
  padding: 0 44px 24px 0;
  max-width: 68ch;
}
.ans p { font-size: 16px; color: var(--ink-soft); margin: 0; }

/* ---------- call card ---------- */

.call-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 18px 26px 18px 20px;
  background: var(--forest);
  color: var(--bone);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color .18s ease;
}
.call-card:hover { background: var(--forest-deep); }
.call-card-ico {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 244, 237, .1);
  flex: none;
}
.call-card-ico svg { width: 19px; height: 19px; fill: currentColor; }
.call-card-txt { display: flex; flex-direction: column; }
.call-card-label {
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(247, 244, 237, .66);
}
.call-card-num {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 600;
  color: #fff;
  margin-top: 3px;
}

/* ---------- form ---------- */

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3.2vw, 36px);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: .02em;
  margin-bottom: 7px;
  color: var(--ink);
}
.opt {
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: lowercase;
  letter-spacing: 0;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px; /* 16px stops iOS zooming on focus */
  line-height: 1.5;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--bone-3);
  border-radius: var(--radius);
  padding: 12px 13px;
  transition: border-color .16s ease, background-color .16s ease;
}
.field textarea { resize: vertical; min-height: 104px; }
.field input:hover, .field textarea:hover { border-color: #cfc6b6; }
.field input:focus, .field textarea:focus {
  background: #fff;
  border-color: var(--forest-mid);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #a32d18; background: #fdf4f2; }

.hint { font-size: 13px; color: var(--ink-soft); margin: 7px 0 0; }
.err { font-size: 13.5px; font-weight: 550; color: #a32d18; margin: 7px 0 0; }

.hp {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

#f-submit[aria-busy="true"] { opacity: .72; cursor: progress; }

.form-foot { font-size: 13px; color: var(--ink-soft); margin: 14px 0 0; }

.status { margin-top: 16px; }
.status:empty { margin-top: 0; }
.status .ok, .status .bad {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.55;
}
.status .ok { background: #eaf3ee; border: 1px solid #b9d8c7; color: #14432f; }
.status .bad { background: #fbeeea; border: 1px solid #e8bfb3; color: #7e2a13; }
.status a { font-weight: 650; }

/* ---------- photo ---------- */

.photo { margin: 0; }
.photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bone-3);
}
.photo figcaption {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.photo .credit { display: block; margin-top: 4px; font-size: 12.5px; color: #7b8479; }

.section-lede {
  font-size: clamp(16.5px, 1.9vw, 18.5px);
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 34px;
}
.section-lede.light { color: rgba(247, 244, 237, .8); }

/* ---------- interactive tools ---------- */

.tool {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 34px);
  margin-bottom: clamp(34px, 5vw, 56px);
}
.band-alt .tool { background: #fff; }

.tool-viz svg { width: 100%; height: auto; display: block; }
.depth-svg, .acc-svg { border-radius: 2px; overflow: hidden; }

.viz-lbl { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; fill: #3c4a3d; }
.viz-lbl-muted { font-family: var(--sans); font-size: 11px; letter-spacing: .06em; fill: #8b9489; }
.viz-lbl-light { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .04em; fill: #e8efe9; }
.viz-num { font-family: var(--serif); font-size: 22px; font-weight: 600; fill: var(--orange); }
.viz-num-sm { font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: .03em; fill: var(--orange); }

.tool-ctl label {
  display: block;
  font-size: 13.5px;
  font-weight: 650;
  margin-bottom: 10px;
  color: var(--ink);
}
.tool-ctl label + input[type="range"] { margin-bottom: 2px; }
.tool-ctl input[type="range"] + .tool-scale + label { margin-top: 22px; }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 34px;
  background: transparent;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: var(--bone-3);
}
input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: var(--bone-3);
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  margin-top: -10px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(23, 26, 22, .28);
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(23, 26, 22, .28);
}
input[type="range"]:focus-visible { outline: 3px solid var(--forest-mid); outline-offset: 4px; }

.tool-scale {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-soft);
  margin: -2px 2px 0;
}

.tool-out {
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--bone-2);
  border-left: 3px solid var(--forest-mid);
  border-radius: 2px;
  min-height: 116px;
}
.band-alt .tool-out { background: var(--bone-2); }
.tool-out-h {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
}
.tool-out p:last-child { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.tool-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 16px; }

.facts > li { border-top: 2px solid var(--forest); padding-top: 20px; }

/* ---------- service-area locator ---------- */

.area-tool {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-bottom: 30px;
}

.locator {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 10px;
  max-width: 460px;
}
.loc-suwannee { grid-column: 1; grid-row: 1; }
.loc-columbia { grid-column: 2; grid-row: 1; }
.loc-baker    { grid-column: 3; grid-row: 1; }
.loc-union    { grid-column: 2 / span 2; grid-row: 2; }

.loc {
  font-family: var(--serif);
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 600;
  color: rgba(247, 244, 237, .82);
  background: rgba(247, 244, 237, .06);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius);
  padding: 20px 12px;
  min-height: 74px;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}
.loc:hover { background: rgba(247, 244, 237, .12); color: #fff; }
.loc.is-on {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.loc-tag {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 5px;
}
.loc-compass {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(157, 201, 182, .75);
}

.area-detail {
  border-left: 3px solid var(--orange);
  padding-left: 22px;
}
.area-detail h3 { font-size: clamp(22px, 2.8vw, 28px); color: #fff; margin-bottom: 8px; }
.area-detail p { color: rgba(247, 244, 237, .8); font-size: 15.5px; margin-bottom: 16px; }
.town-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.town-list li {
  font-size: 14.5px;
  color: #fff;
  background: rgba(247, 244, 237, .1);
  border: 1px solid var(--forest-line);
  border-radius: 999px;
  padding: 6px 14px;
}
.area-foot {
  color: rgba(247, 244, 237, .78) !important;
  max-width: 68ch;
  margin-bottom: 28px;
}

/* ---------- closing + footer ---------- */

.closing { background: var(--bone-2); }
.closing p { color: var(--ink-soft); max-width: 56ch; margin-inline: auto; margin-bottom: 30px; }

.site-foot {
  background: var(--charcoal);
  color: rgba(247, 244, 237, .74);
  padding-block: 54px;
  font-size: 15px;
}
.foot-in {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
}
.foot-brand .brand-name { color: #fff; font-size: 22px; display: block; margin-bottom: 8px; }
.foot-brand p { margin: 0; color: rgba(247, 244, 237, .66); }
.foot-links { list-style: none; margin: 0; padding: 0; }
.foot-links li { margin-bottom: 8px; }
.foot-links a { text-decoration: none; color: rgba(247, 244, 237, .86); border-bottom: 1px solid rgba(247, 244, 237, .24); }
.foot-links a:hover { color: #fff; border-bottom-color: #fff; }
.copy-credit { color: rgba(247, 244, 237, .38); margin-left: 10px; }
.copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(247, 244, 237, .14);
  padding-top: 22px;
  margin: 8px 0 0;
  font-size: 13.5px;
  color: rgba(247, 244, 237, .5);
}

/* ---------- mobile bottom bar ---------- */

.mobile-bar { display: none; }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .nav { display: none; }
  .split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .foot-in { grid-template-columns: 1fr; }
  .tool { grid-template-columns: 1fr; }
  .area-tool { grid-template-columns: 1fr; }
  .locator { max-width: 100%; }
}

@media (max-width: 700px) {
  body { font-size: 16.5px; }
  .grid-3 { grid-template-columns: 1fr; }
  .head-in { min-height: 62px; gap: 12px; }
  .brand-mark { width: 26px; height: 26px; }
  .brand-name { font-size: 19px; }
  .brand-sub { font-size: 9.5px; letter-spacing: .14em; }
  /* Icon only on a phone, but still a 44px tap target. */
  .head-call { padding: 12px 17px; min-height: 44px; }
  .head-call-label { display: none; }
  .head-call .ico { width: 19px; height: 19px; }
  .hero-in { padding-block: 60px 64px; }
  .hero h1 { max-width: 100%; }
  .hero-art { right: -34%; width: 132vw; opacity: .9; }
  .hero-cta .btn { width: 100%; }
  .call-card { width: 100%; margin-top: 24px; }
  .tool-out { min-height: 132px; }
  .loc { padding: 16px 8px; min-height: 66px; }
  .area-detail { padding-left: 16px; }
  .copy-credit { display: block; margin-top: 6px; }
  .ans, summary { padding-right: 34px; }

  /* bottom bar appears; keep it clear of the footer and any focused control */
  body { padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px)); }
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 80;
    background: rgba(34, 38, 31, .97);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(247, 244, 237, .14);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    transition: transform .2s ease;
  }
  /* While a form field has focus the bar steps aside, so it can never sit on
     top of the control someone is typing into. */
  body.typing .mobile-bar { transform: translateY(110%); }
  .mb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: var(--bar-h);
    font-size: 15.5px;
    font-weight: 650;
    text-decoration: none;
    color: var(--bone);
  }
  .mb-call { background: var(--orange); color: #fff; }
  .mb-quote { color: var(--bone); }
  .mb .ico { width: 16px; height: 16px; }
}

@media (max-width: 360px) {
  .brand-name { font-size: 17.5px; }
  .brand-sub { font-size: 9px; letter-spacing: .1em; }
  .btn-lg { padding: 15px 18px; font-size: 15.5px; }
}

/* ---------- motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-head, .mobile-bar, .hero-art { display: none !important; }
  body { color: #000; background: #fff; }
}
