/* Colonne B — feuille de style principale (prefix clb) */
:root {
  --clb-paper: #FBFAF6;
  --clb-ink: #141414;
  --clb-mint: #B8F2D0;
  --clb-lilac: #D8C8FF;
  --clb-peach: #FFD2B8;
  --clb-sel: #1E8A55;          /* cell selection green */
  --clb-grid: rgba(20, 20, 20, .075);
  --clb-muted: #4A4A4A;
  --clb-red: #D6452F;
  --clb-gut: 46px;             /* row-number gutter */
  --clb-row: 32px;             /* grid row height */
  --clb-radius: 8px;
  --clb-shadow: 5px 5px 0 var(--clb-ink);
  --clb-shadow-lg: 8px 8px 0 var(--clb-ink);
  --clb-sans: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --clb-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --clb-max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 150px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  position: relative;
  font-family: var(--clb-sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.6;
  color: var(--clb-ink);
  background-color: var(--clb-paper);
  background-image:
    linear-gradient(to right, var(--clb-grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--clb-grid) 1px, transparent 1px);
  background-size: calc((100% - var(--clb-gut)) / 8) var(--clb-row);
  background-position: var(--clb-gut) 0;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
code, .clb-mono { font-family: var(--clb-mono); }
:focus-visible { outline: 3px solid var(--clb-sel); outline-offset: 3px; }

.clb-sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.clb-skip { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--clb-ink); color: #fff; padding: .6rem 1rem; border-radius: var(--clb-radius); }
.clb-skip:focus { left: 8px; }

/* ---------- Header: toolbar + formula bar + column letters ---------- */
.clb-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--clb-paper);
  border-bottom: 2px solid var(--clb-ink);
}
.clb-header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(20,20,20,.18);
}
.clb-logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; font-weight: 700; font-size: 1.25rem; }
.clb-logo__cell {
  display: inline-grid; place-items: center; width: 2.1rem; height: 2.1rem;
  background: var(--clb-mint); border: 2px solid var(--clb-ink); border-radius: 6px;
  box-shadow: 3px 3px 0 var(--clb-ink); font-family: var(--clb-mono); font-weight: 600;
}
.clb-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .25rem; align-items: center; }
.clb-nav a {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .7rem; text-decoration: none; font-weight: 500; font-size: .95rem;
  border: 2px solid transparent; border-radius: 6px;
}
.clb-nav a:hover, .clb-nav a.is-current { border-color: var(--clb-ink); background: #fff; }
.clb-nav__ref { font-family: var(--clb-mono); font-size: .7rem; color: var(--clb-muted); }
.clb-nav a.clb-nav__cta { background: var(--clb-peach); border-color: var(--clb-ink); box-shadow: 3px 3px 0 var(--clb-ink); margin-left: .4rem; }
.clb-nav a.clb-nav__cta:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--clb-ink); }

.clb-burger { display: none; width: 46px; height: 42px; border: 2px solid var(--clb-ink); border-radius: 8px; background: var(--clb-lilac); box-shadow: 3px 3px 0 var(--clb-ink); cursor: pointer; position: relative; }
.clb-burger__lines, .clb-burger__lines::before, .clb-burger__lines::after {
  position: absolute; left: 50%; width: 20px; height: 2px; background: var(--clb-ink); transform: translateX(-50%); transition: transform .2s, opacity .2s; content: "";
}
.clb-burger__lines { top: 50%; }
.clb-burger__lines::before { top: -6px; left: 0; transform: none; }
.clb-burger__lines::after { top: 6px; left: 0; transform: none; }
.clb-burger[aria-expanded="true"] .clb-burger__lines { background: transparent; }
.clb-burger[aria-expanded="true"] .clb-burger__lines::before { top: 0; transform: rotate(45deg); }
.clb-burger[aria-expanded="true"] .clb-burger__lines::after { top: 0; transform: rotate(-45deg); }

