/* =============================================================================
   Allo Aissa — design system
   Signature: dispatch board. Ink + hi-vis signal yellow, hairline rules, mono
   meta labels carrying an index number, square-shouldered cards ("tickets").
   Nothing here is shared with another site in this estate: the palette, the
   Archivo/Chivo Mono pairing, the rule-and-index header, the ticket card and the
   split hero are drawn for this project only.
   ============================================================================= */

/* ---- tokens ------------------------------------------------------------- */
:root{
  --ink:#0E1113;          /* text, dark sections */
  --ink-800:#171C20;
  --ink-600:#2B3238;
  --asphalt:#586069;      /* secondary text on light */
  --asphalt-2:#8C949B;    /* meta text */
  --line:#E2E4E0;         /* hairline on light */
  --line-2:#EFF0EC;
  --line-dark:#2A3036;    /* hairline on ink */
  --paper:#F6F6F3;
  --white:#FFFFFF;

  --signal:#FFC53D;       /* hi-vis, the courier colour */
  --signal-600:#EDAF12;
  --signal-100:#FFF4D6;

  --wa:#1FA855;           /* WhatsApp, darkened so white text passes AA */
  --wa-700:#178644;
  --live:#12B76A;
  --alert:#C8302F;

  --maxw:1200px;
  --gut:clamp(20px,4.2vw,48px);
  --r:4px;                /* square-shouldered: no bubble radii anywhere */
  --r-lg:6px;
  --sp:clamp(64px,8vw,120px);

  --shadow-1:0 1px 2px rgba(14,17,19,.05), 0 8px 24px -16px rgba(14,17,19,.28);
  --shadow-2:0 2px 4px rgba(14,17,19,.06), 0 24px 48px -28px rgba(14,17,19,.35);
  --ease:cubic-bezier(.2,.6,.2,1);
}

/* ---- reset -------------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd,ul,ol{margin:0}
ul[class],ol[class]{list-style:none;padding:0}
img,svg,video{display:block;max-width:100%}
img{height:auto}
button,input,select,textarea{font:inherit;color:inherit}
a{color:inherit}
:where(a){text-decoration-thickness:1px;text-underline-offset:3px}

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

body{
  font-family:Archivo,"Helvetica Neue",Arial,sans-serif;
  font-size:1.0625rem;
  line-height:1.62;
  font-weight:420;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

/* ---- typography --------------------------------------------------------- */
h1,h2,h3,h4{font-weight:760;line-height:1.06;letter-spacing:-.028em;text-wrap:balance}
.display{font-size:clamp(2.7rem,6.4vw,5.1rem);font-weight:800;letter-spacing:-.042em;line-height:.94}
h1{font-size:clamp(2.3rem,4.6vw,3.6rem)}
h2{font-size:clamp(1.85rem,3.3vw,2.9rem);letter-spacing:-.034em}
h3{font-size:clamp(1.15rem,1.6vw,1.35rem);letter-spacing:-.018em;line-height:1.2}
h4{font-size:1rem;letter-spacing:-.01em}
p{text-wrap:pretty}
.lede{font-size:clamp(1.08rem,1.5vw,1.3rem);line-height:1.55;color:var(--asphalt);font-weight:430}
.small{font-size:.9375rem}
strong,b{font-weight:680}

.mono{
  font-family:"Chivo Mono",ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:.72rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;
  font-variant-numeric:tabular-nums;
}
.num{font-variant-numeric:tabular-nums;font-feature-settings:"tnum" 1}

/* ---- layout ------------------------------------------------------------- */
.wrap{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gut)}
.section{padding-block:var(--sp)}
.section--tight{padding-block:clamp(48px,5.5vw,80px)}
.section--ink{background:var(--ink);color:var(--white)}
.section--ink .lede,.section--ink .meta{color:#A9B1B8}
.section--paper{background:var(--paper)}
.section--white{background:var(--white)}
.stack>*+*{margin-top:1rem}

/* The header signature: a hairline that carries an index + label on the left,
   the heading under it, and the lede offset into the right column. */
.rule-head{border-top:1.5px solid var(--ink);padding-top:18px;margin-bottom:clamp(28px,3.6vw,52px)}
.section--ink .rule-head{border-color:var(--signal)}
.rule-head__meta{display:flex;gap:14px;align-items:baseline;color:var(--asphalt);margin-bottom:clamp(18px,2.4vw,30px)}
.section--ink .rule-head__meta{color:var(--signal)}
.rule-head__meta .idx{color:var(--ink)}
.section--ink .rule-head__meta .idx{color:var(--signal)}
.rule-head__grid{display:grid;grid-template-columns:minmax(0,1fr);gap:clamp(14px,2vw,40px)}
@media (min-width:900px){
  .rule-head__grid{grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);align-items:end}
  .rule-head__grid .lede{padding-bottom:.35rem}
}

