:root {
  --cp-ink: #080908;
  --cp-panel: #10110f;
  --cp-panel-soft: #151612;
  --cp-paper: #f3eee8;
  --cp-muted: #aaa39b;
  --cp-copper: #c98459;
  --cp-copper-light: #e5a77d;
  --cp-line: rgba(201, 132, 89, .33);
  --cp-line-soft: rgba(255, 255, 255, .1);
  --cp-green: #25d366;
}

html {
  scroll-behavior: smooth;
}

body.custom-printing {
  margin: 0;
  color: var(--cp-paper);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    var(--cp-ink);
  background-size: 80px 80px;
}

.custom-printing *,
.custom-printing *::before,
.custom-printing *::after {
  box-sizing: border-box;
}

.custom-printing main {
  overflow: hidden;
}

.cp-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.cp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cp-copper-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cp-kicker::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.cp-hero {
  position: relative;
  min-height: 760px;
  padding: clamp(76px, 9vw, 138px) 0 62px;
  border-bottom: 1px solid var(--cp-line);
  background:
    radial-gradient(circle at 12% 16%, rgba(201,132,89,.11), transparent 34%),
    #080908;
}

.cp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
}

.cp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: #807b75;
  font-size: 12px;
}

.cp-breadcrumb a {
  color: #b6afa7;
  text-decoration: none;
}

.cp-hero h1 {
  max-width: 12ch;
  margin: 18px 0 24px;
  color: var(--cp-paper);
  font-size: clamp(3.4rem, 6.7vw, 7rem);
  font-weight: 620;
  letter-spacing: -.075em;
  line-height: .87;
}

.cp-hero h1 em {
  display: block;
  color: var(--cp-copper-light);
  font-style: normal;
}

.custom-printing-detail .cp-hero h1 {
  max-width: 14.5ch;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
}

.custom-printing-detail .cp-hero {
  padding-top: clamp(76px, 6vw, 92px);
}

.cp-hero-lead {
  max-width: 57ch;
  margin: 0;
  color: #bbb3ab;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.cp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.cp-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid var(--cp-line);
  color: var(--cp-paper);
  font-weight: 760;
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}

.cp-button:hover {
  transform: translateY(-2px);
  border-color: var(--cp-copper);
}

.cp-button--primary {
  border-color: var(--cp-copper-light);
  color: #120d09;
  background: linear-gradient(120deg, var(--cp-copper-light), #c77f55);
}

.cp-button--primary:hover {
  color: #120d09;
  background: #efb58c;
}

.cp-hero-visual {
  position: relative;
  min-height: 590px;
  margin: 0;
  isolation: isolate;
}

.cp-hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 5% 5% 0 -8%;
  border: 1px solid rgba(201,132,89,.45);
  content: "";
  transform: skewX(-4deg);
}

.cp-hero-visual img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.08);
}

.cp-hero-visual::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8,9,8,.5), transparent 28%), linear-gradient(0deg, rgba(8,9,8,.42), transparent 44%);
}

.cp-visual-note {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 18px 20px;
  border: 1px solid rgba(229,167,125,.4);
  backdrop-filter: blur(14px);
  background: rgba(8,9,8,.78);
}

.cp-visual-note strong,
.cp-visual-note span {
  display: block;
}

.cp-visual-note strong {
  font-size: 15px;
}

.cp-visual-note span {
  margin-top: 5px;
  color: #a89f96;
  font-size: 12px;
  line-height: 1.5;
}

.cp-trust {
  border-bottom: 1px solid var(--cp-line-soft);
  background: #0b0c0b;
}

.cp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cp-trust-item {
  min-height: 102px;
  padding: 24px clamp(14px, 2.2vw, 30px);
  border-right: 1px solid var(--cp-line-soft);
}

.cp-trust-item:last-child {
  border-right: 0;
}

.cp-trust-item strong,
.cp-trust-item span {
  display: block;
}

.cp-trust-item strong {
  color: var(--cp-copper-light);
  font-size: .95rem;
}

.cp-trust-item span {
  margin-top: 5px;
  color: #98918a;
  font-size: .8rem;
  line-height: 1.45;
}

.cp-section {
  position: relative;
  padding: clamp(74px, 9vw, 132px) 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.cp-section-head {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, 1fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 48px;
}

.cp-section h2 {
  max-width: 14ch;
  margin: 16px 0 0;
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
  font-weight: 610;
  letter-spacing: -.065em;
  line-height: .92;
}

.cp-section-head > p,
.cp-rich-copy p {
  margin: 0;
  color: #aaa39b;
  font-size: 1rem;
  line-height: 1.8;
}

.cp-explorer {
  background:
    linear-gradient(90deg, rgba(201,132,89,.06), transparent 36%),
    #0d0e0c;
}

.cp-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.cp-filter button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--cp-line-soft);
  color: #b8b0a8;
  background: transparent;
  font: inherit;
  font-size: .86rem;
  cursor: pointer;
}