.clb-formula {
  display: grid; grid-template-columns: var(--clb-gut) auto 1fr; align-items: stretch;
  font-family: var(--clb-mono); font-size: .9rem; border-bottom: 1px solid rgba(20,20,20,.18); background: #fff;
}
.clb-formula > span { padding: .35rem .6rem; }
.clb-formula__ref { text-align: center; border-right: 1px solid rgba(20,20,20,.18); font-weight: 600; background: #F1F0EA; padding-inline: 0 !important; }
.clb-formula__fx { font-style: italic; color: var(--clb-sel); font-weight: 600; border-right: 1px solid rgba(20,20,20,.18); }
.clb-formula__val { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.clb-formula__val::after { content: ""; display: inline-block; width: 1px; height: 1em; background: var(--clb-ink); margin-left: 2px; vertical-align: -2px; animation: clb-blink 1.1s steps(1) infinite; }
@keyframes clb-blink { 50% { opacity: 0; } }

.clb-cols {
  display: grid; grid-template-columns: var(--clb-gut) repeat(8, 1fr);
  font-family: var(--clb-mono); font-size: .72rem; color: var(--clb-muted); background: #F1F0EA;
}
.clb-cols span { text-align: center; padding: .15rem 0; border-right: 1px solid rgba(20,20,20,.14); }
.clb-cols span.is-active { background: var(--clb-mint); color: var(--clb-ink); font-weight: 600; }

/* row numbers gutter (filled by JS) */
.clb-rows {
  position: absolute; left: 0; top: 0; width: var(--clb-gut); min-height: 100%;
  background: #F1F0EA; border-right: 1px solid rgba(20,20,20,.2);
  font-family: var(--clb-mono); font-size: .68rem; color: #8a8a84; z-index: 1; pointer-events: none;
}
.clb-rows span { display: block; height: var(--clb-row); line-height: var(--clb-row); text-align: center; border-bottom: 1px solid rgba(20,20,20,.08); }

main, .clb-footer { padding-left: var(--clb-gut); position: relative; z-index: 2; }

/* ---------- Generic section ---------- */
.clb-section, .clb-hero { max-width: calc(var(--clb-max) + 4rem); margin: 0 auto; padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1rem, 3vw, 2rem); }
.clb-section__head { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: center; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.clb-section__head h2 { font-size: clamp(2rem, 1.4rem + 3vw, 3.6rem); margin: 0; }
.clb-section__intro { grid-column: 2; margin: .6rem 0 0; max-width: 60ch; color: var(--clb-muted); }
.clb-colref {
  display: grid; place-items: center; width: clamp(2.6rem, 5vw, 3.6rem); aspect-ratio: 1;
  font-family: var(--clb-mono); font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.5rem);
  background: var(--clb-ink); color: var(--clb-mint); border-radius: var(--clb-radius);
}
.clb-tag { display: inline-block; font-family: var(--clb-mono); font-size: .82rem; padding: .25rem .6rem; border: 2px solid var(--clb-ink); border-radius: 6px; background: var(--clb-lilac); margin-bottom: 1.2rem; }
.clb-lead { font-size: clamp(1.2rem, 1rem + .8vw, 1.55rem); font-weight: 500; line-height: 1.35; }

/* ---------- Buttons (rounded rectangles, hard shadow) ---------- */
.clb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: 600 1rem/1.2 var(--clb-sans); text-decoration: none; cursor: pointer;
  padding: .9rem 1.3rem; border: 2px solid var(--clb-ink); border-radius: var(--clb-radius);
  box-shadow: var(--clb-shadow); color: var(--clb-ink); background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}
