/* ===========================================================================
   Hilos & Botones Alterations — Kissimmee, FL

   Design concept: the paper sewing pattern.
   The page is drawn as a pattern-drafting sheet — tissue-paper ground, a faint
   blue drafting grid, dashed cutting lines between sections, notch marks,
   grainline arrows, and annotations set in mono like a pattern maker's hand.

   Corner-radius philosophy: none. Paper is cut with shears; every edge is a
   straight cut. The only curves on the page are the drawn pattern pieces.
   =========================================================================== */

:root {
  color-scheme: light;

  /* --- color system --------------------------------------------------- */
  --paper:     #f7f2e9;  /* pattern tissue */
  --paper-2:   #f0e8da;  /* the sheet beneath */
  --paper-3:   #e7dcc9;
  --ink:       #1d1a16;  /* pencil */
  --ink-soft:  #6b6053;
  --ink-faint: #6f6455;  /* small text; 5.2:1 on paper, 4.8:1 on paper-2 */
  --pencil:    #9a8e7d;  /* drawn lines only -- never text */
  --rule:      #d9cbb4;  /* ruled line */
  --draft:     #7d97b5;  /* drafting blue, used only for the grid */
  --thread:    #a32b28;  /* spool red — the single accent */
  --thread-dk: #7d1f1d;
  --chalk:     #ffffff;
  --brass:     #a8792c;  /* pin brass */

  /* --- type ----------------------------------------------------------- */
  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --body:    "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1140px;
  --gut: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;

  /* The drafting grid: 1in major / quarter-inch minor, in pale drafting blue,
     over tissue. This is the page's texture — nothing is layered on top of it. */
  background-color: var(--paper);
  background-image:
    linear-gradient(to right,  rgba(125, 151, 181, .085) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(125, 151, 181, .085) 1px, transparent 1px),
    linear-gradient(to right,  rgba(125, 151, 181, .16)  1px, transparent 1px),
    linear-gradient(to bottom, rgba(125, 151, 181, .16)  1px, transparent 1px);
  background-size: 24px 24px, 24px 24px, 96px 96px, 96px 96px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

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

/* --- type hierarchy ---------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.018em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}

em { font-style: italic; }

a { color: var(--thread); }

/* Pattern-maker's annotation. Every eyebrow and small label on the page uses
   this: mono, tracked out, prefixed with a drawn notch. */
.mark {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mark::before {
  content: "";
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid var(--thread);
  flex: none;
}
.mark-light { color: rgba(247, 242, 233, .62); }

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

:focus-visible {
  outline: 2px solid var(--thread);
  outline-offset: 3px;
}

/* --- measuring tape down the left edge --------------------------------- */

.tape {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 22px;
  z-index: 5;
  pointer-events: none;
  background: var(--paper-2);
  border-right: 1px solid var(--rule);
  background-image:
    repeating-linear-gradient(to bottom, var(--pencil) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(to bottom, var(--ink-soft) 0 1px, transparent 1px 96px);
  background-size: 9px 16px, 15px 96px;
  background-position: right 0, right 0;
  background-repeat: repeat-y;
  opacity: .8;
}
@media (max-width: 1240px) { .tape { display: none; } }

/* =====================  HEADER  ===================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
/* The header sits on a running-stitch rule rather than a shadow. */
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--rule) 0 9px, transparent 9px 17px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark { width: 32px; height: 32px; color: var(--thread); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding-block: 4px;
  position: relative;
}
/* Hover draws a running stitch under the link. */
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--thread) 0 6px, transparent 6px 11px);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.2,.7,.3,1);
}
.nav a:hover::after { transform: scaleX(1); }

.header-end { display: flex; align-items: center; gap: 18px; }

.lang {
  display: flex;
  border: 1px solid var(--ink);
  flex: none;
}
.lang button {
  font: inherit;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  padding: 5px 10px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}
.lang button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

.header-call {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--thread);
  padding-bottom: 1px;
}

/* =====================  BUTTONS  =====================
   Square cut. Primary is a stamped block of thread red; the secondary is a
   pencil rule that fills on hover. No pills, no shadows. */

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 0;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { background: var(--thread); color: var(--paper); }
.btn-primary:hover { background: var(--thread-dk); }