.cp-filter button[aria-pressed="true"],
.cp-filter button:hover {
  border-color: var(--cp-copper);
  color: #120d09;
  background: var(--cp-copper-light);
}

.cp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--cp-line-soft);
  border-left: 1px solid var(--cp-line-soft);
}

.cp-service-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--cp-line-soft);
  border-bottom: 1px solid var(--cp-line-soft);
  color: inherit;
  text-decoration: none;
  background: rgba(16,17,15,.84);
}

.cp-service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  transition: opacity .35s ease;
  background: linear-gradient(145deg, rgba(201,132,89,.18), transparent 55%);
}

.cp-service-card:hover::before {
  opacity: 1;
}

.cp-service-card[hidden] {
  display: none;
}

.cp-card-index {
  color: var(--cp-copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.cp-service-card h3 {
  position: relative;
  margin: auto 0 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -.045em;
}

.cp-service-card p {
  position: relative;
  margin: 0;
  color: #9f9891;
  font-size: .88rem;
  line-height: 1.65;
}

.cp-card-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  color: var(--cp-copper-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cp-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  min-height: 640px;
  border: 1px solid var(--cp-line-soft);
}

.cp-editorial--reverse {
  grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr);
}

.cp-editorial-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.cp-editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.08);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.cp-editorial:hover .cp-editorial-media img {
  transform: scale(1.025);
  filter: saturate(.96) contrast(1.05);
}

.cp-editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
  background: #10110f;
}

.cp-editorial-copy h2,
.cp-rich-copy h2 {
  max-width: 13ch;
  margin: 17px 0 24px;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  font-weight: 610;
  letter-spacing: -.06em;
  line-height: .94;
}

.cp-editorial-copy p {
  margin: 0 0 18px;
  color: #aaa39b;
  line-height: 1.75;
}

.cp-checklist {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.cp-checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--cp-line-soft);
  color: #c9c1b9;
  line-height: 1.55;
}

.cp-checklist li::before {
  color: var(--cp-copper-light);
  content: "↗";
}

.cp-capabilities {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 7vw, 90px);
}

.cp-rich-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.cp-size-list {
  border-top: 1px solid var(--cp-line);
}

.cp-size-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--cp-line-soft);
}

.cp-size-row strong {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.cp-size-row span {
  max-width: 44ch;
  color: #a59d95;
  line-height: 1.6;
}

.cp-size-value {
  color: var(--cp-copper-light) !important;
  font-weight: 760;
  white-space: nowrap;
}

.cp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
  border-top: 1px solid var(--cp-line);
}

.cp-step {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--cp-line-soft);
  counter-increment: steps;
}

.cp-step:last-child {
  border-right: 0;
}

.cp-step::before {
  display: block;
  margin-bottom: 56px;
  color: rgba(229,167,125,.38);
  content: "0" counter(steps);
  font-size: 2.2rem;
  font-weight: 700;
}

.cp-step h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.cp-step p {
  margin: 0;
  color: #9f9891;
  font-size: .88rem;
  line-height: 1.65;
}

.cp-geo {
  background:
    radial-gradient(circle at 92% 18%, rgba(201,132,89,.12), transparent 35%),
    #0c0d0c;
}

.cp-geo-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(46px, 8vw, 112px);
  align-items: center;
}

.cp-geo-copy h2 {
  max-width: 12ch;
  margin: 17px 0 24px;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  font-weight: 610;
  letter-spacing: -.065em;
  line-height: .92;
}

.cp-geo-copy p {
  color: #aaa39b;
  line-height: 1.8;
}

.cp-map-lines {
  position: relative;
  min-height: 410px;
  border: 1px solid var(--cp-line-soft);
  background:
    radial-gradient(circle, rgba(229,167,125,.24) 1px, transparent 1.5px),
    #11120f;
  background-size: 28px 28px;
}

.cp-map-line {
  position: absolute;
  left: 14%;
  width: 72%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--cp-copper-light), rgba(229,167,125,.05));
}

.cp-map-line:nth-child(1) { top: 26%; transform: rotate(8deg); }
.cp-map-line:nth-child(2) { top: 49%; transform: rotate(-5deg); }
.cp-map-line:nth-child(3) { top: 70%; transform: rotate(3deg); }

.cp-map-city {
  position: absolute;
  padding-left: 17px;
  color: #d8d0c7;
  font-size: .82rem;
  font-weight: 750;
}

.cp-map-city::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--cp-copper-light);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  box-shadow: 0 0 0 8px rgba(201,132,89,.08);
}