/* ---- buttons ------------------------------------------------------------ */
.btn{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.86rem 1.4rem;border-radius:var(--r);border:1.5px solid transparent;
  font-weight:680;font-size:.98rem;letter-spacing:-.012em;line-height:1;
  text-decoration:none;cursor:pointer;white-space:nowrap;
  transition:background .18s var(--ease),color .18s var(--ease),border-color .18s var(--ease),transform .18s var(--ease);
}
.btn:active{transform:translateY(1px)}
.btn svg{width:1.15em;height:1.15em;flex:none}
.btn--signal{background:var(--signal);border-color:var(--signal);color:var(--ink)}
.btn--signal:hover{background:var(--signal-600);border-color:var(--signal-600)}
.btn--ink{background:var(--ink);border-color:var(--ink);color:var(--white)}
.btn--ink:hover{background:var(--ink-600);border-color:var(--ink-600)}
.btn--wa{background:var(--wa);border-color:var(--wa);color:#fff}
.btn--wa:hover{background:var(--wa-700);border-color:var(--wa-700)}
.btn--ghost{background:transparent;border-color:var(--ink);color:var(--ink)}
.btn--ghost:hover{background:var(--ink);color:var(--white)}
.section--ink .btn--ghost{border-color:#4A525A;color:var(--white)}
.section--ink .btn--ghost:hover{background:var(--white);color:var(--ink);border-color:var(--white)}
.btn--sm{padding:.6rem 1rem;font-size:.9rem}
.btn:has(> svg:first-child){padding-left:calc(1.4rem - 5px)}
.btn--sm:has(> svg:first-child){padding-left:calc(1rem - 4px)}
.btn--block:has(> svg:first-child){padding-left:1.4rem}
.btn--block{width:100%;justify-content:center}
.btn-row{display:flex;flex-wrap:wrap;gap:.7rem}

.link-arrow{display:inline-flex;align-items:center;gap:.45rem;font-weight:650;text-decoration:none;border-bottom:1.5px solid var(--signal);padding-bottom:2px}
.link-arrow svg{width:1em;height:1em;transition:transform .2s var(--ease)}
.link-arrow:hover svg{transform:translateX(3px)}

:where(a,button,input,textarea,select,summary):focus-visible{
  outline:2.5px solid var(--ink);outline-offset:2px;border-radius:2px;
}
.section--ink :where(a,button):focus-visible{outline-color:var(--signal)}
.skip{position:absolute;left:-9999px;top:0;z-index:200}
.skip:focus{left:12px;top:12px;background:var(--ink);color:#fff;padding:.7rem 1rem;border-radius:var(--r)}

/* ---- status pill (open / closed, computed from the real clock) ---------- */
.status{display:inline-flex;align-items:center;gap:.5rem;padding:.34rem .7rem .34rem .58rem;border:1px solid var(--line);background:var(--white);border-radius:100px;white-space:nowrap;flex:none}
.status__dot{width:7px;height:7px;border-radius:50%;background:var(--asphalt-2);flex:none}
.status.is-open .status__dot{background:var(--live);box-shadow:0 0 0 3px rgba(18,183,106,.18)}
.status.is-closed .status__dot{background:var(--asphalt-2)}
.status__txt{font-family:"Chivo Mono",ui-monospace,monospace;font-size:.68rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase}
.section--ink .status,.site-foot .status,.dispatch__top .status{background:transparent;border-color:var(--line-dark);color:#fff}

/* ---- header ------------------------------------------------------------- */
.site-head{position:sticky;top:0;z-index:100;background:rgba(246,246,243,.88);backdrop-filter:saturate(1.4) blur(10px);border-bottom:1px solid var(--line)}
.site-head__in{display:flex;align-items:center;gap:clamp(12px,2vw,28px);min-height:70px}
.brand{display:flex;align-items:center;gap:.6rem;text-decoration:none;flex:none}
.brand__mark{width:38px;height:38px;flex:none}
.brand__name{display:flex;flex-direction:column;line-height:1}
.brand__name b{font-size:1.06rem;font-weight:800;letter-spacing:-.03em}
.brand__name span{font-family:"Chivo Mono",ui-monospace,monospace;font-size:.55rem;font-weight:500;letter-spacing:.19em;text-transform:uppercase;color:var(--asphalt);margin-top:3px}
.nav{display:none;margin-left:auto;align-items:center;gap:.15rem}
.nav a{padding:.5rem .68rem;border-radius:var(--r);font-size:.94rem;font-weight:550;text-decoration:none;color:var(--ink-600);white-space:nowrap}
.nav a:hover{background:var(--white);color:var(--ink)}
.nav a[aria-current=page]{color:var(--ink);font-weight:700;box-shadow:inset 0 -2px 0 var(--signal)}
.head-cta{display:none;align-items:center;gap:.5rem;margin-left:.4rem}
.head-tel{display:none;align-items:center;gap:.45rem;font-weight:650;text-decoration:none;font-size:.94rem;white-space:nowrap}
.head-tel svg{width:1.05em;height:1.05em;color:var(--asphalt)}
.burger{margin-left:auto;display:inline-flex;flex-direction:column;justify-content:center;gap:5px;width:44px;height:44px;padding:0 10px;background:none;border:1px solid var(--line);border-radius:var(--r);cursor:pointer}
.burger span{display:block;height:1.8px;background:var(--ink);transition:transform .22s var(--ease),opacity .18s var(--ease)}
.burger[aria-expanded=true] span:nth-child(1){transform:translateY(6.8px) rotate(45deg)}
.burger[aria-expanded=true] span:nth-child(2){opacity:0}
.burger[aria-expanded=true] span:nth-child(3){transform:translateY(-6.8px) rotate(-45deg)}
@media (min-width:1040px){
  .nav,.head-cta,.head-tel{display:flex}
  .burger{display:none}
}
.drawer{display:none;border-top:1px solid var(--line);background:var(--paper)}
.drawer[data-open=true]{display:block}
.drawer nav{display:flex;flex-direction:column;padding-block:.6rem}
.drawer nav a{padding:.85rem .2rem;border-bottom:1px solid var(--line-2);text-decoration:none;font-weight:600;display:flex;justify-content:space-between;align-items:center}
.drawer nav a svg{width:.9em;height:.9em;color:var(--asphalt-2)}
.drawer__cta{display:grid;gap:.6rem;padding:1rem 0 1.3rem}
@media (min-width:1040px){.drawer{display:none!important}}

/* ---- hero --------------------------------------------------------------- */
.hero{background:var(--paper);border-bottom:1px solid var(--line);padding-block:clamp(40px,6vw,84px) clamp(48px,6vw,92px)}
.hero__grid{display:grid;gap:clamp(32px,4vw,56px);align-items:start}
@media (min-width:980px){.hero__grid{grid-template-columns:minmax(0,1.12fr) minmax(0,.88fr);gap:clamp(40px,4.4vw,72px)}}
.hero__eyebrow{display:flex;flex-wrap:wrap;align-items:center;gap:.7rem;margin-bottom:clamp(20px,2.4vw,30px)}
.hero__title{margin-bottom:1.1rem}
.hero__title em{font-style:normal;display:block;color:var(--asphalt-2)}
.hero .lede{max-width:38ch}
.hero__cta{margin-top:1.8rem}
.hero__fineprint{margin-top:1rem;color:var(--asphalt);font-size:.86rem;display:flex;align-items:center;gap:.45rem}
.hero__fineprint svg{width:1em;height:1em;flex:none;color:var(--asphalt-2)}

/* proof strip: four figures on a hairline grid */
.proof{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));border-top:1px solid var(--line);margin-top:clamp(34px,4vw,52px)}
@media (min-width:760px){.proof{grid-template-columns:repeat(4,minmax(0,1fr))}}
.proof__i{padding:18px 18px 18px 0;border-bottom:1px solid var(--line)}
@media (min-width:760px){.proof__i{border-bottom:0;border-right:1px solid var(--line);padding-left:18px}
  .proof__i:first-child{padding-left:0}
  .proof__i:last-child{border-right:0}}
.proof__k{color:var(--asphalt-2);display:block;margin-bottom:6px}
.proof__v{font-size:clamp(1.6rem,2.4vw,2.1rem);font-weight:800;letter-spacing:-.04em;line-height:1}
.proof__v span{font-size:.5em;font-weight:650;letter-spacing:-.01em;margin-left:.18em;color:var(--asphalt)}
.proof__n{display:block;font-size:.82rem;color:var(--asphalt);margin-top:4px}

/* dispatch card — the hero's right column */
.dispatch{background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);box-shadow:var(--shadow-2);overflow:hidden}
.dispatch__top{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:12px 16px;background:var(--ink);color:#fff}
.dispatch__top .mono{color:var(--signal)}
.dispatch__fig{position:relative;aspect-ratio:16/10;background:var(--line-2)}
.dispatch__fig img{width:100%;height:100%;object-fit:cover}
.dispatch__body{padding:18px 18px 20px}
.dispatch__row{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:baseline;column-gap:1rem;padding:11px 0;border-bottom:1px dashed var(--line)}
.dispatch__row:last-of-type{border-bottom:0}
.dispatch__row dt{display:flex;align-items:center;gap:.55rem;font-weight:600;font-size:.95rem;min-width:0}
.dispatch__row dt{overflow-wrap:anywhere}
.dispatch__row dt svg{width:1.05em;height:1.05em;color:var(--asphalt-2);flex:none}
.dispatch__row dd{margin:0;font-weight:700;font-variant-numeric:tabular-nums;white-space:nowrap;
  display:grid;grid-template-columns:auto minmax(4.6em,auto);column-gap:.5rem;align-items:baseline}
/* Price right-aligned in its own column, delay right-aligned in a second one
   of fixed minimum width: without this the two run together and every row
   starts at a different x, which is what read as "not aligned". */
.dispatch__row dd .dispatch__fee{text-align:right}
.dispatch__row dd small{font-weight:500;color:var(--asphalt);font-size:.8em;text-align:right}
.dispatch__row dd small:empty{min-height:1px}
.dispatch__foot{margin-top:16px}

/* ---- ticket cards (services, steps, zones) ------------------------------ */
.grid{display:grid;gap:clamp(16px,1.6vw,22px)}
.grid--2{grid-template-columns:repeat(auto-fit,minmax(min(100%,300px),1fr))}
.grid--3{grid-template-columns:repeat(auto-fit,minmax(min(100%,270px),1fr))}
.grid--4{grid-template-columns:repeat(auto-fit,minmax(min(100%,230px),1fr))}

.ticket{position:relative;display:flex;flex-direction:column;background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;transition:border-color .2s var(--ease),transform .2s var(--ease),box-shadow .2s var(--ease)}
a.ticket{text-decoration:none}
a.ticket:hover{border-color:var(--ink);transform:translateY(-2px);box-shadow:var(--shadow-1)}
.ticket__fig{position:relative;aspect-ratio:3/2;background:var(--line-2);overflow:hidden}
.ticket__fig img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
a.ticket:hover .ticket__fig img{transform:scale(1.035)}
.ticket__tag{position:absolute;left:12px;top:12px;background:var(--ink);color:var(--signal);padding:.32rem .55rem;border-radius:var(--r);white-space:nowrap;max-width:calc(100% - 24px);overflow:hidden;text-overflow:ellipsis}
.ticket__body{padding:18px;display:flex;flex-direction:column;gap:.55rem;flex:1}
.ticket__head{display:flex;align-items:flex-start;gap:.7rem}
.ticket__ico{width:38px;height:38px;flex:none;display:grid;place-items:center;background:var(--signal-100);border:1px solid #F3E3B8;border-radius:var(--r);color:var(--ink)}
.ticket__ico svg{width:19px;height:19px}
.ticket__n{margin-left:auto;color:var(--asphalt-2)}
.ticket p{color:var(--asphalt);font-size:.96rem}
.ticket__foot{margin-top:auto;padding-top:14px;display:flex;align-items:center;justify-content:space-between;gap:.8rem;border-top:1px solid var(--line-2)}
.price{font-weight:800;letter-spacing:-.03em;font-variant-numeric:tabular-nums}
.price span{font-size:.72em;font-weight:600;color:var(--asphalt);margin-left:.15em}

/* steps — numbered rows on a hairline ladder */
.steps{counter-reset:s;border-top:1px solid var(--line)}
.step{display:grid;grid-template-columns:auto minmax(0,1fr);gap:clamp(14px,2vw,28px);padding:clamp(20px,2.4vw,30px) 0;border-bottom:1px solid var(--line);align-items:start}
/* The step has three children but only two columns below 820px, so the <p>
   auto-placed back into column 1 — an `auto` track sized by its own content,
   which pushed the page 57px wider than the viewport (measured at 390px on
   2026-09-02). Everything that is not the index number belongs in column 2. */
.step>:not(.step__n){grid-column:2}
@media (min-width:820px){.step>:not(.step__n){grid-column:auto}}
@media (min-width:820px){.step{grid-template-columns:72px minmax(0,.9fr) minmax(0,1.1fr);align-items:baseline}}
.step__n{font-family:"Chivo Mono",ui-monospace,monospace;font-size:.78rem;font-weight:700;letter-spacing:.1em;color:var(--signal-600);padding-top:.35rem}
.section--ink .step{border-color:var(--line-dark)}
.section--ink .steps{border-color:var(--signal)}
.section--ink .step__n{color:var(--signal)}
.step h3{margin-bottom:.35rem}
.step p{color:var(--asphalt);font-size:.98rem}
.section--ink .step p{color:#A9B1B8}

/* zones */
.zones{display:grid;gap:0;border-top:1px solid var(--line)}
.zone{display:flex;flex-wrap:wrap;align-items:baseline;gap:.4rem 1rem;padding:15px 0;border-bottom:1px solid var(--line)}
.zone b{font-size:1.06rem;font-weight:720;letter-spacing:-.02em;min-width:11rem}
.zone span{color:var(--asphalt);font-size:.94rem}

/* ---- reviews ------------------------------------------------------------ */
.rev{background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);padding:20px;display:flex;flex-direction:column;gap:.85rem}
.rev__stars{display:flex;gap:2px;color:var(--signal-600)}
.rev__stars svg{width:16px;height:16px}
.rev p{font-size:1rem;line-height:1.55}
.rev__by{display:flex;align-items:center;gap:.65rem;margin-top:auto;padding-top:.4rem}
.rev__av{width:34px;height:34px;border-radius:50%;background:var(--ink);color:var(--signal);display:grid;place-items:center;font-weight:700;font-size:.9rem;flex:none}
.rev__by b{display:block;font-size:.95rem;font-weight:680}
.rev__by span{display:block;font-size:.8rem;color:var(--asphalt-2)}
.rev-empty{border:1px dashed var(--line);border-radius:var(--r-lg);background:var(--white);padding:clamp(24px,4vw,44px);text-align:center}
.rev-empty p{max-width:52ch;margin-inline:auto;color:var(--asphalt)}

/* ---- FAQ ---------------------------------------------------------------- */
.faq{border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{display:flex;gap:1rem;align-items:flex-start;justify-content:space-between;padding:18px 0;cursor:pointer;font-weight:660;font-size:1.04rem;letter-spacing:-.015em;list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq summary .sign{position:relative;width:18px;height:18px;flex:none;margin-top:.28rem}
.faq summary .sign::before,.faq summary .sign::after{content:"";position:absolute;background:var(--ink);transition:transform .22s var(--ease)}
.faq summary .sign::before{left:0;top:8px;width:18px;height:1.8px}
.faq summary .sign::after{left:8px;top:0;width:1.8px;height:18px}
.faq details[open] summary .sign::after{transform:scaleY(0)}
.faq details p{padding:0 0 20px;color:var(--asphalt);max-width:72ch}

/* ---- forms -------------------------------------------------------------- */
.form-card{background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(20px,2.6vw,30px);box-shadow:var(--shadow-1)}
.field{display:block;margin-bottom:1rem}
.field>span{display:flex;align-items:center;gap:.35rem;font-size:.86rem;font-weight:650;margin-bottom:.4rem}
.field .req{color:var(--alert)}
.input,textarea.input,select.input{
  width:100%;padding:.78rem .85rem;background:var(--white);
  border:1.5px solid var(--line);border-radius:var(--r);
  font-size:1rem;transition:border-color .16s var(--ease),box-shadow .16s var(--ease);
}
.input:hover{border-color:#CFD3CD}
.input:focus{outline:none;border-color:var(--ink);box-shadow:0 0 0 3px rgba(255,197,61,.35)}
.input[aria-invalid=true]{border-color:var(--alert);background:#FEF7F7}
textarea.input{min-height:140px;resize:vertical}
.field-err{display:block;font-size:.82rem;color:var(--alert);margin-top:.35rem;font-weight:600}
.form-row{display:grid;gap:0 1rem}
@media (min-width:620px){.form-row{grid-template-columns:1fr 1fr}}
.hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden}
.form-note{display:flex;gap:.5rem;align-items:flex-start;font-size:.8rem;color:var(--asphalt);margin-top:1rem}
.form-note svg{width:1em;height:1em;flex:none;margin-top:.22em}
.alert{display:flex;gap:.7rem;align-items:flex-start;padding:.9rem 1rem;border-radius:var(--r);margin-bottom:1.2rem;font-size:.95rem;border:1.5px solid}
.alert svg{width:1.15em;height:1.15em;flex:none;margin-top:.15em}
.alert--ok{background:#F0FBF4;border-color:#B7E6C8;color:#12603A}
.alert--err{background:#FEF5F5;border-color:#F0C2C2;color:#8E1F1F}

/* contact rows */
.cinfo{border-top:1px solid var(--line)}
.cinfo__i{display:flex;gap:1rem;padding:16px 0;border-bottom:1px solid var(--line);align-items:flex-start}
.cinfo__ico{width:34px;height:34px;flex:none;display:grid;place-items:center;border:1px solid var(--line);border-radius:var(--r);color:var(--ink)}
.cinfo__ico svg{width:17px;height:17px}
.cinfo__i b{display:block;font-size:.82rem;color:var(--asphalt);font-weight:650;margin-bottom:2px}
.cinfo__i a{font-weight:680;text-decoration:none;border-bottom:1.5px solid var(--signal)}
.chips{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:.45rem}
.chip{border:1px solid var(--line);border-radius:100px;padding:.22rem .6rem;font-size:.82rem;color:var(--asphalt);background:var(--white)}

/* ---- article / prose ---------------------------------------------------- */
.prose{max-width:70ch}
.prose>*+*{margin-top:1.05rem}
.prose h2{margin-top:2.2rem}
.prose h3{margin-top:1.8rem}
.prose ul{list-style:none;padding:0}
.prose li{position:relative;padding-left:1.6rem;margin-top:.6rem}
.prose li::before{content:"";position:absolute;left:0;top:.62em;width:8px;height:8px;background:var(--signal);border-radius:1px}
.prose a{font-weight:600;text-decoration-color:var(--signal);text-decoration-thickness:2px}

/* ---- price table -------------------------------------------------------- */
.tariff{width:100%;border-collapse:collapse;background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden}
.tariff caption{text-align:left;padding-bottom:.7rem;color:var(--asphalt);font-size:.9rem}
.tariff th,.tariff td{text-align:left;padding:14px 16px;border-bottom:1px solid var(--line)}
.tariff thead th{background:var(--ink);color:#fff;font-family:"Chivo Mono",ui-monospace,monospace;font-size:.68rem;letter-spacing:.13em;text-transform:uppercase;font-weight:600}
.tariff tbody tr:last-child th,.tariff tbody tr:last-child td{border-bottom:0}
.tariff tbody th{font-weight:680}
.tariff td.n{text-align:right;font-variant-numeric:tabular-nums;font-weight:700;white-space:nowrap}
.table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}

/* ---- callout band ------------------------------------------------------- */
.band{background:var(--signal);color:var(--ink);border-radius:var(--r-lg);padding:clamp(24px,3.4vw,44px);display:grid;gap:1.4rem}
@media (min-width:840px){.band{grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:2.4rem}}
.band h2{max-width:22ch}
.band p{max-width:52ch;font-weight:500}

/* ---- footer ------------------------------------------------------------- */
.site-foot{background:var(--ink);color:#C9CFD4;padding-block:clamp(48px,6vw,80px) 28px}
.site-foot a{color:#E7EAEC;text-decoration:none}
.site-foot a:hover{color:var(--signal)}
.foot-grid{display:grid;gap:clamp(28px,3vw,44px)}
@media (min-width:820px){.foot-grid{grid-template-columns:minmax(0,1.5fr) repeat(3,minmax(0,1fr))}}
.foot-brand p{margin-top:.9rem;max-width:36ch;font-size:.94rem;color:#9AA3AA}
.foot-col h4{margin-bottom:.9rem;font-size:.72rem;font-family:"Chivo Mono",ui-monospace,monospace;letter-spacing:.15em;text-transform:uppercase;font-weight:600;color:var(--signal)}
.foot-col li+li{margin-top:.55rem}
.foot-col li{font-size:.95rem}
.foot-bottom{margin-top:clamp(36px,4vw,56px);padding-top:20px;border-top:1px solid var(--line-dark);display:flex;flex-wrap:wrap;gap:.7rem 1.4rem;align-items:center;justify-content:space-between;font-size:.84rem;color:#7C858C}
.foot-bottom nav{display:flex;flex-wrap:wrap;gap:.7rem 1.2rem}
.credit{color:#7C858C}
.credit a{color:#9AA3AA;border-bottom:1px solid #3A424A}

/* ---- WhatsApp dock ------------------------------------------------------ */
.wa-dock{position:fixed;right:clamp(12px,2.4vw,26px);bottom:clamp(12px,2.4vw,26px);z-index:90;display:flex;align-items:center;gap:.55rem;
  padding:.62rem .95rem .62rem .68rem;background:var(--wa);color:#fff;border-radius:100px;
  text-decoration:none;font-weight:680;font-size:.95rem;box-shadow:0 10px 30px -8px rgba(31,168,85,.55),0 2px 6px rgba(14,17,19,.18);
  transition:background .18s var(--ease),transform .18s var(--ease)}
.wa-dock:hover{background:var(--wa-700);transform:translateY(-2px)}
.wa-dock svg{width:26px;height:26px;flex:none}
.wa-dock__txt{display:none}
@media (min-width:560px){.wa-dock__txt{display:block}}
.wa-dock__sub{display:block;font-family:"Chivo Mono",ui-monospace,monospace;font-size:.58rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;opacity:.9;margin-top:2px}

/* ---- misc --------------------------------------------------------------- */
.vh{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.breadcrumb{display:flex;flex-wrap:wrap;gap:.4rem;align-items:center;font-size:.84rem;color:var(--asphalt);padding-block:16px}
.breadcrumb a{text-decoration:none;color:var(--asphalt)}
.breadcrumb a:hover{color:var(--ink)}
.breadcrumb svg{width:.8em;height:.8em;opacity:.5}
.page-head{background:var(--white);border-bottom:1px solid var(--line);padding-block:clamp(10px,1.4vw,18px) clamp(36px,4.4vw,64px)}
.page-head h1{max-width:20ch;margin-bottom:1rem}
.page-head .lede{max-width:60ch}
.err-code{font-family:"Chivo Mono",ui-monospace,monospace;font-size:clamp(4rem,14vw,9rem);font-weight:700;letter-spacing:-.04em;color:var(--signal);line-height:1}

.rev-summary{display:flex;flex-wrap:wrap;align-items:center;gap:.55rem;margin-bottom:clamp(20px,2.2vw,28px);font-size:.95rem}
.rev-summary .rev__stars{display:inline-flex;gap:2px}
.rev-summary b{font-size:1.1rem}
.rev-summary span:not(.rev__stars){color:var(--asphalt)}
.rev-summary a{color:var(--ink);font-weight:600}
.rev-foot{margin-top:clamp(20px,2.4vw,30px)}

/* ---- contact form: honeypot + async status ------------------------------ */
/* The honeypot must be reachable by a naive bot's DOM walk but never by a
   person or a screen reader, so it is moved off-canvas rather than
   `display:none` — several form-filling bots skip hidden inputs on purpose. */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.form-status{margin-top:1rem;padding:.85rem 1rem;border-radius:var(--r);font-weight:600;font-size:.92rem;border:1px solid var(--line)}
.form-status[data-state=ok]{background:#F0FBF4;border-color:#9BE0B4;color:#08663A}
.form-status[data-state=err]{background:#FEF7F7;border-color:#F0B4B4;color:#8A1C1C}
.form-card [data-submit][aria-busy=true]{opacity:.6;pointer-events:none}

/* "dès" before a starting price. Set small and in the meta colour so the figure
   stays the thing the eye lands on — the qualifier reads as a modifier, not as
   part of the number. */
.price__from{font-family:"Chivo Mono",ui-monospace,monospace;font-size:.6em;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--asphalt);vertical-align:.15em}
