/* ============================================================
   SHAKESPEARE RENTALS — blueprint & steel.
   Deep navy ground, a faint drafting grid, orange used the way a
   job site uses it: as the safety color. Reveals are a measurement
   line sweeping the block; dimensions draw themselves; specs read
   out in mono. Paper elements (the estimate ticket, the rate card)
   print light, like sheets pinned to the board.
   ============================================================ */

:root {
  --ink:        #0A1322;   /* page ground */
  --ink-2:      #0F1A2B;   /* logo navy — panels */
  --panel:      #101E33;
  --line:       rgba(226, 233, 244, .14);
  --line-soft:  rgba(226, 233, 244, .07);
  --grid:       rgba(226, 233, 244, .045);
  --paper:      #F5F2EC;   /* printed sheets */
  --paper-dim:  #EAE6DC;
  --text:       #E9EDF4;
  --muted:      #93A0B4;
  --steel:      #6E7B90;
  --orange:     #F2700F;
  --orange-2:   #D65A08;
  --ok:         #3FBF7F;
  --font: 'Archivo', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* the drafting grid — one layer, whole page, fixed so sections share it */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(rgba(226,233,244,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,233,244,.08) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px, 120px 120px, 120px 120px;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--orange); color: var(--ink); }

.wrap { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---------- type ---------- */
.h-xl, .h-lg, .h-md {
  font-weight: 800; font-style: italic; text-transform: uppercase;
  letter-spacing: -.015em; line-height: .96; text-wrap: balance;
}
.h-xl { font-size: clamp(46px, 7.2vw, 96px); }
.h-lg { font-size: clamp(30px, 4.4vw, 54px); }
.h-md { font-size: clamp(21px, 2.6vw, 28px); }
.h-xl em, .h-lg em { font-style: italic; color: var(--orange); }
.lede { color: var(--muted); font-size: clamp(16px, 1.6vw, 18px); max-width: 60ch; }
.mono {
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 500;
}
.mono--dim { color: var(--steel); }
.num { font-variant-numeric: tabular-nums; }

/* ---------- reveal: the measurement sweep ----------
   A block hides behind a clip edge; an orange measuring edge rides the
   clip across, then passes through. 2px sliver stays so layout & rect
   checks never see zero size (clip-path deadlock — see README). */
html.js .r {
  position: relative;
  clip-path: inset(0 calc(100% - 2px) 0 0);
  transition: clip-path .95s cubic-bezier(.22, .61, .2, 1);
}
html.js .r.is-in { clip-path: inset(0 0 0 0); }
html.js .r::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 2px;
  background: var(--orange); opacity: 0; pointer-events: none;
}
html.js .r.is-in::after { animation: sweep .95s cubic-bezier(.22, .61, .2, 1) both; }
@keyframes sweep {
  0%   { left: 0;    opacity: 1; }
  88%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
html.js .r.d1 { transition-delay: .12s; } html.js .r.is-in.d1::after { animation-delay: .12s; }
html.js .r.d2 { transition-delay: .24s; } html.js .r.is-in.d2::after { animation-delay: .24s; }
html.js .r.d3 { transition-delay: .36s; } html.js .r.is-in.d3::after { animation-delay: .36s; }

/* dimension lines inside SVGs draw themselves once their block opens */
html.js .dim-draw { stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset 1.1s cubic-bezier(.3,.6,.2,1) .45s; }
html.js .is-in .dim-draw, html.js .is-open .dim-draw { stroke-dashoffset: 0; }
html:not(.js) .dim-draw { stroke-dasharray: none; }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ink) 86%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.hdr__in { display: flex; align-items: center; gap: 28px; padding: 14px 0; }
.hdr__logo img { height: 44px; width: auto; }
.hdr__nav { display: flex; gap: 22px; margin-left: auto; }
.hdr__nav a { text-decoration: none; color: var(--muted); transition: color .2s; }
.hdr__nav a:hover { color: var(--text); }
.hdr__call {
  text-decoration: none; border: 1px solid var(--orange); color: var(--orange);
  padding: 9px 16px; transition: background .2s, color .2s;
}
.hdr__call:hover { background: var(--orange); color: var(--ink); }
@media (max-width: 900px) { .hdr__nav { display: none; } .hdr__call { margin-left: auto; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; border: 0;
  font-family: var(--mono); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 26px; background: var(--orange); color: #0A1322; font-weight: 500;
  transition: background .2s, transform .2s;
}
.btn:hover { background: #FF850F; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1px var(--line); }
.btn--ghost:hover { background: rgba(226,233,244,.06); }
.btn--paper { background: var(--ink-2); color: var(--paper); }
.btn--paper:hover { background: #16253C; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.hero__in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; min-height: calc(100vh - 73px); padding: 60px 0 80px; }
.hero__status { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 0 0 26px; color: var(--steel); }
.hero__status span::before { content: '— '; color: var(--orange); }
.hero__copy .lede { margin: 26px 0 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__draw { position: relative; }
.hero__draw svg { width: 100%; height: auto; display: block; }
@media (max-width: 980px) {
  .hero__in { grid-template-columns: 1fr; min-height: 0; padding: 48px 0 56px; }
  .hero__draw { max-width: 420px; margin: 0 auto; }
}

/* ---------- section chrome ---------- */
.sec { padding: 104px 0; border-bottom: 1px solid var(--line-soft); position: relative; scroll-margin-top: 64px; }
.sec--paperline { border-bottom-style: dashed; }
.shead { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; margin-bottom: 56px; }
.shead__n {
  font-family: var(--mono); color: var(--orange); font-size: 13px; letter-spacing: .14em;
  border: 1px solid var(--orange-2); padding: 6px 10px; margin-top: 6px; white-space: nowrap;
}
.shead__rail .mono { display: block; color: var(--steel); margin-bottom: 12px; }
.shead__rail .lede { margin-top: 18px; }
@media (max-width: 700px) { .shead { grid-template-columns: 1fr; gap: 12px; } .shead__n { justify-self: start; } }

/* ---------- 01 fleet ---------- */
.fleet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .fleet { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.mach {
  background: var(--panel); border: 1px solid var(--line);
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: border-color .25s, transform .25s;
}
.mach:hover { border-color: var(--orange-2); transform: translateY(-3px); }
.mach__draw { padding: 22px 18px 0; }
.mach__draw svg { width: 100%; height: auto; display: block; }
.mach__body { padding: 20px 22px 24px; border-top: 1px solid var(--line-soft); margin-top: 18px; }
.mach__model { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.mach__model b { font-size: 24px; font-style: italic; font-weight: 800; letter-spacing: -.01em; }
.mach__model .mono { color: var(--orange); }
.mach__tag { color: var(--muted); font-size: 14.5px; min-height: 44px; }
.mach__specs { margin: 16px 0 18px; border-top: 1px dashed var(--line); }
.mach__specs div { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 13.5px; }
.mach__specs span { color: var(--steel); }
.mach__specs b { font-family: var(--mono); font-weight: 500; font-size: 12.5px; letter-spacing: .04em; }
.mach__go { margin-top: auto; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.mach__go::after { content: ' →'; }
.fleet-more {
  margin-top: 26px; border: 1px dashed var(--line); padding: 22px 26px;
  display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between;
  color: var(--muted);
}
.fleet-more b { color: var(--text); font-weight: 600; }
.fleet-more a { color: var(--orange); }

/* ---------- 02 size & price ---------- */
.calc { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: start; }
.calc > * { min-width: 0; }
@media (max-width: 980px) { .calc { grid-template-columns: 1fr; } }
.calc__in { background: var(--panel); border: 1px solid var(--line); padding: 28px; }
.calc__step { margin-bottom: 26px; }
.calc__step > .mono { display: block; color: var(--orange); margin-bottom: 16px; }
.field { display: block; margin-bottom: 18px; border: 0; }
.field > .mono, .field legend.mono { display: block; color: var(--steel); margin-bottom: 8px; }
.field input[type="date"], .field input[type="number"], .field select, .field input[type="text"], .field input[type="tel"], .field input[type="email"], .field textarea {
  width: 100%; background: var(--ink); color: var(--text);
  border: 1px solid var(--line); padding: 12px 13px; font: inherit; font-size: 15px;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%23F2700F'/></svg>");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px;
}
.field :focus-visible { outline: 2px solid var(--orange); outline-offset: 1px; }
.field input::-webkit-calendar-picker-indicator { filter: invert(.8); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em;
  border: 1px solid var(--line); background: var(--ink); color: var(--muted);
  padding: 9px 13px; transition: all .15s;
}
.chip:hover { color: var(--text); border-color: var(--steel); }
.chip.is-on { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.opts { display: grid; gap: 8px; }
.opt {
  display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center;
  border: 1px solid var(--line); background: var(--ink); padding: 12px 14px; cursor: pointer;
  transition: border-color .15s;
}
.opt:hover { border-color: var(--steel); }
.opt input { position: absolute; opacity: 0; }
.opt__dot { width: 14px; height: 14px; border: 1px solid var(--steel); border-radius: 50%; position: relative; }
.opt input:checked ~ .opt__dot { border-color: var(--orange); }
.opt input:checked ~ .opt__dot::after { content: ''; position: absolute; inset: 3px; background: var(--orange); border-radius: 50%; }
.opt input:checked ~ .opt__l { color: var(--text); }
.opt input:focus-visible ~ .opt__dot { outline: 2px solid var(--orange); outline-offset: 2px; }
.opt__l { font-size: 14.5px; color: var(--muted); }
.opt__l small { display: block; font-size: 12.5px; color: var(--steel); margin-top: 2px; }
.opt__p { font-family: var(--mono); font-size: 13px; color: var(--text); }
.opt.is-picked { border-color: var(--orange-2); }

/* the sizer verdict strip */
.verdict { border: 1px solid var(--orange-2); background: rgba(242,112,15,.06); padding: 16px 18px; margin-top: 4px; display: none; }
.verdict.is-on { display: grid; grid-template-columns: 1fr auto; gap: 8px 18px; align-items: center; }
.verdict__name { font-weight: 800; font-style: italic; font-size: 19px; }
.verdict__why { grid-column: 1 / -1; color: var(--muted); font-size: 13.5px; }
.verdict__why s, .verdict__why b { font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; }
.verdict__why b { color: var(--ok); margin-right: 14px; }
.verdict--source { border-color: var(--line); background: var(--panel); }
.verdict--source .verdict__name { font-size: 16px; font-style: normal; font-weight: 600; }

/* the estimate ticket — printed paper pinned to the board */
.ticket { background: var(--paper); color: var(--ink-2); padding: 30px 28px 26px; position: sticky; top: 96px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.ticket::before { /* perforated top edge */
  content: ''; display: block; height: 8px; margin: -30px -28px 22px;
  background: radial-gradient(circle at 8px 0, transparent 5px, var(--ink) 5px) 0 -4px / 16px 8px repeat-x;
}
.ticket__head { display: flex; justify-content: space-between; align-items: center; gap: 14px; border-bottom: 2px solid var(--ink-2); padding-bottom: 14px; margin-bottom: 6px; }
.ticket__head img { height: 34px; width: auto; }
.ticket__head .mono { color: var(--orange-2); }
.bill__row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px dashed rgba(15,26,43,.25); font-size: 14.5px; }
.bill__row small { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .05em; color: #6B7482; margin-top: 3px; text-transform: uppercase; }
.bill__row b { font-family: var(--mono); font-weight: 500; white-space: nowrap; }
.bill__row.zero b { color: var(--ok); }
.bill__row.save b, .bill__row.save { color: var(--orange-2); border-bottom-style: solid; }
.bill__tot { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0 4px; }
.bill__tot span { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.bill__tot b { font-size: 34px; font-weight: 800; font-style: italic; letter-spacing: -.01em; }
.ticket__note { font-size: 12.5px; color: #6B7482; margin-top: 14px; line-height: 1.5; }
.ticket__note b { color: var(--ink-2); }
.ticket__cta { display: grid; gap: 10px; margin-top: 18px; }
@media (max-width: 980px) { .ticket { position: static; } }

/* ---------- 03 process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step { border: 1px solid var(--line); background: var(--panel); padding: 26px; }
.step .mono { color: var(--orange); display: block; margin-bottom: 14px; }
.step h3 { font-size: 20px; font-style: italic; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- 04 rates & area ---------- */
.rates { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: start; }
@media (max-width: 980px) { .rates { grid-template-columns: 1fr; } }
.rate-card { background: var(--paper); color: var(--ink-2); padding: 26px 26px 20px; box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.rate-card .mono { color: var(--orange-2); }
.rate-card table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.rate-card th { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #6B7482; text-align: right; padding: 8px 0; border-bottom: 2px solid var(--ink-2); }
.rate-card th:first-child { text-align: left; }
.rate-card td { padding: 12px 0; border-bottom: 1px dashed rgba(15,26,43,.25); font-size: 14.5px; text-align: right; font-family: var(--mono); }
.rate-card td:first-child { text-align: left; font-family: var(--font); font-weight: 600; }
.rate-card td small { display: block; font-family: var(--mono); font-size: 10.5px; color: #6B7482; letter-spacing: .04em; }
.rate-card__foot { font-size: 12.5px; color: #6B7482; margin-top: 14px; line-height: 1.55; }
.zones { border: 1px solid var(--line); background: var(--panel); padding: 26px; }
.zones svg { width: 100%; height: auto; display: block; margin-bottom: 6px; }
.zone-rows { margin-top: 10px; }
.zone-rows div { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 13.5px; align-items: baseline; }
.zone-rows div:last-child { border-bottom: 0; }
.zone-rows .mono { color: var(--orange); }
.zone-rows span:nth-child(2) { color: var(--muted); }
.zone-rows b { font-family: var(--mono); font-weight: 500; }

/* ---------- 05 safety ---------- */
.safety { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .safety { grid-template-columns: 1fr; } }
.safe { border: 1px solid var(--line); background: var(--panel); padding: 26px; }
.safe h3 { font-size: 18px; font-style: italic; font-weight: 800; text-transform: uppercase; margin-bottom: 14px; }
.safe ul { list-style: none; }
.safe li { padding: 9px 0 9px 22px; border-bottom: 1px dashed var(--line); color: var(--muted); font-size: 14px; position: relative; }
.safe li::before { content: ''; position: absolute; left: 0; top: 15px; width: 10px; height: 10px; border: 2px solid var(--orange); }
.safe li:last-child { border-bottom: 0; }
.manuals { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .manuals { grid-template-columns: 1fr; } }
.manual { border: 1px dashed var(--line); padding: 16px 18px; display: flex; justify-content: space-between; gap: 12px; align-items: center; color: var(--muted); font-size: 14px; }
.manual .mono { color: var(--steel); }

/* ---------- 06 accounts ---------- */
.acct { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: center; border: 1px solid var(--line); background: var(--panel); padding: 40px; }
@media (max-width: 900px) { .acct { grid-template-columns: 1fr; padding: 28px; } }
.acct ul { list-style: none; margin-top: 18px; }
.acct li { padding: 10px 0; border-bottom: 1px dashed var(--line); color: var(--muted); display: flex; gap: 14px; align-items: baseline; }
.acct li .mono { color: var(--orange); white-space: nowrap; }
.acct__cta { display: grid; gap: 12px; justify-items: start; }

/* ---------- 07 faq ---------- */
.faq { max-width: 860px; }
.q { border: 1px solid var(--line); background: var(--panel); margin-bottom: 10px; }
.q summary { display: flex; gap: 18px; align-items: baseline; padding: 18px 20px; cursor: pointer; list-style: none; font-weight: 600; }
.q summary::-webkit-details-marker { display: none; }
.q summary .mono { color: var(--orange); }
.q summary::after { content: '+'; margin-left: auto; font-family: var(--mono); color: var(--steel); font-size: 16px; }
.q[open] summary::after { content: '–'; }
.q__body { padding: 0 20px 20px 20px; color: var(--muted); font-size: 14.5px; }
.q__body p + p { margin-top: 10px; }

/* ---------- 08 quote ---------- */
.quote { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
@media (max-width: 980px) { .quote { grid-template-columns: 1fr; } }
.quote__info > .mono { color: var(--steel); display: block; margin: 22px 0 4px; }
.quote__info a { color: var(--text); text-decoration: none; font-size: 20px; font-weight: 600; }
.quote__info a:hover { color: var(--orange); }
.qform { background: var(--panel); border: 1px solid var(--line); padding: 28px; }
.qform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 640px) { .qform__grid { grid-template-columns: 1fr; } }
.qform textarea { min-height: 96px; resize: vertical; }
.qform__est { border: 1px dashed var(--orange-2); background: rgba(242,112,15,.05); padding: 12px 14px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--muted); margin-bottom: 18px; display: none; white-space: pre-wrap; }
.qform__est.is-on { display: block; }
.qform__note { font-size: 12.5px; color: var(--steel); margin-top: 12px; }
.form-ok { border: 1px solid var(--ok); color: var(--ok); padding: 14px 16px; margin-top: 14px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em; display: none; }
.form-ok.is-on { display: block; }

/* ---------- footer ---------- */
.foot { padding: 56px 0 120px; }
.foot__grid { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between; }
.foot__grid img { height: 52px; width: auto; }
.foot__base { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 8px 30px; justify-content: space-between; color: var(--steel); font-size: 12.5px; }
.foot__ez { color: var(--steel); text-decoration: none; }
.foot__ez:hover { color: var(--orange); }
.quote__sub { display: block; color: var(--muted); font-size: 13.5px; margin-top: 2px; }
.mach__draw img { width: 100%; height: auto; display: block; }

/* ---------- the title block: the drawing sheet's right rail ----------
   Real drafting sheets reserve an edge strip for the title block. At
   desktop widths the page does the same: content shifts left, the rail
   carries the brand line and the live sheet readout. */
.tblock { display: none; }
@media (min-width: 1440px) {
  body { padding-right: 220px; }
  .tblock {
    display: flex; flex-direction: column; justify-content: space-between;
    position: fixed; top: 0; right: 0; bottom: 0; width: 220px; z-index: 40;
    border-left: 1px solid var(--line);
    font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
    color: var(--steel);
  }
  .tblock__brand {
    writing-mode: vertical-rl; letter-spacing: .34em; font-size: 10px;
    padding: 26px 0; align-self: center; color: var(--steel); white-space: nowrap;
  }
  .tblock__brand b { color: var(--orange); font-weight: 500; }
  .tblock__rows { border-top: 1px solid var(--line); }
  .tblock__rows div { display: flex; justify-content: space-between; gap: 14px; padding: 8px 14px; border-bottom: 1px solid var(--line-soft); }
  .tblock__rows div:last-child { border-bottom: 0; }
  .tblock__rows b { color: var(--text); font-weight: 500; text-align: right; }
  .tblock__rows .tblock__sheet b { color: var(--orange); }
}

/* ---------- mobile action bar ---------- */
.mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: none;
  grid-template-columns: 1fr 1fr 1.4fr; border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink) 94%, transparent); backdrop-filter: blur(10px); }
.mbar a { text-decoration: none; text-align: center; padding: 15px 6px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text); border-right: 1px solid var(--line-soft); }
.mbar a:last-child { border-right: 0; background: var(--orange); color: var(--ink); font-weight: 500; }
@media (max-width: 900px) { .mbar { display: grid; } .foot { padding-bottom: 140px; } }

/* ---------- machine pages ---------- */
.mp-hero { padding: 64px 0 72px; border-bottom: 1px solid var(--line-soft); }
.mp-hero__in { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 980px) { .mp-hero__in { grid-template-columns: 1fr; } .mp-hero__draw { max-width: 420px; margin: 0 auto; } }
.crumb { color: var(--steel); font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 22px; display: block; }
.crumb a { color: var(--steel); text-decoration: none; }
.crumb a:hover { color: var(--orange); }
.mp-hero__draw svg { width: 100%; height: auto; display: block; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.spec-table td { padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.spec-table td:first-child { color: var(--steel); }
.spec-table td:last-child { text-align: right; font-family: var(--mono); font-size: 13px; }
.mp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
@media (max-width: 980px) { .mp-cols { grid-template-columns: 1fr; } }
.mp-panel { border: 1px solid var(--line); background: var(--panel); padding: 28px; }
.mp-panel h3 { font-size: 18px; font-style: italic; font-weight: 800; text-transform: uppercase; margin-bottom: 14px; }
.mp-panel ul { list-style: none; }
.mp-panel li { padding: 9px 0 9px 22px; border-bottom: 1px dashed var(--line); color: var(--muted); font-size: 14.5px; position: relative; }
.mp-panel li::before { content: ''; position: absolute; left: 0; top: 15px; width: 10px; height: 10px; border: 2px solid var(--orange); }
.mp-panel li:last-child { border-bottom: 0; }
.mp-other { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
@media (max-width: 640px) { .mp-other { grid-template-columns: 1fr; } }
.mp-other a { border: 1px solid var(--line); padding: 16px 18px; text-decoration: none; color: var(--muted); display: flex; justify-content: space-between; gap: 12px; transition: border-color .2s, color .2s; }
.mp-other a:hover { border-color: var(--orange-2); color: var(--text); }
.mp-other b { font-style: italic; }

/* sample-data flag */
.sample-flag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); border: 1px dashed var(--steel); padding: 3px 8px; display: inline-block; }

/* ---------- availability chips: the site reads the calendar ---------- */
.avail {
  display: inline-block; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 9px;
  border: 1px solid var(--ok); color: var(--ok); white-space: nowrap;
}
.avail--out { border-color: var(--orange-2); color: var(--orange); }
.mach .avail { margin-bottom: 12px; }
.ticket__avail {
  display: none; border: 1px dashed var(--orange-2); background: rgba(214,90,8,.07);
  color: #8A4A12; padding: 11px 13px; margin: 14px 0 0;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; line-height: 1.55;
}
.ticket__avail.is-on { display: block; }

/* ---------- 04 proof: reviews + the job wall ---------- */
.revs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .revs { grid-template-columns: 1fr; } }
.rev { border: 1px solid var(--line); background: var(--panel); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.rev__stars { color: var(--orange); letter-spacing: .3em; font-size: 15px; }
.rev__q { color: var(--text); font-size: 15px; line-height: 1.6; }
.rev__who { margin-top: auto; display: flex; justify-content: space-between; gap: 10px; align-items: baseline; color: var(--steel); font-size: 13px; }
.wall-head { display: block; margin: 34px 0 14px; }
.wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .wall { grid-template-columns: 1fr; } }
.tile { border: 1px dashed var(--line); aspect-ratio: 4 / 3; position: relative; overflow: hidden; }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile--empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--steel); }
.tile--empty .mono { font-size: 10.5px; }
.tile__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 7px 12px;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text);
}
.proof-google { margin-top: 22px; color: var(--steel); font-size: 13px; }
.proof-google a { color: var(--orange); }

/* ---------- service-area town pages ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; }
@media (max-width: 900px) { .facts { grid-template-columns: repeat(2, 1fr); } }
.fact { border: 1px solid var(--line); background: var(--panel); padding: 18px; }
.fact .mono { display: block; color: var(--steel); margin-bottom: 8px; }
.fact b { font-size: 20px; font-style: italic; font-weight: 800; }
.fact small { display: block; color: var(--muted); font-size: 12.5px; margin-top: 4px; }
.town-fleet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .town-fleet { grid-template-columns: 1fr; } }
.town-fleet a { border: 1px solid var(--line); background: var(--panel); padding: 20px; text-decoration: none; color: inherit; transition: border-color .2s; }
.town-fleet a:hover { border-color: var(--orange-2); }
.town-fleet b { font-style: italic; font-size: 19px; }
.town-fleet .mono { display: block; color: var(--steel); margin-top: 8px; }
.town-fleet .mono em { color: var(--orange); font-style: normal; }
.avail-board div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line); align-items: baseline; }
.avail-board div:last-child { border-bottom: 0; }
.avail-board b { font-style: italic; }
.town-links { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); line-height: 2.1; color: var(--steel); }
.town-links a { color: var(--muted); text-decoration: none; }
.town-links a:hover { color: var(--orange); }
.town-links a + a::before { content: '· '; color: var(--steel); margin: 0 2px; }