.cp-map-city--reims { top: 19%; left: 14%; }
.cp-map-city--france { top: 52%; left: 45%; }
.cp-map-city--belgique { top: 29%; right: 8%; }
.cp-map-city--suisse { right: 12%; bottom: 18%; }

.cp-faq-list {
  border-top: 1px solid var(--cp-line);
}

.cp-faq-item {
  border-bottom: 1px solid var(--cp-line-soft);
}

.cp-faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  color: var(--cp-paper);
  text-align: left;
  background: transparent;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 720;
  cursor: pointer;
}

.cp-faq-item button span:last-child {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--cp-line);
  border-radius: 50%;
  color: var(--cp-copper-light);
  transition: transform .25s ease;
}

.cp-faq-item button[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.cp-faq-answer {
  max-width: 76ch;
  padding: 0 0 24px;
  color: #aaa39b;
  line-height: 1.75;
}

.cp-cta {
  padding: clamp(70px, 9vw, 128px) 0;
  background:
    linear-gradient(120deg, rgba(201,132,89,.22), transparent 44%),
    #11120f;
}

.cp-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: clamp(38px, 6vw, 78px);
  border: 1px solid var(--cp-copper);
}

.cp-cta h2 {
  max-width: 14ch;
  margin: 15px 0 0;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  letter-spacing: -.067em;
  line-height: .92;
}

.cp-footer {
  padding: 50px 0;
  border-top: 1px solid var(--cp-line);
  background: #080908;
}

.cp-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 52px;
}

.cp-footer-brand {
  font-size: 1.35rem;
  font-weight: 800;
}

.cp-footer small,
.cp-footer p,
.cp-footer a {
  color: #9f9891;
  font-size: .84rem;
  line-height: 1.7;
}

.cp-footer a {
  display: block;
  text-decoration: none;
}

.cp-footer a:hover {
  color: var(--cp-copper-light);
}

.cp-footer h3 {
  margin: 0 0 12px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cp-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--cp-line-soft);
  color: #79736d;
  font-size: .75rem;
}

.custom-printing .wa-float {
  background: var(--cp-green) !important;
  color: #fff !important;
  border-color: #59e28b !important;
}

.custom-printing .wa-float:hover {
  background: #20bd5a !important;
}

.cp-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.cp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .cp-hero {
    min-height: 0;
    padding-top: 105px;
  }

  .cp-hero-grid {
    grid-template-columns: 1fr;
  }

  .cp-hero h1 {
    max-width: 13ch;
  }

  .cp-hero-visual {
    min-height: 520px;
  }

  .cp-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cp-editorial,
  .cp-editorial--reverse {
    grid-template-columns: 1fr;
  }

  .cp-editorial--reverse .cp-editorial-media {
    order: 0;
  }

  .cp-editorial--reverse .cp-editorial-copy {
    order: 1;
  }

  .cp-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-step:nth-child(2) {
    border-right: 0;
  }

  .cp-step:nth-child(-n+2) {
    border-bottom: 1px solid var(--cp-line-soft);
  }
}

@media (max-width: 760px) {
  .cp-shell {
    width: min(100% - 32px, 1180px);
  }

  .cp-hero {
    padding: 88px 0 32px;
  }

  .cp-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .custom-printing-detail .cp-hero h1 {
    font-size: clamp(2.85rem, 13.5vw, 4.5rem);
  }

  .cp-hero-visual {
    min-height: 420px;
  }

  .cp-hero-visual::before {
    display: none;
  }

  .cp-visual-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .cp-trust-grid,
  .cp-section-head,
  .cp-capabilities,
  .cp-geo-grid,
  .cp-cta-box,
  .cp-footer-grid {
    grid-template-columns: 1fr;
  }

  .cp-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-trust-item:nth-child(even) {
    border-right: 0;
  }

  .cp-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--cp-line-soft);
  }

  .cp-section-head {
    align-items: start;
    gap: 24px;
  }

  .cp-section h2,
  .cp-cta h2,
  .cp-geo-copy h2 {
    max-width: 14ch;
    font-size: clamp(2.6rem, 12vw, 4.3rem);
  }

  .cp-service-grid {
    grid-template-columns: 1fr;
  }

  .cp-service-card {
    min-height: 260px;
  }

  .cp-editorial-media {
    min-height: 360px;
  }

  .cp-rich-copy {
    position: static;
  }

  .cp-size-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cp-process {
    grid-template-columns: 1fr;
  }

  .cp-step,
  .cp-step:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--cp-line-soft);
  }

  .cp-step::before {
    margin-bottom: 28px;
  }

  .cp-cta-box {
    align-items: start;
  }

  .cp-footer-bottom {
    flex-direction: column;
  }
}

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

  .cp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cp-editorial-media img,
  .cp-button {
    transition: none;
  }
}
