/* ==========================================================================
   Halt Designs — "Porcelain & Ultramarine"

   Direction: an architect's studio rather than a tech agency. Cool porcelain
   ground, printer's-ink ultramarine as the single signal color, ochre used
   only for annotation. The 3D hero is a maquette — a physical scale model of
   a website, held in the light — not a glowing neon object on black.

   One accessory removed: no gradients anywhere, no glass blur, no glow.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --ink:          #10141A;
  --ink-2:        #2C333D;
  --graphite:     #5C6672;
  --porcelain:    #EEF0F3;
  --porcelain-2:  #E3E7EC;
  --paper:        #FAFBFC;
  --ultramarine:  #1B33C7;
  --ultramarine-d:#142599;
  --ochre:        #B07C10;
  --hairline:     rgba(16, 20, 26, .13);
  --hairline-2:   rgba(16, 20, 26, .07);

  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --body:    "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --shell: 1240px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --sect: clamp(4.5rem, 9vw, 8.5rem);

  --r: 3px;             /* near-square. Drawings, not app chrome. */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.25rem; font-family: var(--mono); font-size: .8rem;
}
.skip:focus { left: 0; }

/* --- Type --------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.03em;
  font-variation-settings: "wdth" 92;
  text-wrap: balance;
}

.h-xl { font-size: clamp(2.75rem, 7.5vw, 5.75rem); font-weight: 800; }
.h-lg { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.125rem); }
.h-sm { font-size: clamp(1.15rem, 1.6vw, 1.375rem); letter-spacing: -.02em; }

.lede {
  font-size: clamp(1.125rem, 1.15rem + .4vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 34ch;
  text-wrap: pretty;
}

.prose p { max-width: 62ch; margin-bottom: 1.1em; color: var(--ink-2); }
.prose p:last-child { margin-bottom: 0; }

/* The mono label is the structural device throughout: it only ever carries
   real data — a spec, a year, a sector, a step index in a real sequence. */
.label {
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--graphite);
}
.label--blue { color: var(--ultramarine); }
.label--ochre { color: var(--ochre); }