.clb-btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--clb-ink); }
.clb-btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--clb-ink); }
.clb-btn--mint { background: var(--clb-mint); }
.clb-btn--ink { background: var(--clb-ink); color: #fff; box-shadow: 5px 5px 0 var(--clb-sel); }
.clb-btn--ink:hover { box-shadow: 7px 7px 0 var(--clb-sel); }
.clb-btn--ghost { background: transparent; }
.clb-btn--small { padding: .5rem .9rem; font-size: .9rem; box-shadow: 3px 3px 0 var(--clb-ink); }

/* ---------- Hero ---------- */
.clb-hero { display: grid; grid-template-columns: repeat(12, 1fr); padding-top: clamp(2rem, 4vw, 3.5rem); }
.clb-hero__media { grid-column: 1 / -1; grid-row: 1; margin: 0; border: 2px solid var(--clb-ink); border-radius: var(--clb-radius); box-shadow: var(--clb-shadow-lg); overflow: hidden; background: #fff; }
.clb-hero__media img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.clb-hero__media figcaption { font-family: var(--clb-mono); font-size: .8rem; padding: .45rem .8rem; border-top: 2px solid var(--clb-ink); background: #F1F0EA; }
.clb-hero__media figcaption span { background: #fff; border: 1px solid var(--clb-ink); padding: 0 .4rem; border-radius: 4px; margin-right: .3rem; }
.clb-hero__cell {
  grid-column: 1 / 8; grid-row: 1; align-self: end; z-index: 3; position: relative;
  margin: 0 0 4.6rem clamp(1rem, 3vw, 2.5rem);
  background: #fff; padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 3px solid var(--clb-sel); border-radius: 4px;
  box-shadow: 0 0 0 2px var(--clb-ink), var(--clb-shadow-lg);
}
.clb-hero__cell h1 { font-size: clamp(2.2rem, 1.2rem + 4.2vw, 4.6rem); font-weight: 700; }
.clb-hero__cell mark { background: linear-gradient(transparent 55%, var(--clb-mint) 55%); color: inherit; padding: 0 .1em; }
.clb-hero__sub { font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem); color: #2c2c2c; max-width: 52ch; }
.clb-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.4rem; }
.clb-handle { position: absolute; right: -8px; bottom: -8px; width: 13px; height: 13px; background: var(--clb-sel); border: 2px solid #fff; }

/* ---------- About ---------- */
.clb-about__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.clb-figures { width: 100%; border-collapse: collapse; background: #fff; border: 2px solid var(--clb-ink); box-shadow: var(--clb-shadow-lg); font-size: .98rem; }
.clb-figures th, .clb-figures td { border: 1px solid rgba(20,20,20,.25); padding: .75rem .9rem; text-align: left; }
.clb-figures thead th { background: #F1F0EA; font-family: var(--clb-mono); font-size: .78rem; font-weight: 500; color: var(--clb-muted); }
.clb-figures tbody th { width: 2.6rem; background: #F1F0EA; font-family: var(--clb-mono); font-size: .75rem; color: var(--clb-muted); text-align: center; font-weight: 400; }
.clb-num { font-family: var(--clb-mono); font-weight: 600; font-size: 1.25rem; text-align: right !important; white-space: nowrap; }
.clb-figures tbody tr:nth-child(1) .clb-num { background: var(--clb-mint); }
.clb-figures tbody tr:nth-child(2) .clb-num { background: var(--clb-lilac); }
.clb-figures tbody tr:nth-child(3) .clb-num { background: var(--clb-peach); }
.clb-figures__total td { border-top: 3px double var(--clb-ink); font-weight: 600; }
.clb-figures__total code { font-size: .85rem; word-break: break-all; }

/* ---------- Services: contiguous cell block ---------- */
.clb-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--clb-ink); border-radius: var(--clb-radius); overflow: hidden;
  box-shadow: var(--clb-shadow-lg); background: var(--clb-ink); gap: 2px;
}
.clb-tile { position: relative; padding: 2.6rem 1.6rem 1.8rem; min-height: 15rem; transition: box-shadow .15s; }
.clb-tile--mint { background: var(--clb-mint); }
.clb-tile--lilac { background: var(--clb-lilac); }
.clb-tile--peach { background: var(--clb-peach); }
.clb-tile:hover { box-shadow: inset 0 0 0 3px var(--clb-sel), inset 0 0 0 5px #fff; }
.clb-tile__ref { position: absolute; top: .7rem; left: .8rem; font-family: var(--clb-mono); font-size: .75rem; background: #fff; border: 1px solid var(--clb-ink); padding: 0 .35rem; border-radius: 4px; }
.clb-tile__emoji { display: grid; place-items: center; width: 3.2rem; height: 3.2rem; font-size: 1.7rem; background: #fff; border: 2px solid var(--clb-ink); border-radius: var(--clb-radius); box-shadow: 3px 3px 0 var(--clb-ink); margin-bottom: 1rem; }
.clb-tile h3 { font-size: 1.3rem; }
.clb-tile p { margin: 0; color: #232323; }

/* ---------- Why us: staggered cards ---------- */
.clb-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.clb-card { background: #fff; border: 2px solid var(--clb-ink); border-radius: var(--clb-radius); box-shadow: var(--clb-shadow); overflow: hidden; display: flex; flex-direction: column; }
.clb-card:nth-child(3n+2) { transform: translateY(2rem); }
.clb-card:nth-child(3n+2).clb-reveal:not(.is-in) { transform: translateY(3.4rem); }
.clb-card img { aspect-ratio: 4 / 3; object-fit: cover; border-bottom: 2px solid var(--clb-ink); }
.clb-card__body { padding: 1.2rem 1.3rem 1.4rem; flex: 1; }
.clb-card h3 { font-size: 1.2rem; display: flex; gap: .5rem; align-items: baseline; }
.clb-card h3::before { content: "✓"; font-family: var(--clb-mono); font-size: .85rem; color: var(--clb-sel); }
.clb-card p { margin: 0; color: var(--clb-muted); }
.clb-card:nth-child(1) .clb-card__body, .clb-card:nth-child(6) .clb-card__body { background: var(--clb-mint); }
.clb-card:nth-child(3) .clb-card__body, .clb-card:nth-child(4) .clb-card__body { background: var(--clb-lilac); }
.clb-card:nth-child(2) .clb-card__body, .clb-card:nth-child(5) .clb-card__body { background: var(--clb-peach); }
.clb-card p { color: #2a2a2a; }

/* ---------- Reviews: margin comments ---------- */
.clb-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); padding-top: 1rem; }
.clb-review { position: relative; margin: 0; padding: 1.6rem 1.5rem 1.4rem; border: 2px solid var(--clb-ink); border-radius: 4px; box-shadow: var(--clb-shadow); }
.clb-review::before { content: ""; position: absolute; top: 0; right: 0; border-style: solid; border-width: 0 16px 16px 0; border-color: transparent var(--clb-red) transparent transparent; }
.clb-review--lilac { background: var(--clb-lilac); transform: rotate(-1.2deg); }
.clb-review--mint { background: var(--clb-mint); transform: rotate(.8deg) translateY(1.2rem); }
.clb-review--peach { background: var(--clb-peach); transform: rotate(-.6deg); }
.clb-review img { width: 76px; height: 76px; border-radius: 8px; border: 2px solid var(--clb-ink); object-fit: cover; margin: -3.2rem 0 1rem; background: #fff; box-shadow: 3px 3px 0 var(--clb-ink); }
.clb-review blockquote { margin: 0 0 1rem; font-size: 1.02rem; }
.clb-review figcaption { display: flex; flex-wrap: wrap; gap: .2rem .8rem; align-items: baseline; font-size: .92rem; border-top: 1px dashed var(--clb-ink); padding-top: .7rem; }
.clb-review figcaption span { font-family: var(--clb-mono); font-size: .8rem; }
.clb-stars { margin-left: auto; letter-spacing: .1em; }

/* ---------- Contact ---------- */
.clb-contact__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.clb-form { background: #fff; border: 2px solid var(--clb-ink); border-radius: var(--clb-radius); box-shadow: var(--clb-shadow-lg); padding: clamp(1.2rem, 3vw, 2.2rem); }
.clb-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.clb-field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.clb-field label { font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.clb-field input, .clb-field select, .clb-field textarea {
  font: 400 1rem/1.4 var(--clb-mono); color: var(--clb-ink);
  padding: .7rem .8rem; border: 2px solid var(--clb-ink); border-radius: 6px; background: var(--clb-paper); width: 100%;
}
.clb-field textarea { resize: vertical; font-family: var(--clb-sans); }
.clb-field input:focus, .clb-field select:focus, .clb-field textarea:focus { outline: none; border-color: var(--clb-sel); box-shadow: 0 0 0 3px var(--clb-mint); background: #fff; }
.clb-field [aria-invalid="true"], .clb-check input[aria-invalid="true"] { border-color: var(--clb-red); box-shadow: 0 0 0 3px #ffd9d2; }
.clb-error { color: #B0301D; font-size: .85rem; font-family: var(--clb-mono); margin: .3rem 0 0; min-height: 0; }
.clb-error:empty { display: none; }
.clb-check { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; font-size: .92rem; }
.clb-check input { width: 1.25rem; height: 1.25rem; margin-top: .15rem; accent-color: var(--clb-sel); }
.clb-form__note { font-size: .82rem; color: var(--clb-muted); margin: 1rem 0 1.2rem; }
.clb-success { margin-top: 1.4rem; padding: 1rem 1.2rem; border: 2px solid var(--clb-ink); border-radius: var(--clb-radius); background: var(--clb-mint); box-shadow: 4px 4px 0 var(--clb-ink); }
.clb-success p { margin: 0; }

.clb-info__table { width: 100%; border-collapse: collapse; background: #fff; border: 2px solid var(--clb-ink); box-shadow: var(--clb-shadow); margin-bottom: 1.6rem; font-size: .96rem; }
.clb-info__table caption { text-align: left; font-family: var(--clb-mono); font-size: .8rem; font-weight: 600; padding: .35rem .7rem; background: var(--clb-lilac); border: 2px solid var(--clb-ink); border-bottom: 0; caption-side: top; }
.clb-info__hours caption { background: var(--clb-peach); }
.clb-info__table th, .clb-info__table td { border: 1px solid rgba(20,20,20,.25); padding: .65rem .8rem; text-align: left; vertical-align: top; }
.clb-info__table th { background: #F1F0EA; font-weight: 500; width: 38%; font-size: .9rem; }
.clb-info__table a { font-weight: 600; text-decoration-thickness: 2px; text-decoration-color: var(--clb-sel); }
.clb-info__note { font-size: .88rem; color: var(--clb-muted); }

/* ---------- Footer: sheet tabs ---------- */
.clb-footer { border-top: 2px solid var(--clb-ink); background: #fff; }
.clb-footer__inner { max-width: calc(var(--clb-max) + 4rem); margin: 0 auto; padding: 2rem clamp(1rem, 3vw, 2rem); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; }
.clb-footer__brand { display: flex; align-items: center; gap: .6rem; font-weight: 700; font-size: 1.2rem; margin-bottom: .4rem; }
.clb-footer p { margin: 0; color: var(--clb-muted); }
.clb-footer address { font-style: normal; font-size: .95rem; }
.clb-sheets { display: flex; flex-wrap: wrap; align-items: stretch; background: #F1F0EA; border-top: 1px solid rgba(20,20,20,.25); padding: 0 clamp(1rem, 3vw, 2rem); font-family: var(--clb-mono); font-size: .82rem; }
.clb-sheets a { padding: .55rem 1rem; text-decoration: none; border-right: 1px solid rgba(20,20,20,.25); }
.clb-sheets a:first-child { border-left: 1px solid rgba(20,20,20,.25); }
.clb-sheets a.is-active { background: #fff; border-bottom: 3px solid var(--clb-sel); font-weight: 600; }
.clb-sheets a:hover { background: var(--clb-mint); }
.clb-sheets__copy { margin-left: auto; padding: .55rem 0; color: var(--clb-muted); }

/* ---------- Cookie: status bar ---------- */
.clb-cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem 1.5rem;
  padding: .75rem clamp(1rem, 3vw, 2rem) .75rem calc(var(--clb-gut) + clamp(1rem, 3vw, 2rem));
  background: #fff; border-top: 2px solid var(--clb-ink); box-shadow: 0 -4px 0 var(--clb-mint);
  font-size: .9rem;
}
.clb-cookie[hidden] { display: none; }
.clb-cookie p { margin: 0; flex: 1 1 320px; }
.clb-cookie__tag { font-family: var(--clb-mono); font-size: .75rem; background: var(--clb-ink); color: var(--clb-mint); padding: .1rem .45rem; border-radius: 4px; margin-right: .5rem; }
.clb-cookie__btns { display: flex; gap: .7rem; }

/* ---------- Reveal ---------- */
.clb-js .clb-reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.clb-js .clb-reveal.is-in { opacity: 1; transform: none; }
.clb-js .clb-card:nth-child(3n+2).clb-reveal.is-in { transform: translateY(2rem); }
.clb-js .clb-review--lilac.is-in { transform: rotate(-1.2deg); }
.clb-js .clb-review--mint.is-in { transform: rotate(.8deg) translateY(1.2rem); }
.clb-js .clb-review--peach.is-in { transform: rotate(-.6deg); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .clb-nav__ref { display: none; }
  .clb-hero__cell { grid-column: 1 / 10; }
}
@media (max-width: 960px) {
  .clb-burger { display: inline-block; }
  .clb-nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--clb-paper); border-bottom: 2px solid var(--clb-ink); display: none; }
  .clb-nav.is-open { display: block; }
  .clb-header__bar { position: relative; }
  .clb-nav ul { flex-direction: column; align-items: stretch; padding: .8rem 1rem 1.2rem; gap: .4rem; }
  .clb-nav a { display: flex; padding: .8rem 1rem; border-color: var(--clb-ink); background: #fff; }
  .clb-nav__ref { display: inline; }
  .clb-nav a.clb-nav__cta { margin: .4rem 0 0; justify-content: center; }
  .clb-tiles { grid-template-columns: repeat(2, 1fr); }
  .clb-why__grid { grid-template-columns: repeat(2, 1fr); }
  .clb-card:nth-child(3n+2), .clb-js .clb-card:nth-child(3n+2).clb-reveal.is-in { transform: none; }
  .clb-card:nth-child(even), .clb-js .clb-card:nth-child(even).clb-reveal.is-in { transform: translateY(1.5rem); }
  .clb-reviews__grid { grid-template-columns: 1fr; max-width: 640px; gap: 3.2rem; padding-top: 2rem; }
  .clb-about__grid, .clb-contact__grid { grid-template-columns: minmax(0, 1fr); }
  .clb-hero__cell { grid-column: 1 / 12; }
}
@media (max-width: 767px) {
  :root { --clb-gut: 0px; }
  .clb-rows, .clb-cols { display: none; }
  .clb-formula { grid-template-columns: 3rem auto 1fr; font-size: .8rem; }
  body { background-size: calc(100% / 4) var(--clb-row); }
  html { scroll-padding-top: 120px; }
  .clb-hero { display: flex; flex-direction: column; }
  .clb-hero__media { order: -1; }
  .clb-hero__media figcaption { display: none; }
  .clb-hero__media img { aspect-ratio: 4 / 3; }
  .clb-hero__cell { margin: -2.5rem .6rem 0; }
  .clb-section__head { grid-template-columns: 1fr; row-gap: .8rem; }
  .clb-section__intro { grid-column: 1; }
  .clb-colref { width: 2.6rem; }
}
@media (max-width: 600px) {
  .clb-tiles, .clb-why__grid { grid-template-columns: 1fr; }
  .clb-card:nth-child(even), .clb-js .clb-card:nth-child(even).clb-reveal.is-in { transform: none; }
  .clb-form__row { grid-template-columns: 1fr; gap: 0; }
  .clb-figures th, .clb-figures td { padding: .6rem .5rem; }
  .clb-num { white-space: normal; font-size: 1.05rem; }
  .clb-hero__actions .clb-btn { width: 100%; }
  .clb-logo__name { font-size: 1.1rem; }
  .clb-sheets__copy { margin-left: 0; width: 100%; }
  .clb-cookie__btns { width: 100%; }
  .clb-cookie__btns .clb-btn { flex: 1; }
}
@media (min-width: 1440px) {
  :root { --clb-max: 1320px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .clb-js .clb-reveal { opacity: 1; transform: none; }
}