.btn-line { border-color: var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }

.btn-cream { background: var(--paper); color: var(--ink); }
.btn-cream:hover { background: var(--chalk); }

.btn-line-light { border-color: rgba(247,242,233,.45); color: var(--paper); }
.btn-line-light:hover { background: rgba(247,242,233,.12); border-color: var(--paper); }

/* =====================  HERO  ===================== */

.hero { position: relative; }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 64px;
  align-items: center;
  padding-block: 92px 96px;
}

.hero h1 {
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 0.98;
  margin-bottom: 28px;
}
.hero h1 span,
.hero h1 em { display: block; }
.hero h1 .h1-b { padding-left: .09em; }
.hero h1 .h1-c {
  font-weight: 400;
  font-style: italic;
  color: var(--thread);
  padding-left: .18em;
}

.lede {
  font-size: clamp(18px, 1.7vw, 20.5px);
  color: var(--ink-soft);
  max-width: 40ch;
  margin: 0 0 34px;
}

.hero-open {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin: 28px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 44ch;
}
/* A brass pin head. */
.hero-open .pin {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 3px rgba(168,121,44,.18);
  flex: none;
  transform: translateY(-1px);
}

/* --- the pattern piece --- */

.hero-piece { margin: 0; }

.piece { display: block; width: 100%; height: auto; overflow: visible; }

.piece-cut path {
  fill: rgba(255,255,255,.55);
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-dasharray: 9 6;
}
.piece-seam path {
  fill: none;
  stroke: var(--pencil);
  stroke-width: 1;
}
.piece-detail path {
  fill: none;
  stroke: var(--pencil);
  stroke-width: 1;
  stroke-dasharray: 3 4;
}
.piece-detail .fold { stroke: var(--draft); stroke-dasharray: 14 5 3 5; opacity: .8; }
.piece-grain path { fill: none; stroke: var(--thread); stroke-width: 1.6; stroke-linecap: round; }
.piece-notch path { fill: var(--ink); }
.piece-dim path { fill: none; stroke: var(--pencil); stroke-width: 1; }

.piece-label {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .18em;
  fill: var(--ink);
  text-anchor: middle;
}
.piece-label-sm { font-size: 8.5px; fill: var(--pencil); letter-spacing: .2em; }

.piece-cap {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 18px;
}

/* Cutting line closing the hero. */
.cutline {
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--ink-soft) 0 11px, transparent 11px 20px);
  opacity: .45;
}

/* =====================  SECTIONS  ===================== */

.section { padding-block: 96px; }

.sec-head { max-width: 46ch; margin-bottom: 56px; }
.section h2 { font-size: clamp(30px, 4vw, 46px); }
.sec-lede { margin: 18px 0 0; color: var(--ink-soft); font-size: 17.5px; }

/* --- value: one large editorial statement, then annotated reasons ------- */

.value { padding-block: 104px 96px; }

.statement {
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.04;
  max-width: 17ch;
  margin-bottom: 64px;
}
.statement span, .statement em { display: block; }
.statement em {
  font-weight: 400;
  font-style: italic;
  color: var(--thread);
  padding-left: .1em;
}