/* --- Layout ------------------------------------------------------------- */
.shell { width: min(100% - var(--gut) * 2, var(--shell)); margin-inline: auto; }
.section { padding-block: var(--sect); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--rule { border-top: 1px solid var(--hairline); }
.section--ink { background: var(--ink); color: var(--porcelain); }
.section--ink .lede,
.section--ink .prose p { color: rgba(238, 240, 243, .74); }
.section--ink .label { color: rgba(238, 240, 243, .5); }

.stack > * + * { margin-top: 1.25rem; }
.head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head > * + * { margin-top: 1rem; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.6rem;
  background: var(--ultramarine); color: #fff;
  font-family: var(--mono); font-size: .8125rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--r);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { background: var(--ultramarine-d); transform: translateY(-2px); }
.btn--sm { padding: .6rem 1.05rem; font-size: .75rem; }
.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn::after { content: "→"; font-size: 1em; transition: transform .2s var(--ease); }
.btn:hover::after { transform: translateX(3px); }

/* Text link with a rule that draws itself. */
.tlink {
  font-family: var(--mono); font-size: .8125rem; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none; color: var(--ultramarine);
  padding-bottom: 3px; background-image: linear-gradient(var(--ultramarine), var(--ultramarine));
  background-size: 0 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .3s var(--ease);
}
.tlink:hover { background-size: 100% 1px; }

/* --- Masthead ----------------------------------------------------------- */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(238, 240, 243, .88);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.masthead.is-stuck { border-bottom-color: var(--hairline); }

.masthead__in {
  width: min(100% - var(--gut) * 2, var(--shell));
  margin-inline: auto;
  display: flex; align-items: center; gap: 2rem;
  height: 72px;
}

.wordmark { display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.wordmark__mark {
  width: 22px; height: 22px;
  background: var(--ultramarine);
  /* A halt: the square that stops. Rotated, half-cut. */
  clip-path: polygon(0 0, 100% 0, 100% 62%, 62% 100%, 0 100%);
}
.wordmark__text {
  font-family: var(--display); font-weight: 800; font-size: 1.125rem;
  letter-spacing: -.035em; font-variation-settings: "wdth" 85;
}
.wordmark__text em { font-style: normal; font-weight: 400; color: var(--graphite); }

.nav ul { display: flex; gap: 1.4rem; }
.nav a {
  font-family: var(--mono); font-size: .8125rem; letter-spacing: .04em;
  text-decoration: none; color: var(--ink-2);
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--hairline); }
.nav a[aria-current] { color: var(--ultramarine); border-bottom-color: var(--ultramarine); }

.burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; }
.burger span { display: block; height: 1.5px; width: 20px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobilenav { display: none; padding: 1.5rem var(--gut) 2.5rem; border-top: 1px solid var(--hairline); background: var(--porcelain); }
.mobilenav ul { margin-bottom: 1.5rem; }
.mobilenav a { display: block; text-decoration: none; font-family: var(--display); font-size: 1.75rem; font-weight: 600; letter-spacing: -.03em; padding: .4rem 0; }
.mobilenav .btn { display: inline-flex; }
.mobilenav__meta { margin-top: 1.25rem; font-family: var(--mono); font-size: .8125rem; }

/* --- Hero: the maquette ------------------------------------------------- */
.hero { position: relative; padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
}
.hero__copy > * + * { margin-top: 1.5rem; }
.hero h1 em {
  font-style: normal;
  color: var(--ultramarine);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .875rem; align-items: center; }

/* Canvas frame reads as a drawing on a light table: hairline crop marks. */
.maquette { position: relative; aspect-ratio: 1 / 1; }
.maquette__canvas { width: 100%; height: 100%; cursor: grab; touch-action: pan-y; }
.maquette__canvas:active { cursor: grabbing; }
.maquette::before, .maquette::after {
  content: ""; position: absolute; width: 14px; height: 14px; pointer-events: none;
}
.maquette::before { top: 0; left: 0; border-top: 1px solid var(--ultramarine); border-left: 1px solid var(--ultramarine); }
.maquette::after { bottom: 0; right: 0; border-bottom: 1px solid var(--ultramarine); border-right: 1px solid var(--ultramarine); }

.maquette__hint {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .5s var(--ease);
}
.maquette.is-ready .maquette__hint { opacity: 1; }

/* Fallback when WebGL is unavailable — a flat drawing of the same object. */
.maquette__fallback {
  position: absolute; inset: 0; display: none;
  align-items: center; justify-content: center;
}
.no-webgl .maquette__fallback { display: flex; }
.no-webgl .maquette__canvas { display: none; }

/* Marquee of what we actually build. Real data, not logos we do not have. */
.ticker { border-block: 1px solid var(--hairline); overflow: hidden; padding-block: .9rem; }
.ticker__track { display: flex; gap: 3rem; width: max-content; animation: slide 38s linear infinite; }
.ticker span { font-family: var(--mono); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--graphite); white-space: nowrap; }
.ticker span::before { content: "◦"; color: var(--ultramarine); margin-right: 1rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* --- Service cards: physical objects, tilted in real 3D ----------------- */
/* No overflow:hidden here — it clipped the tilted cards mid-hover. */
.cards { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  display: flex; flex-direction: column; gap: .75rem;
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  background: var(--paper); text-decoration: none;
  transition: background .25s var(--ease);
}
.card:hover { background: #fff; }
.card__spec { display: block; }
.card h3 { font-size: 1.25rem; }
.card p { font-size: .9375rem; color: var(--graphite); line-height: 1.5; }
.card__go { margin-top: auto; padding-top: 1rem; font-family: var(--mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ultramarine); }
.card__go::after { content: " →"; display: inline-block; transition: transform .2s var(--ease); }
.card:hover .card__go::after { transform: translateX(4px); }

/* Tilt is applied by JS via custom properties, so reduced-motion can ignore it. */
.tilt-scene { perspective: 900px; }
.tilt {
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform .4s var(--ease);
}
.tilt.is-live { transition: transform .08s linear; }

/* --- Process: a real sequence, so numbering is honest ------------------- */
.steps { display: grid; gap: 1px; background: rgba(238,240,243,.14); }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.step { background: var(--ink); padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1.25rem, 2vw, 1.75rem) clamp(2rem, 3vw, 2.5rem); }
.step__n { font-family: var(--mono); font-size: .75rem; color: var(--ochre); letter-spacing: .1em; }
.step h3 { font-size: 1.25rem; margin-block: .75rem .6rem; }
.step p { font-size: .9375rem; color: rgba(238,240,243,.66); line-height: 1.55; }

/* --- Work index --------------------------------------------------------- */
.works { display: grid; gap: clamp(1.25rem, 2vw, 1.75rem); grid-template-columns: repeat(2, 1fr); }
.work {
  display: block; text-decoration: none; padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.work:hover { border-color: var(--ultramarine); transform: translateY(-3px); }
.work__meta { display: flex; gap: 1rem; margin-bottom: 1rem; }
.work h3 { font-size: clamp(1.375rem, 2vw, 1.75rem); margin-bottom: .6rem; }
.work p { color: var(--graphite); font-size: .9375rem; max-width: 46ch; }
.work__stack { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.25rem; }
.chip {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .06em;
  padding: .25rem .55rem; border: 1px solid var(--hairline); border-radius: 2px; color: var(--graphite);
}

/* --- Screenshots --------------------------------------------------------
   Screenshots are shown as objects on a surface, not as flush-bleed images:
   a hairline frame and a small inset keep them reading as artifacts of work
   rather than as decorative photography. */
.shot { margin: 0; }
.shot__img {
  width: 100%; height: auto; display: block;
  background: var(--porcelain-2);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
}
.shot--hero { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.shot figcaption { margin-top: .7rem; }

.gallery { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 3rem; }
.gallery .shot__img { border-color: var(--hairline); }

.work__thumb { margin: -1px -1px 1.5rem; }
.work__thumb .shot__img { border: 0; border-radius: var(--r) var(--r) 0 0; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; }
.work--shot { padding-top: 0; overflow: hidden; }

/* --- Testimonials -------------------------------------------------------- */
.quotes { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); grid-template-columns: repeat(3, 1fr); }
.quotes > div { background: var(--paper); }

.quote { margin: 0; padding: clamp(1.75rem, 3vw, 2.5rem); height: 100%; display: flex; flex-direction: column; }
.quote blockquote { margin: 0; }
.quote blockquote p {
  font-family: var(--display); font-weight: 400; letter-spacing: -.02em;
  font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem); line-height: 1.42;
  color: var(--ink); text-wrap: pretty;
}
.quote blockquote p::before { content: "\201C"; color: var(--ultramarine); }
.quote blockquote p::after  { content: "\201D"; color: var(--ultramarine); }
.quote figcaption { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: .2rem; }
.quote__name { font-weight: 500; font-size: .9375rem; }

/* Standalone quote inside a case study reads as an aside, not a card. */
.detail .quote {
  padding: 1.75rem 0 0; margin-top: 3rem;
  border-top: 1px solid var(--hairline);
}

/* --- Client wall --------------------------------------------------------- */
.clients {
  display: grid; gap: 1px; background: var(--hairline);
  border-block: 1px solid var(--hairline);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.clients__item {
  background: var(--porcelain); padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: .45rem; justify-content: center;
  min-height: 96px;
}
.clients__name { font-family: var(--display); font-weight: 600; font-size: 1.0625rem; letter-spacing: -.02em; }
.clients__logo { width: auto; max-height: 34px; object-fit: contain; object-position: left center; filter: grayscale(1); opacity: .78; }
.clients__country { font-size: .625rem; }

/* --- Article / detail pages -------------------------------------------- */
.detail { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.aside { position: sticky; top: 96px; padding: 1.75rem; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r); }
.aside h2 { font-size: 1rem; margin-bottom: 1rem; }
.aside ul li { padding: .55rem 0; border-bottom: 1px solid var(--hairline-2); font-size: .9375rem; color: var(--ink-2); }
.aside ul li:last-child { border-bottom: 0; }
.aside .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }

.ticklist li { position: relative; padding-left: 1.6rem; margin-bottom: .7rem; color: var(--ink-2); }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 8px; height: 8px; background: var(--ultramarine);
  clip-path: polygon(0 0, 100% 0, 100% 62%, 62% 100%, 0 100%);
}