.reasons {
  list-style: none;
  counter-reset: reason;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.reasons li {
  counter-increment: reason;
  padding: 30px 46px 8px 0;
  border-right: 1px dashed var(--rule);
  position: relative;
}
.reasons li:last-child { border-right: 0; }
.reasons li:not(:first-child) { padding-left: 34px; }
/* Pattern-piece numbering, in the margin. */
.reasons li::before {
  content: counter(reason, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--thread);
  display: block;
  margin-bottom: 14px;
}
.reasons h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.reasons p { margin: 0; color: var(--ink-soft); font-size: 16px; }

/* --- services: the back of a pattern envelope -------------------------- */

.services-sec {
  background: var(--paper-2);
  border-block: 1px solid var(--rule);
}

.services {
  list-style: none;
  counter-reset: piece;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
}
.services li {
  counter-increment: piece;
  display: grid;
  grid-template-columns: 92px minmax(0, 24ch) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px dashed var(--rule);
  transition: background-color .25s ease, padding-left .25s cubic-bezier(.2,.7,.3,1);
}
.services li:hover { background: rgba(255,255,255,.55); padding-left: 12px; }
/* The one visible string the toggle cannot reach -- textContent never touches
   generated content -- so it switches on the lang attribute instead. */
.services li::before {
  content: "PIECE " counter(piece, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  color: var(--ink-faint);
}
[data-lang="es"] .services li::before {
  content: "PIEZA " counter(piece, decimal-leading-zero);
}
.services h3 { font-size: clamp(22px, 2.4vw, 29px); font-weight: 600; }
.services p { margin: 0; color: var(--ink-soft); font-size: 16px; }

/* The "anything else" note, drawn as a note pinned to the sheet. */
.ask {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  align-items: center;
  background: var(--chalk);
  border: 1px solid var(--ink);
  border-left: 5px solid var(--thread);
  padding: 30px 34px;
}
.ask-text { margin: 0; font-size: 17px; max-width: 62ch; }
.ask-link {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  color: var(--thread);
  white-space: nowrap;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
}
.ask-link:hover { color: var(--thread-dk); }

/* --- how it works: three steps on one running stitch ------------------- */

.how { padding-block: 104px; }

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  position: relative;
}
/* The thread running through all three steps. */
.steps::before {
  content: "";
  position: absolute;
  left: 22px;
  /* stop dead at the centre of the third button rather than running off */
  right: calc((100% - 88px) / 3 - 22px);
  top: 21px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--thread) 0 8px, transparent 8px 15px);
  opacity: .55;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-top: 68px;
}
/* Each step is a button sewn onto the thread. */
.steps li::before {
  content: counter(step);
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  color: var(--ink);
}
.steps h3 { font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 16px; }

/* --- the shop: a spec table, not testimonials -------------------------- */

.spec {
  background: var(--paper-2);
  border-block: 1px solid var(--rule);
}
.spec h2 { margin-bottom: 48px; font-size: clamp(30px, 4vw, 46px); }

.spec-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
}
.spec-list > div {
  display: grid;
  grid-template-columns: minmax(0, 15ch) minmax(0, 1fr);
  gap: 28px;
  padding: 26px 34px 26px 0;
  border-bottom: 1px dashed var(--rule);
}
.spec-list > div:nth-child(odd) { border-right: 1px dashed var(--rule); }
.spec-list > div:nth-child(even) { padding-left: 34px; }
.spec-list dt {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.spec-list dd { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* --- hours & location -------------------------------------------------- */

.visit-sec { padding-block: 96px; }

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
}
.visit-block h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 26px; }

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}
.hours th, .hours td {
  padding: 12px 0;
  text-align: left;
  border-bottom: 1px dashed var(--rule);
  font-weight: 400;
}
.hours th { color: var(--ink); }
.hours td { text-align: right; color: var(--ink-soft); font-family: var(--mono); font-size: 14px; }
.hours tr:first-child th, .hours tr:first-child td { border-top: 1px solid var(--ink); }
.hours .closed th, .hours .closed td { color: var(--ink-faint); }

address {
  font-style: normal;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.visit-link { margin: 0 0 10px; }
.visit-link a {
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: .06em;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--rule);
  padding-bottom: 2px;
  transition: border-color .18s ease;
}
.visit-link a:hover { border-bottom-color: var(--thread); }

/* =====================  CLOSER  =====================
   The one dark moment on the page — ink, with the drafting grid still faintly
   showing through, so it reads as the same sheet turned over. */

.closer {
  background-color: var(--ink);
  background-image:
    linear-gradient(to right,  rgba(247,242,233,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(247,242,233,.045) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px;
  color: var(--paper);
}
.closer-inner { padding-block: 104px 110px; }
.closer h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  margin-bottom: 26px;
}
.closer h2 span, .closer h2 em { display: block; }
.closer h2 em {
  font-weight: 400;
  font-style: italic;
  color: #e8a09e;
  padding-left: .1em;
}
.closer-lede {
  font-size: 18.5px;
  color: rgba(247,242,233,.72);
  max-width: 48ch;
  margin: 0 0 38px;
}

/* =====================  FOOTER  ===================== */

.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  padding-top: 56px;
  font-size: 15px;
  color: var(--ink-soft);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  padding-bottom: 44px;
}
.site-footer p { margin: 0 0 5px; }
.site-footer a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); }
.site-footer a:hover { border-bottom-color: var(--thread); }

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { width: 30px; height: 30px; color: var(--thread); flex: none; }
.footer-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 !important;
}

.footer-legal {
  border-top: 1px dashed var(--rule);
  padding-block: 20px 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.footer-legal p { margin: 0; }
.footer-es { color: var(--thread); }

/* =====================  MOBILE CALL BAR  ===================== */

.call-bar { display: none; }

/* =====================  MOTION  =====================
   Everything below only ever runs when JS has marked the document and the
   reader has not asked for reduced motion. Content is visible by default. */

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(16px);
  }
  .js .reveal.in {
    opacity: 1;
    transform: none;
    transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  }
  /* Stagger siblings within a list so the steps thread on one at a time. */
  .js .reasons li.in,
  .js .services li.in,
  .js .steps li.in,
  .js .spec-list > div.in { transition-delay: var(--d, 0ms); }

  /* The pattern piece is traced onto the sheet top to bottom, the way a
     pattern is actually drafted, and the grainline is ruled in last. */
  .js .piece {
    clip-path: inset(0 0 100% 0);
    animation: trace 1.5s cubic-bezier(.3,.65,.25,1) .15s forwards;
  }
  .js .piece-grain path {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: rule 1.1s cubic-bezier(.35,.6,.2,1) 1.15s forwards;
  }
  .js .piece-label {
    opacity: 0;
    animation: inkin .9s ease 1.5s forwards;
  }
}

@keyframes trace { to { clip-path: inset(0 0 -6% 0); } }
@keyframes rule  { to { stroke-dashoffset: 0; } }
@keyframes inkin { to { opacity: 1; } }

/* =====================  RESPONSIVE  ===================== */

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; padding-block: 64px 72px; }
  .hero-piece { max-width: 300px; }
  .reasons { grid-template-columns: 1fr; }
  .reasons li { border-right: 0; border-bottom: 1px dashed var(--rule); padding: 26px 0 22px !important; }
  .reasons li:last-child { border-bottom: 0; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .steps::before { display: none; }
  .steps li { padding-top: 0; padding-left: 62px; min-height: 46px; }
  .spec-list { grid-template-columns: 1fr; }
  .spec-list > div { border-right: 0 !important; padding: 24px 0 !important; }
  .visit { grid-template-columns: 1fr; gap: 52px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  :root { --gut: 20px; }

  .header-inner { min-height: 62px; gap: 14px; }
  .nav, .header-call { display: none; }
  .brand-mark { width: 28px; height: 28px; }
  .brand-name { font-size: 18px; }

  .section, .value, .how, .visit-sec { padding-block: 62px; }
  .closer-inner { padding-block: 70px 76px; }
  .sec-head { margin-bottom: 40px; }

  .hero h1 { font-size: clamp(38px, 11vw, 54px); }
  .btn { flex: 1 1 auto; justify-content: center; }

  .services li {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 22px 0;
  }
  .services li:hover { padding-left: 0; }

  .ask { grid-template-columns: 1fr; padding: 26px 24px; }

  .spec-list > div { grid-template-columns: 1fr; gap: 8px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-legal { flex-direction: column; gap: 8px; }

  /* Sticky call bar — on a phone the phone number is the entire point. */
  .call-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--thread);
    color: var(--paper);
    font-weight: 700;
    text-decoration: none;
    border-top: 1px solid var(--thread-dk);
  }
  .call-bar svg { width: 18px; height: 18px; }
  .site-footer { padding-bottom: 68px; }
}

@media print {
  .site-header, .call-bar, .tape, .lang { display: none; }
  body { background: #fff; }
  .closer { background: #fff; color: #000; }
}