/* --- Answer block: the AEO unit ---------------------------------------- */
/* Deliberately self-contained. If an AI lifts only this paragraph, it still
   makes sense and still names the company. That is the whole point. */
.answer {
  border-left: 2px solid var(--ultramarine);
  padding: 1.25rem 0 1.25rem 1.5rem;
  font-size: clamp(1.0625rem, 1.05rem + .25vw, 1.25rem);
  line-height: 1.5; color: var(--ink);
  max-width: 58ch;
}

/* --- FAQ ---------------------------------------------------------------- */
.faq { border-top: 1px solid var(--hairline); max-width: 68ch; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.4rem 2.5rem 1.4rem 0; position: relative;
  font-family: var(--display); font-weight: 600; font-size: 1.125rem; letter-spacing: -.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .5rem; top: 50%;
  width: 11px; height: 11px; margin-top: -8px;
  border-right: 1.5px solid var(--ultramarine); border-bottom: 1.5px solid var(--ultramarine);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq p { padding-bottom: 1.4rem; color: var(--ink-2); max-width: 60ch; }

/* --- Form --------------------------------------------------------------- */
.form { display: grid; gap: 1.25rem; max-width: 34rem; }
.field label { display: block; margin-bottom: .4rem; font-family: var(--mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--graphite); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; font-size: 1rem;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--hairline); border-radius: var(--r);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ultramarine); outline: none; }
.field textarea { min-height: 9rem; resize: vertical; }
.field--pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.hp { position: absolute; left: -9999px; }             /* honeypot */
.formnote { font-size: .875rem; color: var(--graphite); }
.alert { padding: 1rem 1.25rem; border-radius: var(--r); font-size: .9375rem; }
.alert--bad { background: #FCEDEC; color: #8A1F16; border: 1px solid #E9C4C0; }
.alert--good { background: #E9EEFC; color: var(--ultramarine-d); border: 1px solid #C3CDF2; }

/* --- Footer ------------------------------------------------------------- */
.foot { background: var(--ink); color: rgba(238,240,243,.72); padding-top: clamp(3.5rem, 6vw, 5.5rem); }
.foot__in {
  width: min(100% - var(--gut) * 2, var(--shell)); margin-inline: auto;
  display: grid; gap: 2.5rem; grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  padding-bottom: 3.5rem;
}
.foot .wordmark__text { color: var(--porcelain); font-size: 1.25rem; }
.foot .wordmark__text em { color: rgba(238,240,243,.45); }
.foot__brand p { margin-top: .9rem; font-size: .9375rem; max-width: 26ch; }
.foot__col h2 { font-family: var(--mono); font-weight: 500; font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(238,240,243,.42); margin-bottom: 1rem; }
.foot__col li { margin-bottom: .55rem; }
.foot a { text-decoration: none; font-size: .9375rem; transition: color .2s; }
.foot a:hover { color: #fff; }
.foot address { font-style: normal; font-size: .9375rem; line-height: 1.75; }
.foot__markets { margin-top: 1rem; font-size: .875rem; color: rgba(238,240,243,.55); }
.foot__social { display: flex; gap: 1rem; margin-top: 1.25rem; }
.foot__social a { font-family: var(--mono); font-size: .6875rem; letter-spacing: .08em; text-transform: uppercase; }
.foot__bar {
  width: min(100% - var(--gut) * 2, var(--shell)); margin-inline: auto;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.5rem; border-top: 1px solid rgba(238,240,243,.12);
  font-family: var(--mono); font-size: .75rem; letter-spacing: .04em;
}

/* --- Scroll reveal ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1000px) {
  .quotes { grid-template-columns: 1fr; }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .steps--4 { grid-template-columns: repeat(2, 1fr); }
  .foot__in { grid-template-columns: 1fr 1fr; }
  .detail { grid-template-columns: 1fr; }
  .aside { position: static; }
}

@media (max-width: 820px) {
  .nav, .masthead__cta { display: none; }
  .burger { display: flex; }
  .masthead.is-open .mobilenav { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .maquette { order: -1; aspect-ratio: 4 / 3; }
  .cards--3 { grid-template-columns: 1fr; }
  .works { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .cards--4 { grid-template-columns: 1fr; }
  .steps--4 { grid-template-columns: 1fr; }
  .foot__in { grid-template-columns: 1fr; }
  .field--pair { grid-template-columns: 1fr; }
}

/* --- Motion preferences ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .tilt { transform: none !important; }
}

@media print {
  .masthead, .mobilenav, .maquette, .ticker, .btn { display: none; }
  body { background: #fff; }
}
