@font-face {
  font-family: "Copper Manrope";
  src: url("/assets/copper/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --copper-black: #080908;
  --copper-black-soft: #0d0e0d;
  --copper-raised: #141411;
  --copper-raised-2: #1a1815;
  --copper-paper: #f0ece6;
  --copper-muted: #aaa39c;
  --copper-dim: #7f7973;
  --copper: #c8845c;
  --copper-light: #e0a47d;
  --copper-deep: #8f583b;
  --copper-line: rgba(224, 164, 125, 0.26);
  --copper-line-soft: rgba(240, 236, 230, 0.12);
  --copper-line-strong: rgba(224, 164, 125, 0.5);
  --copper-body: "Copper Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --bg-0: var(--copper-black);
  --bg-1: #0a0b0a;
  --bg-2: var(--copper-black-soft);
  --bg-3: var(--copper-raised);
  --surface: var(--copper-black-soft);
  --surface-2: var(--copper-raised);
  --text: var(--copper-paper);
  --text-muted: #bbb5ae;
  --text-dim: var(--copper-muted);
  --border: var(--copper-line-soft);
  --border-strong: var(--copper-line);
  --neon-cyan: var(--copper);
  --neon-magenta: var(--copper-light);
  --accent-soft: rgba(200, 132, 92, 0.08);
  --accent-glow: rgba(200, 132, 92, 0.2);
  --magenta-soft: rgba(224, 164, 125, 0.08);
  --magenta-glow: rgba(224, 164, 125, 0.18);
  --font-display: var(--copper-body);
  --font-sans: var(--copper-body);
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --r-sm: 2px;
  --r-md: 2px;
  --r-lg: 3px;
  --announce-h: 0px;
  --topbar-h: 0px;
  --header-h: 96px;
  --total-header-h: 96px;
  --container: 1440px;
}

html {
  background: var(--copper-black);
}

body.copper-ui {
  min-width: 320px;
  padding-top: var(--total-header-h);
  overflow-x: clip;
  background:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    var(--copper-black);
  background-size: 92px 92px;
  color: var(--copper-paper);
  font-family: var(--copper-body);
  letter-spacing: -0.012em;
}

body.copper-home {
  padding-top: 0;
}

body.copper-ui::before,
body.copper-ui::after {
  opacity: .12;
  filter: sepia(1) hue-rotate(335deg) saturate(.55);
}

body.copper-ui h1,
body.copper-ui h2,
body.copper-ui h3,
body.copper-ui h4,
body.copper-ui .brand-text,
body.copper-ui .num {
  font-family: var(--copper-body);
  font-weight: 700;
  letter-spacing: -.035em;
}

body.copper-ui p,
body.copper-ui li {
  line-height: 1.68;
}

body.copper-ui ::selection {
  color: var(--copper-black);
  background: var(--copper-light);
}

body.copper-ui :focus-visible {
  outline: 2px solid var(--copper-light);
  outline-offset: 4px;
}

body.copper-ui .container,
body.copper-ui .container-narrow {
  width: min(100% - 64px, var(--container));
}

/* Announcement, header and navigation */
.copper-ui .announce-bar {
  display: none;
}

.copper-ui .announce-bar-link {
  width: min(100% - 64px, var(--container));
  justify-content: space-between;
}

.copper-ui .announce-bar-text {
  opacity: .76;
}

.copper-ui .announce-bar-text strong {
  color: var(--copper-light);
}

.copper-ui .announce-bar-cta {
  color: var(--copper-paper);
  border-left: 1px solid var(--copper-line);
  padding-left: 18px;
}

.copper-ui .topbar {
  display: none;
}

.copper-ui .site-header {
  top: var(--announce-h);
  height: var(--header-h);
  background: rgba(8, 9, 8, .96);
  border-bottom: 1px solid rgba(200, 132, 92, .16);
  backdrop-filter: blur(18px) saturate(110%);
  box-shadow: none;
}

.copper-ui .site-header.is-scrolled {
  background: rgba(8, 9, 8, .985);
  border-bottom-color: var(--copper-line);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .22);
}

.copper-home .site-header:not(.is-scrolled) {
  background: linear-gradient(90deg, rgba(8,9,8,.98) 0 47%, rgba(8,9,8,.72) 62%, rgba(8,9,8,.18) 100%);
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.copper-home .site-header:not(.is-scrolled) .nav {
  transform: translateY(-6px);
}

.copper-ui .nav {
  width: min(100% - 56px, 1500px);
  gap: 24px;
}

.copper-ui .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--copper-paper);
  text-decoration: none;
}

/* The wordmark is intentionally typographic: no monogram or glowing dot. */
.copper-ui .copper-brand-mark,
.copper-ui .brand img[src*="atelier-electro-monogram"],
.copper-ui .brand::before,
.copper-ui .brand-dot {
  content: none !important;
  display: none !important;
}

.copper-ui .brand-text {
  display: grid;
  gap: 2px;
  color: var(--copper-paper);
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.copper-ui .brand-text small {
  color: var(--copper);
  font: 700 8px/1 var(--copper-body);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.copper-ui .nav-links {
  gap: 0;
}

.copper-ui .nav-links > li > a,
.copper-ui .nav-links > li > .mega-trigger,
.copper-ui .nav-montage-menu .montage-trigger {
  min-height: 44px;
  padding: 0 11px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ded9d3;
  font: 600 12px/1 var(--copper-body);
  letter-spacing: -.015em;
}

.copper-ui .nav-links > li > a::after,
.copper-ui .nav-links > li > .mega-trigger::after,
.copper-ui .nav-montage-menu .montage-trigger::after {
  content: "";
  position: absolute;
  right: calc(100% - 11px);
  bottom: 5px;
  left: 11px;
  height: 1px;
  background: var(--copper);
  transition: right .22s ease;
}

.copper-ui .nav-links > li > a:hover::after,
.copper-ui .nav-links > li > a[aria-current="page"]::after,
.copper-ui .nav-links > li > .mega-trigger:hover::after,
.copper-ui .nav-links > li.is-open > .mega-trigger::after,
.copper-ui .nav-montage-menu:hover .montage-trigger::after {
  right: 11px;
}

.copper-ui .nav-links > li > a:hover,
.copper-ui .nav-links > li > a[aria-current="page"],
.copper-ui .nav-links > li > .mega-trigger:hover,
.copper-ui .nav-links > li.has-mega:hover > .mega-trigger,
.copper-ui .nav-links > li.has-mega.is-open > .mega-trigger,
.copper-ui .nav-montage-menu:hover .montage-trigger {
  color: var(--copper-paper);
  background: transparent;
}

.copper-ui .nav-featured {
  color: var(--copper) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.copper-ui .nav-cta {
  gap: 10px;
}

.copper-ui .smart-menu-trigger--desktop {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid var(--copper-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--copper-light) !important;
  box-shadow: none !important;
}

.copper-home .smart-menu-trigger--desktop {
  display: none !important;
}

/* Fallback for legacy pages that load the menu script without its component CSS. */
.copper-ui .smart-menu-trigger__label,
.copper-ui .smart-menu-trigger__kbd {
  display: none !important;
}

.copper-ui .smart-menu-trigger__icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--copper);
}

.copper-ui .smart-menu-trigger--desktop:hover {
  border-color: var(--copper) !important;
  background: rgba(200,132,92,.08) !important;
}

.copper-ui .nav-phone {
  position: relative;
  min-height: 44px;
  padding: 0 12px 0 0;
  display: grid;
  grid-template-columns: 20px auto;
  align-content: center;
  gap: 2px 8px;
  color: var(--copper-paper);
  font-size: 12px;
  text-decoration: none;
}

@media (min-width: 1281px) {
  .copper-ui .nav-phone {
    min-width: 128px;
  }

  .copper-nav-ship {
    min-width: 193px;
    justify-content: center;
  }

  .copper-ui .nav-devis {
    min-width: 148px;
  }
}

.copper-ui .nav-phone svg {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--copper);
}

.copper-nav-hours {
  color: var(--copper);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .01em;
}

.copper-ui .btn,
.copper-ui .topbar-cta,
.copper-ui .mega-cta,
.copper-ui button {
  border-radius: 2px;
  font-family: var(--copper-body);
}

.copper-ui .btn {
  min-height: 50px;
  padding: 0 24px;
  border-width: 1px;
  font-weight: 700;
  box-shadow: none;
  transform: none;
}

.copper-ui .btn-primary,
.copper-ui .nav-devis,
.copper-ui .btn-magenta {
  border-color: var(--copper-light);
  background: var(--copper-light);
  color: #17110e;
}

.copper-ui .btn-primary:hover,
.copper-ui .nav-devis:hover,
.copper-ui .btn-magenta:hover {
  border-color: #efb995;
  background: #efb995;
  color: #17110e;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
  transform: translateY(-1px);
}

.copper-ui .btn-ghost,
.copper-nav-ship {
  border: 1px solid var(--copper-line-strong);
  background: transparent;
  color: var(--copper-paper);
}

.copper-nav-ship {
  min-height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}

.copper-nav-ship svg {
  width: 16px;
  color: var(--copper);
}

.copper-ui .btn-ghost:hover,
.copper-nav-ship:hover {
  border-color: var(--copper-light);
  background: rgba(200,132,92,.08);
  color: var(--copper-light);
}

.copper-ui .nav-devis {
  min-height: 44px;
  padding-inline: 21px;
  font-size: 11px;
}

.copper-ui .nav-toggle {
  border: 1px solid var(--copper-line);
  border-radius: 2px;
  background: transparent;
}

.copper-ui .nav-toggle span,
.copper-ui .nav-toggle span::before,
.copper-ui .nav-toggle span::after {
  background: var(--copper-paper);
  border-radius: 0;
}

/* Desktop mega menus keep every original link but inherit the copper system. */
.copper-ui .mega,
.copper-ui .montage-mega {
  top: var(--total-header-h);
  border: 1px solid var(--copper-line);
  border-top-color: var(--copper);
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(200,132,92,.045), transparent 42%),
    #0b0c0b;
  box-shadow: 0 28px 80px rgba(0,0,0,.5);
}

.copper-ui .mega::before {
  display: none;
}

.copper-ui .mega-tabs {
  border-bottom-color: var(--copper-line-soft);
}

.copper-ui .mega-tab {
  border-radius: 0;
  color: var(--copper-muted);
}

.copper-ui .mega-tab.is-active {
  border-color: var(--copper-line-strong);
  background: var(--copper-raised);
  color: var(--copper-light);
  box-shadow: none;
}

.copper-ui .mega-col .mega-h,
.copper-ui .mm-section-title {
  color: var(--copper);
  font-family: var(--font-mono);
  letter-spacing: .16em;
}

.copper-ui .mega-col li a {
  border-radius: 0;
  color: #b8b2ac;
}

.copper-ui .mega-col li a:hover {
  padding-left: 13px;
  background: rgba(200,132,92,.07);
  color: var(--copper-paper);
}

.copper-ui .mega-cta {
  border-color: var(--copper-line-strong);
  background: transparent;
  color: var(--copper-light);
}

.copper-ui .mega-cta:hover {
  background: var(--copper-light) !important;
  color: #17110e !important;
  box-shadow: none;
}

/* Montage Gaming / Workstation — full copper treatment. */
.copper-ui .nav-montage-menu .montage-trigger span {
  color: var(--copper-light);
  font-weight: 800;
}

.copper-ui .montage-mega {
  padding: 24px;
  border-color: var(--copper-line);
  border-top-color: var(--copper);
  background:
    linear-gradient(115deg, rgba(200,132,92,.075), transparent 32%),
    #0b0c0b;
  color: var(--copper-paper);
}

.copper-ui .montage-mega-head {
  padding-bottom: 18px;
  border-bottom-color: var(--copper-line-soft);
}

.copper-ui .montage-mega-head strong {
  color: var(--copper-paper);
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.copper-ui .montage-mega-head small {
  color: var(--copper-muted);
}

.copper-ui .montage-mega-head > a,
.copper-ui .montage-mega-actions a {
  border: 1px solid var(--copper-line-strong);
  border-radius: 2px;
  background: rgba(200,132,92,.045);
  color: var(--copper-paper);
  box-shadow: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.copper-ui .montage-mega-head > a {
  color: var(--copper-light);
}

.copper-ui .montage-mega-actions a:nth-child(2) {
  border-color: var(--copper-light);
  background: var(--copper-light);
  color: #17110e;
}

.copper-ui .montage-mega-head > a:hover,
.copper-ui .montage-mega-actions a:hover {
  border-color: var(--copper-light);
  background: var(--copper-light);
  color: #17110e;
  transform: translateY(-1px);
}

.copper-ui .montage-mega-actions a:nth-child(2):hover {
  border-color: #efb995;
  background: #efb995;
}

.copper-ui .montage-mega-search {
  margin: 18px 0 14px;
}

.copper-ui .montage-mega-search input {
  height: 56px;
  border-color: var(--copper-line-soft);
  border-radius: 2px;
  background: rgba(8,9,8,.72);
  color: var(--copper-paper);
  font-family: var(--copper-body);
  box-shadow: inset 0 -1px 0 rgba(224,164,125,.16);
}

.copper-ui .montage-mega-search input::placeholder {
  color: #8f8880;
}

.copper-ui .montage-mega-search input:hover {
  border-color: var(--copper-line);
}

.copper-ui .montage-mega-search input:focus {
  border-color: var(--copper-light);
  box-shadow: 0 0 0 3px rgba(200,132,92,.12), inset 0 -1px 0 var(--copper-light);
}

.copper-ui .montage-mega-actions {
  gap: 10px;
  margin: 14px 0 16px;
}

.copper-ui .montage-featured {
  gap: 12px;
  margin: 16px 0;
}

.copper-ui .montage-card,
.copper-ui .montage-mega-list a {
  border-color: var(--copper-line-soft);
  border-radius: 2px;
  background: rgba(240,236,230,.035);
  color: #ddd7d0;
  box-shadow: none;
}

.copper-ui .montage-card.is-featured {
  min-height: 92px;
  border-color: rgba(224,164,125,.22);
  background:
    linear-gradient(100deg, rgba(200,132,92,.11), transparent 58%),
    rgba(240,236,230,.035);
}

.copper-ui .montage-card:hover,
.copper-ui .montage-mega-list a:hover {
  border-color: var(--copper-line-strong);
  background: rgba(200,132,92,.085);
  color: var(--copper-paper);
  transform: translateY(-1px);
}

.copper-ui .montage-card strong,
.copper-ui .montage-cat strong {
  color: var(--copper-paper);
}

.copper-ui .montage-card small,
.copper-ui .montage-cat small {
  color: var(--copper-muted);
  font-family: var(--copper-body);
}

.copper-ui .montage-cats {
  gap: 8px;
  margin: 14px 0 10px;
}

.copper-ui .montage-cat {
  min-height: 68px;
  border-color: var(--copper-line-soft);
  border-radius: 2px;
  background: rgba(240,236,230,.025);
  color: #d6d0c9;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.copper-ui .montage-cat:hover {
  border-color: var(--copper-line);
  background: rgba(200,132,92,.065);
}

.copper-ui .montage-cat.is-active {
  border-color: var(--copper-light);
  background:
    linear-gradient(120deg, rgba(200,132,92,.2), rgba(200,132,92,.055)),
    #11110f;
  box-shadow: inset 0 0 0 1px rgba(224,164,125,.08);
}

.copper-ui .montage-cat.is-active strong {
  color: var(--copper-light);
}

.copper-ui .montage-meta {
  color: var(--copper-muted);
  font-family: var(--copper-body);
}

.copper-ui .montage-meta strong,
.copper-ui .montage-meta b {
  color: var(--copper-light);
}

.copper-ui .montage-mega-list {
  scrollbar-color: var(--copper-deep) #0b0c0b;
}

.copper-ui .montage-mega-list::-webkit-scrollbar {
  width: 7px;
}

.copper-ui .montage-mega-list::-webkit-scrollbar-track {
  background: #0b0c0b;
}

.copper-ui .montage-mega-list::-webkit-scrollbar-thumb {
  border: 2px solid #0b0c0b;
  border-radius: 0;
  background: var(--copper-deep);
}

.copper-ui .montage-empty {
  border-color: var(--copper-line);
  border-radius: 2px;
  color: var(--copper-muted);
}

.copper-ui .montage-mobile-close {
  border-color: var(--copper-line);
  border-radius: 2px;
  background: rgba(200,132,92,.08);
  color: var(--copper-paper);
}

.copper-ui .montage-mobile-entry {
  border-color: var(--copper-line-strong);
  border-radius: 2px;
  background:
    linear-gradient(105deg, rgba(200,132,92,.15), transparent 64%),
    #11110f;
  color: var(--copper-paper);
  box-shadow: none;
}

.copper-ui .montage-mobile-entry strong {
  color: var(--copper-light);
}

.copper-ui .montage-mobile-entry small {
  color: var(--copper-muted);
  font-family: var(--copper-body);
}

@media (max-width: 760px) {
  .copper-ui .montage-mega {
    background:
      linear-gradient(150deg, rgba(200,132,92,.1), transparent 30%),
      #0b0c0b;
  }

  .copper-ui .montage-mega-actions {
    background: linear-gradient(180deg, rgba(11,12,11,.99), rgba(11,12,11,.88));
  }
}

/* Home hero — faithful to the selected dark mineral / copper reference. */
.copper-home .hero {
  min-height: 724px;
  padding: var(--header-h) 0 0;
  align-items: stretch;
  isolation: isolate;
  background: var(--copper-black-soft);
}

.copper-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(96deg, #0b0d0d 0%, #0b0d0d 43%, rgba(11,13,13,.25) 52%, transparent 68%),
    url("/assets/copper/hero-microscope-copper.webp") right center / auto 126% no-repeat;
}

.copper-home .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 47.28%;
  width: 1px;
  background: linear-gradient(180deg, rgba(224,164,125,.18), var(--copper), rgba(224,164,125,.22));
  box-shadow: 0 0 0 1px rgba(0,0,0,.38);
  transform: skewX(5.4deg);
  transform-origin: top center;
  pointer-events: none;
}

.copper-home .hero .container {
  width: min(100% - 128px, 1500px);
}

.copper-home .hero-grid {
  min-height: calc(724px - var(--header-h));
  grid-template-columns: 47% 53%;
  gap: 0;
  align-items: stretch;
}

.copper-home .hero-text {
  max-width: 610px;
  padding: 46px 44px 23px 0;
  align-self: stretch;
}

.copper-home .hero-text::before {
  content: none;
}

.copper-home .hero-text .eyebrow {
  display: none;
}

.copper-home .hero-headline {
  margin: 0 0 31px;
  color: var(--copper-paper);
  font-size: clamp(3rem, 4.25vw, 4.6rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.055em;
}

.copper-home .hero-headline::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 26px;
  background: var(--copper);
}

.copper-home .hero-primary-line {
  display: block;
  transform: translateY(-5px) scaleX(1.06);
  transform-origin: left center;
}

.copper-home .hero-headline .stroke {
  display: block;
  width: 90.9%;
  margin-top: 7px;
  background: none;
  color: var(--copper-light);
  font-size: .78em;
  line-height: 1.02;
  white-space: nowrap;
  filter: none;
  text-shadow: none;
  transform: scaleX(1.1);
  transform-origin: left center;
}

.copper-home .hero .lead {
  width: 440px;
  max-width: 100%;
  color: #aaa6a1;
  font-size: 15px;
  line-height: 1.7;
}

.copper-home .hero-cta {
  display: flex;
  flex-flow: row nowrap;
  gap: 22px;
  margin-top: 33px;
}

.copper-home .hero-cta .btn {
  flex: 0 0 auto;
  min-height: 55px;
  min-width: 0;
}

.copper-home .hero-cta .btn:first-child {
  width: 307px;
}

.copper-home .hero-cta .btn:last-child {
  width: 276px;
}

.copper-home .hero-visual,
.copper-home .hero-meta {
  display: none;
}

.copper-entry {
  width: 608px;
  max-width: none;
  margin-top: 23px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 44px minmax(0,1fr);
  border: 1px solid var(--copper-line-strong);
  background: rgba(14,15,14,.82);
}

.copper-entry-choice {
  min-height: 105px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  column-gap: 13px;
  color: var(--copper-paper);
  text-decoration: none;
  transition: background .22s ease, color .22s ease;
}

.copper-entry-choice svg {
  width: 27px;
  height: 27px;
  grid-row: 1 / 4;
  color: var(--copper);
}

.copper-entry-choice strong {
  font-size: 13px;
}

.copper-entry-choice span,
.copper-entry-choice small {
  color: var(--copper-muted);
  font-size: 10px;
  line-height: 1.45;
}

.copper-entry-choice small {
  color: var(--copper);
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.copper-entry-choice:hover {
  background: rgba(200,132,92,.09);
}

.copper-entry-divider {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--copper-paper);
  font: 700 9px var(--copper-body);
}

.copper-entry-divider::before,
.copper-entry-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 31px;
  background: var(--copper-line-soft);
}

.copper-entry-divider::before { top: 0; }
.copper-entry-divider::after { bottom: 0; }

.copper-entry-divider span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper-line);
  border-radius: 50%;
  background: #111211;
}

/* Evidence strip */
.copper-ui .trust {
  padding: 0;
  border-top: 1px solid var(--copper);
  border-bottom: 1px solid var(--copper-line-soft);
  background: #0c0d0c;
}

.copper-ui .trust::before {
  display: none;
}

.copper-trust-grid {
  min-height: 90px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0,1fr));
  align-items: center;
}

.copper-trust-item {
  min-height: 48px;
  padding: 8px 18px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--copper-line-soft);
}

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

.copper-trust-item svg {
  width: 32px;
  height: 32px;
  color: var(--copper);
  stroke-width: 1.45;
}

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

.copper-trust-item strong {
  color: var(--copper-paper);
  font-size: 13px;
  line-height: 1.2;
}

.copper-trust-item span {
  margin-top: 3px;
  color: var(--copper-muted);
  font-size: 10px;
  line-height: 1.25;
}

/* Shared page rhythm */
.copper-ui main {
  background: transparent;
}

.copper-ui main > section:not(.hero):not(.trust):not(.page-head):not(.svc-hero) {
  position: relative;
  padding-top: clamp(76px, 8vw, 122px);
  padding-bottom: clamp(76px, 8vw, 122px);
  scroll-margin-top: calc(var(--total-header-h) + 22px);
}

.copper-ui main > section:not(.hero):not(.trust):not(.page-head):not(.svc-hero)::before {
  content: attr(data-copper-index);
  position: absolute;
  top: 36px;
  left: max(32px, calc((100% - min(100% - 64px, var(--container))) / 2));
  color: var(--copper-deep);
  font: 600 10px/1 var(--font-mono);
  letter-spacing: .18em;
}

.copper-ui main > section:nth-of-type(even):not(.hero):not(.trust):not(.page-head):not(.svc-hero) {
  background: rgba(255,255,255,.012);
  border-top: 1px solid rgba(255,255,255,.035);
  border-bottom: 1px solid rgba(255,255,255,.035);
}

.copper-ui .section-head {
  max-width: 860px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.copper-ui .section-head .eyebrow,
.copper-ui .eyebrow,
.copper-ui .tag,
.copper-ui .meta {
  color: var(--copper);
}

.copper-ui .section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font: 700 10px/1 var(--font-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.copper-ui .section-head .eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--copper);
}

.copper-ui .section-head h2 {
  color: var(--copper-paper);
  font-size: clamp(2.25rem, 4.8vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.copper-ui .section-head p {
  max-width: 66ch;
  color: var(--copper-muted);
  font-size: 15px;
}

/* Home services become an editorial instrument index rather than a card wall. */
.copper-home #services {
  padding-top: 21px;
  background:
    linear-gradient(90deg, rgba(200,132,92,.035), transparent 36%),
    radial-gradient(ellipse at 18% 18%, rgba(255,255,255,.025), transparent 38%),
    #111210;
}

.copper-home #services > .container {
  width: min(100% - 128px, var(--container));
  display: grid;
  grid-template-columns: minmax(360px,440px) minmax(0,1fr);
  gap: clamp(56px,5.6vw,84px);
  align-items: start;
}

.copper-home #services .section-head {
  grid-column: 1;
  grid-row: 1 / 3;
  position: sticky;
  top: calc(var(--total-header-h) + 40px);
  margin-bottom: 0;
}

.copper-home #services .section-head h2 {
  max-width: 440px;
  font-size: clamp(2.3rem, 2.45vw, 2.45rem);
  line-height: 1.03;
}

.copper-home #services::before {
  display: none;
}

.copper-home #services .section-head .eyebrow {
  gap: 0;
  margin-bottom: 18px;
  font-size: 0;
}

.copper-home #services .section-head .eyebrow::before {
  width: 40px;
  height: 2px;
}

.copper-home #services .section-head p {
  max-width: 360px;
}

.copper-service-rail {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  border-top: 1px solid var(--copper-line-soft);
  margin-top: 40px;
}

.copper-service-rail::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 15%;
  height: 1px;
  background: var(--copper);
}

.copper-service-rail a {
  position: relative;
  min-width: 0;
  padding: 30px 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--copper-muted);
  text-align: center;
  text-decoration: none;
}

.copper-service-rail .copper-rail-dot {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid #111210;
  border-radius: 50%;
  background: var(--copper-dim);
  box-shadow: 0 0 0 1px var(--copper-line-soft);
  transform: translateX(-50%);
}

.copper-service-rail a.is-active .copper-rail-dot,
.copper-service-rail a:hover .copper-rail-dot {
  background: var(--copper);
  box-shadow: 0 0 0 1px var(--copper), 0 0 0 5px rgba(200,132,92,.1);
}

.copper-service-rail svg {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  color: var(--copper-muted);
}

.copper-service-rail a.is-active svg,
.copper-service-rail a:hover svg {
  color: var(--copper);
}

.copper-service-rail strong {
  color: var(--copper-paper);
  font-size: 11px;
}

.copper-service-rail a > span:last-child {
  max-width: 15ch;
  font-size: 8px;
  line-height: 1.35;
}

.copper-home #services .services-grid {
  grid-column: 2;
  grid-row: 2;
  margin-top: 32px;
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.copper-home #services .svc-card.feat {
  grid-column: 1 / -1;
}

.copper-ui .articles-grid,
.copper-ui .svc-features,
.copper-ui .testimonials,
.copper-ui .cards-grid {
  gap: 1px;
  border: 1px solid var(--copper-line-soft);
  background: var(--copper-line-soft);
}

.copper-ui .services-grid {
  gap: 1px;
  border: 1px solid var(--copper-line-soft);
  background: #0b0c0b;
}

.copper-ui .svc-card,
.copper-ui .article-card,
.copper-ui .svc-feat,
.copper-ui .testimonial,
.copper-ui .contact-card,
.copper-ui .panel,
.copper-ui .card,
.copper-ui .cm-panne-card,
.copper-ui .cm-step-card,
.copper-ui .cm-pricing-card,
.copper-ui .cm-trust-item {
  border: 0;
  border-radius: 0;
  background: #10110f;
  box-shadow: none;
  transform: none;
}

.copper-ui .svc-card {
  min-height: 250px;
  padding: 30px;
  isolation: isolate;
}

.copper-ui .svc-card.feat {
  min-height: 285px;
  background: #12120f;
}

.copper-ui .svc-card::before {
  inset: 0;
  background: radial-gradient(520px circle at var(--mx,50%) var(--my,0%), rgba(200,132,92,.12), transparent 42%);
  z-index: -1;
}

.copper-ui .svc-card::after,
.copper-ui .article-card::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--copper);
  transition: right .28s cubic-bezier(.2,.8,.2,1);
}

.copper-ui .svc-card:hover,
.copper-ui .article-card:hover,
.copper-ui .svc-feat:hover {
  border-color: transparent;
  background: #171613;
  box-shadow: none;
  transform: none;
}

.copper-ui .svc-card:hover::after,
.copper-ui .article-card:hover::after {
  right: 0;
}

.copper-ui .svc-card .ico,
.copper-ui .svc-feat .ico,
.copper-ui .article-card .ico {
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border: 1px solid var(--copper-line);
  border-radius: 0;
  background: transparent;
  color: var(--copper);
  filter: none;
}

.copper-ui .svc-card:hover .ico {
  border-color: var(--copper-light);
  background: rgba(200,132,92,.08);
  transform: none;
  filter: none;
}

.copper-ui .svc-card h3 {
  color: var(--copper-paper);
  font-size: clamp(1.3rem,2vw,2rem);
  line-height: 1.05;
}

.copper-ui .svc-card p,
.copper-ui .article-card p,
.copper-ui .svc-feat p {
  color: var(--copper-muted);
}

.copper-ui .svc-card .meta,
.copper-ui .btn-arrow {
  color: var(--copper);
  font-size: 10px;
  letter-spacing: .11em;
}

/* Page heroes receive category-specific workshop photography. */
.copper-ui .page-head {
  min-height: 390px;
  padding: clamp(72px,7vw,112px) 0 56px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--copper-line);
  background: #0b0c0b;
}

.copper-ui .page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg,#0b0c0b 0%,#0b0c0b 43%,rgba(11,12,11,.72) 61%,rgba(11,12,11,.2)),
    var(--copper-page-image, url("/assets/copper/editorial-microsolder-repair.webp"));
  background-position: center;
  background-size: cover;
  filter: sepia(.52) saturate(.58) brightness(.72) contrast(1.08);
}

.copper-ui .page-head::after {
  right: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: none;
  background: linear-gradient(90deg,var(--copper),rgba(200,132,92,.28) 48%,transparent 78%);
}

.copper-ui .page-head .container {
  position: relative;
  z-index: 1;
}

.copper-ui .page-head .container > * {
  max-width: 760px;
}

.copper-ui .page-head.copper-page-head-compact {
  min-height: 0;
  padding: 22px 0 18px;
  overflow: visible;
  background: #0b0c0b;
}

.copper-ui .page-head.copper-page-head-compact::before {
  content: none;
}

.copper-ui .svc-hero {
  position: relative;
  min-height: 570px;
  padding: 72px 0 78px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--copper-line);
  background: #0b0c0b;
}

.copper-ui .svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg,#0b0c0b 0%,#0b0c0b 43%,rgba(11,12,11,.88) 58%,rgba(11,12,11,.42)),
    var(--copper-page-image, url("/assets/copper/editorial-microsolder-repair.webp"));
  background-position: center, right center;
  background-size: cover, 62% auto;
  background-repeat: no-repeat;
  filter: sepia(.42) saturate(.64) brightness(.64) contrast(1.08);
}

.copper-ui .svc-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 56%;
  width: 1px;
  background: linear-gradient(180deg,transparent,var(--copper-line-strong),transparent);
  transform: skewX(-3deg);
}

.copper-ui .svc-hero > .container {
  position: relative;
  z-index: 1;
}

.copper-ui .svc-hero .hero-grid {
  grid-template-columns: minmax(0, .57fr) minmax(350px, .43fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.copper-ui .svc-hero .hero-visual {
  width: 100%;
  height: 520px;
  min-height: 0;
  aspect-ratio: auto;
}

.copper-ui .svc-hero .hero-grid > :first-child {
  max-width: 770px;
}

.copper-ui .page-head h1,
.copper-ui .svc-hero h1 {
  color: var(--copper-paper);
  font-size: clamp(3.1rem,6vw,6.4rem);
  line-height: .9;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.copper-ui .svc-hero h1 {
  font-size: clamp(3.2rem, 5.15vw, 5.45rem);
  line-height: .92;
}

.copper-ui .svc-hero .hero-card,
.copper-ui .svc-hero .service-visual,
.copper-ui .svc-hero .hero-visual {
  border-color: var(--copper-line);
  border-radius: 0;
  background: rgba(10,11,10,.88);
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
}

.copper-ui .svc-hero .hc-dot,
.copper-ui .svc-hero .hc-bar i {
  background: var(--copper) !important;
  box-shadow: none !important;
}

.copper-ui .page-head .lead,
.copper-ui .svc-hero .lead {
  color: #b4aea7;
}

.copper-ui .breadcrumb {
  color: var(--copper-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
}

.copper-ui.copper-service-console { --copper-page-image: url("/assets/copper/editorial-console-repair.webp"); }
.copper-ui.copper-service-computer { --copper-page-image: url("/assets/copper/editorial-computer-repair.webp"); }
.copper-ui.copper-service-phone { --copper-page-image: url("/assets/copper/editorial-phone-repair.webp"); }
.copper-ui.copper-service-thermomix { --copper-page-image: url("/assets/copper/editorial-thermomix-repair.webp"); }
.copper-ui.copper-service-montage,
.copper-ui.copper-page-web { --copper-page-image: url("/assets/copper/editorial-pc-build.webp"); }
.copper-ui.copper-service-micro { --copper-page-image: url("/assets/copper/hero-microscope-copper.webp"); }
.copper-ui.copper-page-expedition { --copper-page-image: url("/assets/copper/expedition-colis.webp"); }
.copper-ui.copper-page-contact,
.copper-ui.copper-page-about { --copper-page-image: url("/assets/copper/atelier-technicien.webp"); }

.copper-ui.copper-page-legal .page-head::before {
  background-image:
    linear-gradient(90deg,#0b0c0b 0%,rgba(11,12,11,.9)),
    url("/assets/copper/hero-microscope-copper.webp");
  opacity: .55;
}

/* Process, reviews, FAQ and editorial content */
.copper-ui .process {
  gap: 0;
  border-top: 1px solid var(--copper-line);
  border-bottom: 1px solid var(--copper-line-soft);
}

.copper-ui .process::before {
  top: 56px;
  background: linear-gradient(90deg,var(--copper),rgba(200,132,92,.18));
}

.copper-ui .process-step {
  min-height: 230px;
  padding: 34px 28px;
  border: 0;
  border-right: 1px solid var(--copper-line-soft);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.copper-ui .process-step:last-child {
  border-right: 0;
}

.copper-ui .process-step::before {
  top: 19px;
  right: 22px;
  color: rgba(200,132,92,.24);
  font-size: 3rem;
}

.copper-ui .process-step:hover {
  border-color: var(--copper-line-soft);
  background: rgba(200,132,92,.04);
  box-shadow: none;
  transform: none;
}

.copper-ui .process-step:hover::before {
  color: var(--copper);
  text-shadow: none;
}

.copper-ui .testimonials {
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.copper-ui .testimonial {
  padding: 30px;
}

.copper-ui .stars,
.copper-ui .star-inline {
  color: var(--copper);
}

.copper-ui .avatar {
  border: 1px solid var(--copper-line);
  border-radius: 0;
  background: transparent;
  color: var(--copper-light);
}

.copper-ui .faq {
  gap: 0;
  border-top: 1px solid var(--copper-line);
}

.copper-ui .faq-item {
  border: 0;
  border-bottom: 1px solid var(--copper-line-soft);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.copper-ui .faq-item[open] {
  border-color: var(--copper-line);
  background: rgba(200,132,92,.035);
  box-shadow: none;
}

.copper-ui .faq-q {
  padding: 22px 4px;
}

.copper-ui .faq-q .plus {
  border: 1px solid var(--copper-line);
  border-radius: 50%;
  background: transparent;
  color: var(--copper);
}

.copper-ui .faq-item[open] .faq-q .plus {
  background: var(--copper-light);
  color: #17110e;
  box-shadow: none;
}

.copper-ui .faq-a {
  max-width: 78ch;
  padding: 0 4px 28px;
}

.copper-ui .prose {
  max-width: 76ch;
  color: #b9b3ad;
  line-height: 1.82;
}

.copper-ui .prose h2,
.copper-ui .prose h3 {
  color: var(--copper-paper);
  letter-spacing: -.035em;
}

.copper-ui .prose h2 {
  padding-top: 22px;
  border-top: 1px solid var(--copper-line-soft);
  font-size: clamp(1.8rem,3vw,3rem);
}

.copper-ui .prose a,
.copper-ui .inline-link {
  color: var(--copper-light);
}

.copper-ui .prose ul li::marker,
.copper-ui .prose ol li::marker {
  color: var(--copper);
}

/* Conversion banners */
.copper-ui .cta-banner {
  padding: clamp(34px,5vw,68px);
  gap: clamp(34px,6vw,90px);
  border: 1px solid var(--copper-line);
  border-radius: 0;
  background:
    linear-gradient(90deg,rgba(10,11,10,.98),rgba(10,11,10,.82)),
    url("/assets/copper/atelier-technicien.webp") center / cover no-repeat;
  box-shadow: none;
}

.copper-ui .cta-banner::before {
  height: 1px;
  background: linear-gradient(90deg,var(--copper),transparent 76%);
  box-shadow: none;
}

.copper-ui .cta-banner h2 {
  font-size: clamp(2rem,4vw,4rem);
  line-height: .98;
}

.copper-ui .cta-banner-side .info {
  border: 0;
  border-bottom: 1px solid var(--copper-line-soft);
  border-radius: 0;
  background: rgba(8,9,8,.62);
}

.copper-ui .cta-banner-side .info .ico {
  border: 1px solid var(--copper-line);
  border-radius: 0;
  background: transparent;
  color: var(--copper);
}

/* Forms and guided choice flows */
.copper-ui .form,
.copper-ui .ate-form {
  position: relative;
}

.copper-ui .field label,
.copper-ui .form-label,
.copper-ui .ate-summary-list dt {
  color: var(--copper);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
}

.copper-ui .field input,
.copper-ui .field textarea,
.copper-ui .field select,
.copper-ui input,
.copper-ui textarea,
.copper-ui select {
  border: 0;
  border-bottom: 1px solid rgba(240,236,230,.24);
  border-radius: 0;
  background: rgba(255,255,255,.018);
  color: var(--copper-paper);
  box-shadow: none;
}

.copper-ui .field input:focus,
.copper-ui .field textarea:focus,
.copper-ui .field select:focus,
.copper-ui input:focus,
.copper-ui textarea:focus,
.copper-ui select:focus {
  border-bottom-color: var(--copper-light);
  outline: 0;
  box-shadow: 0 1px 0 var(--copper-light);
}

.copper-ui .ate-progress-track {
  height: 2px;
  border-radius: 0;
  background: rgba(255,255,255,.09);
}

.copper-ui .ate-progress-fill {
  border-radius: 0;
  background: var(--copper-light);
  box-shadow: none;
}

.copper-ui .ate-progress-steps .is-active,
.copper-ui .ate-progress-steps .is-done {
  color: var(--copper-light);
}

.copper-ui .ate-step legend {
  color: var(--copper-paper);
  font-size: clamp(1.8rem,3vw,3rem);
  letter-spacing: -.04em;
}

.copper-ui .ate-options {
  gap: 1px;
  border: 1px solid var(--copper-line-soft);
  background: var(--copper-line-soft);
}

.copper-ui .ate-option-card {
  min-height: 150px;
  padding: 22px;
  border: 0;
  border-radius: 0;
  background: #10110f;
  transform: none;
}

.copper-ui .ate-option-card:hover {
  border-color: transparent;
  background: #171613;
  transform: none;
}

.copper-ui .ate-option-ico {
  border: 1px solid var(--copper-line);
  border-radius: 0;
  background: transparent;
  color: var(--copper);
}

.copper-ui .ate-option-check {
  border-radius: 50%;
  background: var(--copper-light);
  color: #17110e;
  box-shadow: none;
}

.copper-ui .ate-option input:checked + .ate-option-card {
  border-color: transparent;
  background: linear-gradient(135deg,rgba(200,132,92,.13),#12120f);
  box-shadow: inset 0 0 0 1px var(--copper-light);
}

.copper-ui .ate-option input:checked + .ate-option-card .ate-option-ico {
  background: var(--copper-light);
  color: #17110e;
  transform: none;
}

.copper-ui .ate-chips {
  gap: 1px;
}

.copper-ui .ate-chip > span {
  padding: 11px 15px;
  border: 1px solid var(--copper-line-soft);
  border-radius: 0;
  background: #10110f;
}

.copper-ui .ate-chip input:checked + span {
  border-color: var(--copper-light);
  background: rgba(200,132,92,.1);
  color: var(--copper-light);
  box-shadow: none;
}

.copper-ui .ate-consent,
.copper-ui .ate-summary,
.copper-ui .ate-error {
  border-radius: 0;
  background: #10110f;
  box-shadow: none;
}

.copper-ui .ate-summary {
  border-color: var(--copper-line-strong);
}

.copper-ui .ate-error {
  border-color: #b66d4b;
}

.copper-ui .ate-check-anim {
  border-radius: 50%;
  background: var(--copper-light);
  color: #17110e;
  box-shadow: none;
}

.copper-page-form main > .container,
.copper-page-form main > section > .container {
  max-width: 1180px;
}

.copper-page-form .contact-grid,
.copper-page-form .form-grid {
  gap: clamp(32px,6vw,80px);
}

/* Guide, zone and legal page personalities within the same DA. */
.copper-page-guide .article-card {
  min-height: 250px;
  padding: 30px;
  position: relative;
}

.copper-page-guide .article-card .meta {
  color: var(--copper);
}

.copper-page-guide .article-card h3 {
  font-size: clamp(1.35rem,2vw,2rem);
}

.copper-page-zone .page-head::after {
  background: linear-gradient(90deg,var(--copper),transparent 56%);
}

.copper-page-zone .tag {
  border-color: var(--copper-line);
  background: transparent;
}

.copper-page-legal main > .container,
.copper-page-legal .prose {
  max-width: 900px;
}

.copper-page-legal .prose {
  padding: 42px;
  border-left: 1px solid var(--copper-line);
  background: rgba(255,255,255,.012);
}

/* Tables */
.copper-ui table {
  border: 1px solid var(--copper-line-soft);
  border-collapse: collapse;
  background: #0f100f;
}

.copper-ui th,
.copper-ui td {
  border-color: var(--copper-line-soft);
}

.copper-ui th {
  color: var(--copper-light);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Footer */
.copper-ui .site-footer {
  padding: 76px 0 26px;
  border-top: 1px solid var(--copper-line);
  background:
    linear-gradient(90deg,rgba(200,132,92,.035),transparent 34%),
    #090a09;
}

.copper-ui .site-footer::before {
  left: 0;
  width: 52%;
  transform: none;
  background: linear-gradient(90deg,var(--copper),transparent);
  box-shadow: none;
}

.copper-ui .footer-grid {
  gap: clamp(34px,5vw,72px);
}

.copper-ui .footer-brand .brand-text {
  font-size: 28px;
}

.copper-ui .footer-col h3 {
  color: var(--copper);
  font: 700 10px/1 var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.copper-ui .footer-col a,
.copper-ui .footer-col li,
.copper-ui .footer-bottom {
  color: var(--copper-muted);
}

.copper-ui .footer-col a:hover,
.copper-ui .footer-bottom a:hover {
  color: var(--copper-light);
}

.copper-ui .contact-line svg {
  color: var(--copper);
  filter: none;
}

.copper-ui .footer-bottom {
  border-top-color: var(--copper-line-soft);
}

/* Utility surfaces */
.copper-ui #cookie-banner,
.copper-ui .cookie-banner,
.copper-ui .cookie-consent {
  border: 1px solid var(--copper-line);
  border-radius: 0;
  background: rgba(9,10,9,.97);
  box-shadow: 0 26px 80px rgba(0,0,0,.48);
}

.copper-ui .wa-float {
  border: 1px solid rgba(255,255,255,.18);
  background: #25d366 !important;
  color: #fff !important;
  box-shadow: 0 12px 34px rgba(37,211,102,.34), 0 0 0 1px rgba(0,0,0,.05) !important;
}

.copper-ui .wa-float:hover,
.copper-ui .wa-float:focus-visible {
  border-color: rgba(255,255,255,.34) !important;
  background: #20bd5a !important;
  color: #fff !important;
  box-shadow: 0 16px 42px rgba(37,211,102,.48), 0 0 0 1px rgba(0,0,0,.04) !important;
}

.copper-ui .wa-float::before,
.copper-ui .wa-float::after {
  display: none !important;
}

.copper-ui .mobile-cta {
  border-top: 1px solid var(--copper-line);
  background: rgba(9,10,9,.97);
}

.copper-ui .reveal {
  --reveal-offset: 18px;
}

@media (min-width: 1281px) {
  .copper-ui .nav-links > li.copper-nav-secondary {
    display: none;
  }
}

@media (max-width: 1280px) {
  .copper-ui .nav {
    width: min(100% - 36px, 1220px);
  }

  .copper-ui .nav-links > li.copper-nav-secondary,
  .copper-ui .nav-links > li.copper-nav-guides {
    display: none;
  }

  .copper-ui .nav-links > li > a,
  .copper-ui .nav-links > li > .mega-trigger,
  .copper-ui .nav-montage-menu .montage-trigger {
    padding-inline: 8px;
    font-size: 11px;
  }

  .copper-ui .copper-nav-hours,
  .copper-ui .nav-phone .hide-sm {
    display: none;
  }

  .copper-ui .nav-phone {
    display: flex;
    padding-right: 0;
  }

  .copper-home .hero-grid {
    grid-template-columns: minmax(470px,.92fr) minmax(380px,1.08fr);
  }

  .copper-home .hero-text {
    padding-right: 34px;
  }

  .copper-trust-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }

  .copper-trust-item:nth-child(4) {
    border-right: 0;
  }

  .copper-trust-item:nth-child(n+5) {
    border-top: 1px solid var(--copper-line-soft);
  }
}

@media (max-width: 960px) {
  :root {
    --announce-h: 0px;
    --header-h: 68px;
    --total-header-h: 68px;
  }

  body.copper-ui .container,
  body.copper-ui .container-narrow {
    width: min(100% - 40px, 820px);
  }

  .copper-ui .announce-bar-link {
    width: calc(100% - 32px);
  }

  .copper-ui .announce-bar-text span {
    display: none;
  }

  .copper-ui .site-header {
    height: var(--header-h);
  }

  .copper-ui .nav {
    width: calc(100% - 32px);
  }

  .copper-ui .nav-links,
  .copper-ui .copper-nav-ship,
  .copper-ui .nav-phone {
    display: none;
  }

  .copper-ui .nav-toggle {
    display: grid;
  }

  .copper-home .hero {
    min-height: auto;
    padding-top: 0;
  }

  .copper-home .hero::before {
    background:
      linear-gradient(180deg,rgba(8,9,8,.15) 0%,rgba(8,9,8,.4) 42%,#0b0d0d 68%),
      url("/assets/copper/hero-microscope-copper.webp") 68% top / auto 54% no-repeat,
      #0b0d0d;
  }

  .copper-home .hero::after {
    display: none;
  }

  .copper-home .hero .container {
    width: calc(100% - 40px);
  }

  .copper-home .hero-grid {
    min-height: auto;
    display: block;
  }

  .copper-home .hero-text {
    max-width: 680px;
    padding: min(47vw,390px) 0 54px;
  }

  .copper-home .hero-headline {
    font-size: clamp(3rem,9vw,5.5rem);
  }

  .copper-home #services > .container {
    display: block;
  }

  .copper-home #services .section-head {
    position: static;
    margin-bottom: 48px;
  }

  .copper-service-rail {
    margin-bottom: 42px;
  }

  .copper-ui .testimonials {
    grid-template-columns: 1fr;
  }

  .copper-ui .process {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .copper-ui .process-step:nth-child(2) {
    border-right: 0;
  }

  .copper-ui .process-step:nth-child(n+3) {
    border-top: 1px solid var(--copper-line-soft);
  }

  .copper-ui .page-head {
    min-height: 340px;
  }

  .copper-ui .svc-hero {
    min-height: 0;
    padding: 58px 0 64px;
  }

  .copper-ui .svc-hero::after {
    display: none;
  }

  .copper-ui .svc-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .copper-ui .svc-hero .hero-visual {
    width: 100%;
    max-width: none;
    height: 420px;
    margin: 0;
  }

  .copper-ui .page-head::before {
    background-image:
      linear-gradient(90deg,#0b0c0b 0%,rgba(11,12,11,.9) 58%,rgba(11,12,11,.45)),
      var(--copper-page-image, url("/assets/copper/editorial-microsolder-repair.webp"));
  }

  .copper-ui .footer-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --announce-h: 0px;
    --header-h: 64px;
    --total-header-h: 64px;
  }

  body.copper-ui {
    font-size: 15px;
    background-size: 64px 64px;
  }

  body.copper-ui .container,
  body.copper-ui .container-narrow {
    width: calc(100% - 32px);
  }

  .copper-ui .announce-bar {
    font-size: 8px;
    letter-spacing: .05em;
  }

  .copper-ui .announce-bar-cta {
    padding-left: 10px;
  }

  .copper-ui .brand-text {
    font-size: 17px;
  }

  .copper-ui .brand-text small {
    display: block;
  }

  .copper-ui .nav-devis {
    min-height: 40px;
    padding-inline: 13px;
  }

  .copper-home .hero .container {
    width: calc(100% - 32px);
  }

  .copper-home .hero-text {
    padding-top: min(68vw,390px);
  }

  .copper-home .hero-text::before {
    margin-top: 0;
  }

  .copper-home .hero-headline {
    font-size: clamp(2.65rem,13vw,4.7rem);
    line-height: .94;
  }

  .copper-home .hero-primary-line,
  .copper-home .hero-headline .stroke {
    width: auto;
    transform: none;
  }

  .copper-home .hero-headline .stroke {
    font-size: .72em;
    line-height: 1.04;
    white-space: normal;
  }

  .copper-home .hero .lead {
    font-size: 14px;
  }

  .copper-home .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .copper-home .hero-cta .btn {
    min-width: 0;
    width: 100%;
  }

  .copper-entry {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .copper-entry-divider {
    min-height: 32px;
  }

  .copper-entry-divider::before,
  .copper-entry-divider::after {
    top: 50%;
    width: calc(50% - 22px);
    height: 1px;
  }

  .copper-entry-divider::before { left: 0; }
  .copper-entry-divider::after { right: 0; left: auto; bottom: auto; }

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

  .copper-trust-item,
  .copper-trust-item:nth-child(4) {
    border-right: 1px solid var(--copper-line-soft);
    border-top: 1px solid var(--copper-line-soft);
  }

  .copper-trust-item:nth-child(odd) {
    border-left: 0;
  }

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

  .copper-trust-item:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .copper-ui main > section:not(.hero):not(.trust):not(.page-head):not(.svc-hero) {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .copper-ui main > section:not(.hero):not(.trust):not(.page-head):not(.svc-hero)::before {
    top: 24px;
    left: 16px;
  }

  .copper-ui .section-head h2 {
    font-size: clamp(2rem,10.5vw,3.5rem);
  }

  .copper-home #services .services-grid,
  .copper-ui .services-grid,
  .copper-ui .svc-features,
  .copper-ui .articles-grid,
  .copper-ui .cards-grid {
    grid-template-columns: 1fr;
  }

  .copper-service-rail {
    min-height: 0;
    grid-template-columns: 1fr;
    border: 1px solid var(--copper-line-soft);
  }

  .copper-service-rail::before {
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .copper-service-rail a {
    min-height: 72px;
    padding: 14px 18px 14px 58px;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    border-bottom: 1px solid var(--copper-line-soft);
  }

  .copper-service-rail a:last-child {
    border-bottom: 0;
  }

  .copper-service-rail .copper-rail-dot {
    top: 50%;
    left: -7px;
  }

  .copper-service-rail svg {
    position: absolute;
    top: 22px;
    left: 18px;
  }

  .copper-ui .svc-card,
  .copper-ui .svc-card.feat {
    grid-column: auto;
    min-height: 215px;
    padding: 25px;
  }

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

  .copper-ui .process-step,
  .copper-ui .process-step:nth-child(2) {
    min-height: 180px;
    border-right: 0;
    border-top: 1px solid var(--copper-line-soft);
  }

  .copper-ui .page-head {
    min-height: 300px;
    padding: 62px 0 42px;
  }

  .copper-ui .page-head h1,
  .copper-ui .svc-hero h1 {
    font-size: clamp(2.7rem,13vw,4.5rem);
  }

  .copper-ui .svc-hero {
    padding: 44px 0 52px;
  }

  .copper-ui .svc-hero .hero-visual {
    height: 360px;
  }

  .copper-ui .page-head::before {
    background-position: 64% center;
  }

  .copper-ui .cta-banner {
    padding: 28px 22px;
  }

  .copper-ui .field-row {
    grid-template-columns: 1fr;
  }

  .copper-ui .ate-options {
    grid-template-columns: 1fr;
  }

  .copper-ui .ate-option-card {
    min-height: 120px;
  }

  .copper-page-legal .prose {
    padding: 26px 20px;
  }

  .copper-ui .footer-grid {
    grid-template-columns: 1fr;
  }

  .copper-ui .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

/*
 * Compact editorial templates used by the PC configuration library.
 * These pages have an in-flow header instead of the fixed site header, so they
 * need their own spacing and navigation rules while sharing the copper system.
 */
body.copper-ui:is(
  .page-atelier,
  .page-basket,
  .page-blueprint,
  .page-carbon,
  .page-desk,
  .page-focus,
  .page-install,
  .page-matrix,
  .page-neon,
  .page-platform,
  .page-route,
  .page-signal,
  .page-thermal,
  .page-transfer
) {
  --accent: var(--copper);
  --cyan: var(--copper);
  --violet: var(--copper-light);
  --panel: #10110f;
  --panel2: #151411;
  --line: rgba(240, 236, 230, .12);
  --muted: #aaa39c;
  --radius: 2px;
  --max: 1440px;
  padding-top: 0 !important;
  background:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    var(--copper-black);
  background-size: 92px 92px;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > .announce {
  display: none;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(200,132,92,.2);
  background: rgba(8,9,8,.965);
  backdrop-filter: blur(18px) saturate(110%);
  box-shadow: none;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav .nav-in {
  width: min(100% - 56px, 1500px);
  min-height: 88px;
  height: auto;
  margin-inline: auto;
  padding: 12px 0;
  gap: 28px;
  flex-flow: row nowrap;
  align-items: center;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav .brand {
  min-width: max-content;
  gap: 0;
  color: var(--copper-paper);
  font: 700 20px/1 var(--copper-body);
  letter-spacing: -.035em;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav .brand > span:last-child {
  display: grid;
  gap: 5px;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav .brand small {
  margin: 0;
  color: var(--copper);
  font: 700 8px/1 var(--copper-body);
  letter-spacing: .22em;
  opacity: 1;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav .nav-links {
  width: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex-wrap: nowrap;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav .mobile-menu {
  display: none !important;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav .nav-links > a {
  position: relative;
  min-height: 44px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ded9d3;
  font: 600 12px/1 var(--copper-body);
  letter-spacing: -.015em;
  white-space: nowrap;
  box-shadow: none;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav .nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: calc(100% - 13px);
  bottom: 5px;
  left: 13px;
  height: 1px;
  background: var(--copper);
  transition: right .22s ease;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav .nav-links > a:not(.nav-cta):hover::after {
  right: 13px;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav .nav-links > .nav-cta {
  min-height: 44px;
  margin-left: 12px;
  padding: 0 20px;
  border: 1px solid var(--copper-light) !important;
  background: var(--copper-light) !important;
  color: #17110e !important;
  box-shadow: none;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) > header.nav .nav-links > .nav-cta:hover {
  border-color: #efb995 !important;
  background: #efb995 !important;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .hero {
  position: relative;
  min-height: auto;
  padding: clamp(58px,6vw,96px) 0 clamp(54px,6vw,88px);
  overflow: hidden;
  border-bottom: 1px solid var(--copper-line-soft);
  background:
    linear-gradient(90deg,rgba(8,9,8,.99) 0%,rgba(8,9,8,.97) 46%,rgba(8,9,8,.78) 72%,rgba(8,9,8,.96) 100%),
    var(--copper-page-image, url("/assets/copper/editorial-pc-build.webp")) 92% center / min(54vw,880px) auto no-repeat;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .hero .wrap {
  position: relative;
  z-index: 1;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .crumb {
  margin-bottom: 34px;
  color: var(--copper-muted);
  font: 500 11px/1.5 var(--copper-body);
  letter-spacing: .02em;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .hero-grid {
  grid-template-columns: minmax(0,1.12fr) minmax(340px,.68fr);
  gap: clamp(40px,6vw,96px);
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) h1 {
  max-width: 13ch;
  margin: 20px 0 28px;
  color: var(--copper-paper);
  font-size: clamp(44px,5.35vw,78px);
  line-height: .98;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .eyebrow {
  color: var(--copper-light);
  font: 700 11px/1.4 var(--copper-body);
  letter-spacing: .16em;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .lead {
  max-width: 72ch;
  color: #bbb5ae;
  font-size: clamp(18px,1.45vw,22px);
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .btn,
body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .pill {
  border-radius: 2px;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .btn-primary {
  border: 1px solid var(--copper-light);
  background: var(--copper-light);
  color: #17110e;
  box-shadow: none;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .btn-ghost,
body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .pill {
  border-color: var(--copper-line);
  background: rgba(8,9,8,.56);
  color: #d2ccc5;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .visual {
  min-height: 410px;
  padding: 34px;
  border: 1px solid var(--copper-line);
  border-radius: 2px;
  background:
    linear-gradient(145deg,rgba(18,18,15,.96),rgba(8,9,8,.92)),
    var(--copper-page-image, url("/assets/copper/editorial-pc-build.webp")) center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .visual::before {
  inset: 0;
  border-top: 1px solid var(--copper-light);
  background: linear-gradient(135deg,rgba(200,132,92,.08),transparent 48%);
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .spec-row {
  border-bottom-color: var(--copper-line-soft);
  color: #b9b3ad;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .spec-row strong {
  color: var(--copper-light);
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .bar {
  height: 3px;
  border-radius: 0;
  background: rgba(255,255,255,.09);
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .bar i {
  border-radius: 0;
  background: linear-gradient(90deg,var(--copper-deep),var(--copper-light));
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .section {
  padding: clamp(48px,6vw,88px) 0;
  border-bottom: 1px solid var(--copper-line-soft);
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .card,
body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .faq details,
body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .link-grid a {
  border-color: var(--copper-line-soft);
  border-radius: 2px;
  background: rgba(15,16,14,.86);
  box-shadow: none;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .card:hover,
body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .link-grid a:hover {
  border-color: var(--copper-line);
  background: #151411;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .step::before {
  border: 1px solid var(--copper-line);
  border-radius: 2px;
  background: transparent;
  color: var(--copper-light);
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .quote {
  border-left-color: var(--copper);
  color: #e0dbd5;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .faq {
  gap: 0;
  border-top: 1px solid var(--copper-line);
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .faq details {
  border-width: 0 0 1px;
  background: transparent;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .link-grid a {
  min-height: 74px;
  display: flex;
  align-items: center;
  color: #e1dcd6;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .cta {
  margin-block: clamp(56px,7vw,96px);
  padding: clamp(30px,4vw,58px);
  border: 1px solid var(--copper-line);
  border-radius: 2px;
  background:
    linear-gradient(90deg,rgba(10,11,10,.98),rgba(10,11,10,.84)),
    url("/assets/copper/atelier-technicien.webp") center / cover no-repeat;
}

body.copper-ui:is(
  .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
  .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
  .page-thermal,.page-transfer
) .footer {
  border-top: 1px solid var(--copper-line-soft);
  background: #090a09;
  color: var(--copper-muted);
}

@media (max-width: 980px) {
  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) > header.nav .nav-in {
    width: min(100% - 32px,1500px);
    min-height: 0;
    padding: 14px 0 10px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) > header.nav .nav-links {
    width: 100%;
    margin: 0;
    padding-bottom: 4px;
    display: flex;
    justify-content: flex-start;
    gap: 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) > header.nav .nav-links::-webkit-scrollbar {
    display: none;
  }

  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) > header.nav .nav-links > a {
    flex: 0 0 auto;
    min-height: 38px;
    padding-inline: 11px;
  }

  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) > header.nav .nav-links > .nav-cta {
    margin-left: 6px;
  }

  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) .wrap {
    width: min(100% - 28px,var(--max));
  }

  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) .hero {
    padding: 38px 0 46px;
    background:
      linear-gradient(rgba(8,9,8,.9),rgba(8,9,8,.985)),
      var(--copper-page-image, url("/assets/copper/editorial-pc-build.webp")) 72% top / auto 360px no-repeat;
  }

  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) h1 {
    max-width: 100%;
    font-size: clamp(38px,12vw,54px);
  }

  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) .visual,
  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) .card,
  body.copper-ui:is(
    .page-atelier,.page-basket,.page-blueprint,.page-carbon,.page-desk,.page-focus,
    .page-install,.page-matrix,.page-neon,.page-platform,.page-route,.page-signal,
    .page-thermal,.page-transfer
  ) .cta {
    border-radius: 2px;
  }
}

/* Shared navigation for the compact PC pages and the PC guide library. */
body.copper-has-standalone-header {
  padding-top: 0 !important;
}

.copper-standalone-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  min-height: 96px;
  border-bottom: 1px solid rgba(200,132,92,.2);
  background: rgba(8,9,8,.97);
  backdrop-filter: blur(18px) saturate(110%);
}

.copper-standalone-nav {
  width: min(100% - 56px,1500px);
  min-height: 96px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.copper-standalone-header .brand {
  flex: 0 0 auto;
}

.copper-standalone-header .brand-text {
  display: grid;
  gap: 3px;
  color: var(--copper-paper);
  font: 700 20px/1 var(--copper-body);
  letter-spacing: -.035em;
}

.copper-standalone-header .brand-text small {
  color: var(--copper);
  font: 700 8px/1 var(--copper-body);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.copper-standalone-links {
  min-width: 0;
  margin: 0 0 0 125px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
}

.copper-standalone-links > li {
  margin: 0;
  padding: 0;
}

.copper-standalone-links > li > a {
  position: relative;
  min-height: 44px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  color: #ded9d3;
  font: 600 12px/1 var(--copper-body);
  letter-spacing: -.015em;
  text-decoration: none;
  white-space: nowrap;
}

.copper-standalone-links > li > a::after {
  content: "";
  position: absolute;
  right: calc(100% - 11px);
  bottom: 5px;
  left: 11px;
  height: 1px;
  background: var(--copper);
  transition: right .22s ease;
}

.copper-standalone-links > li > a:hover,
.copper-standalone-links > li > a[aria-current="page"] {
  color: var(--copper-paper);
}

.copper-standalone-links > li > a:hover::after,
.copper-standalone-links > li > a[aria-current="page"]::after {
  right: 11px;
}

.copper-standalone-actions {
  margin-left: auto;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}

.copper-standalone-actions .nav-phone {
  min-width: 128px;
}

.copper-standalone-actions .nav-devis,
.copper-standalone-actions .copper-nav-ship {
  min-height: 44px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.copper-standalone-actions .nav-devis {
  min-width: 148px;
}

.copper-standalone-actions .copper-nav-ship {
  min-width: 193px;
}

.copper-standalone-toggle,
.copper-mobile-only {
  display: none !important;
}

@media (max-width: 1280px) {
  .copper-standalone-nav {
    width: min(100% - 36px,1220px);
  }

  .copper-standalone-links .copper-nav-guides {
    display: none;
  }

  .copper-standalone-links {
    margin-left: 37px;
  }

  .copper-standalone-actions .nav-phone {
    min-width: 44px;
    width: 44px;
    padding: 0;
    display: grid;
    place-items: center;
  }

  .copper-standalone-actions .nav-phone .copper-phone-number,
  .copper-standalone-actions .nav-phone .copper-nav-hours {
    display: none;
  }
}

@media (max-width: 1080px) {
  .copper-standalone-nav {
    gap: 16px;
  }

  .copper-standalone-links > li > a {
    padding-inline: 8px;
    font-size: 11px;
  }

  .copper-standalone-actions .copper-nav-ship {
    min-width: 44px;
    width: 44px;
    padding: 0;
  }

  .copper-standalone-actions .copper-nav-ship span {
    display: none;
  }

  .copper-standalone-actions .nav-devis {
    min-width: 128px;
    padding-inline: 16px;
  }
}

@media (max-width: 1024px) {
  .copper-standalone-header {
    min-height: 76px;
  }

  .copper-standalone-nav {
    min-height: 76px;
  }

  .copper-standalone-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    z-index: 2;
    max-height: calc(100vh - 76px);
    margin: 0;
    padding: 18px max(20px,calc((100vw - 760px) / 2)) 24px;
    display: none;
    overflow-y: auto;
    border-bottom: 1px solid var(--copper-line);
    background: rgba(8,9,8,.99);
    box-shadow: 0 28px 70px rgba(0,0,0,.46);
  }

  .copper-standalone-header.is-open .copper-standalone-links {
    display: grid;
  }

  .copper-standalone-links > li,
  .copper-standalone-links .copper-nav-guides,
  .copper-standalone-links .copper-mobile-only {
    display: block !important;
  }

  .copper-standalone-links > li > a {
    width: 100%;
    min-height: 48px;
    padding: 0;
    border-bottom: 1px solid var(--copper-line-soft);
    font-size: 15px;
  }

  .copper-standalone-links > li > a::after {
    right: 100%;
    bottom: -1px;
    left: 0;
  }

  .copper-standalone-links > li > a:hover::after,
  .copper-standalone-links > li > a[aria-current="page"]::after {
    right: 0;
  }

  .copper-ui .copper-standalone-links > li.copper-mobile-quote > a {
    margin-top: 12px;
    padding-inline: 18px;
    justify-content: center;
    border: 1px solid var(--copper-light) !important;
    background: var(--copper-light) !important;
    color: #17110e !important;
  }

  .copper-ui .copper-standalone-links > li.copper-mobile-quote > a::after {
    display: none;
  }

  .copper-standalone-actions .copper-nav-ship,
  .copper-standalone-actions .nav-devis {
    display: none;
  }

  .copper-standalone-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .copper-standalone-toggle > span,
  .copper-standalone-toggle > span::before,
  .copper-standalone-toggle > span::after {
    width: 18px;
    height: 1px;
    display: block;
    background: var(--copper-paper);
  }

  .copper-standalone-toggle > span {
    position: relative;
  }

  .copper-standalone-toggle > span::before,
  .copper-standalone-toggle > span::after {
    content: "";
    position: absolute;
    left: 0;
    transition: transform .2s ease,top .2s ease;
  }

  .copper-standalone-toggle > span::before {
    top: -6px;
  }

  .copper-standalone-toggle > span::after {
    top: 6px;
  }

  .copper-standalone-toggle[aria-expanded="true"] > span {
    background: transparent;
  }

  .copper-standalone-toggle[aria-expanded="true"] > span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .copper-standalone-toggle[aria-expanded="true"] > span::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

@media (max-width: 520px) {
  .copper-standalone-nav {
    width: calc(100% - 28px);
  }

  .copper-standalone-header .brand-text {
    font-size: 18px;
  }

  .copper-standalone-actions .nav-phone {
    display: none;
  }
}

/* Home editorial pass — keep the complete SEO corpus without presenting a card wall. */
.copper-home .home-service-stories {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 28px;
  margin-top: 26px;
}

.copper-home .home-story {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--copper-paper);
  text-decoration: none;
  background: #0d0e0d;
  border-top: 1px solid var(--copper-line);
  border-bottom: 1px solid var(--copper-line-soft);
}

.copper-home .home-story--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr);
  grid-template-rows: 1fr;
  min-height: 410px;
}

.copper-home .home-story-media {
  min-height: 245px;
  margin: 0;
  overflow: hidden;
  background: #090a09;
}

.copper-home .home-story--wide .home-story-media {
  min-height: 410px;
}

.copper-home .home-story-media img,
.copper-home .home-specialty-media img,
.copper-home .home-process-visual img,
.copper-home .home-zone-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: sepia(.18) saturate(.76) brightness(.8) contrast(1.08);
  transition: transform .8s cubic-bezier(.2,.75,.2,1), filter .5s ease;
}

.copper-home .home-story:hover img,
.copper-home .home-specialty-stage:hover img,
.copper-home .home-process-visual:hover img,
.copper-home .home-zone-stage:hover img {
  transform: scale(1.035);
  filter: sepia(.08) saturate(.9) brightness(.88) contrast(1.06);
}

.copper-home .home-story-copy {
  min-width: 0;
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.copper-home .home-story--wide .home-story-copy {
  justify-content: center;
  padding: clamp(36px,4.5vw,64px);
}

.copper-home .home-story-index,
.copper-home .home-zone-kicker {
  margin-bottom: 18px;
  color: var(--copper);
  font: 700 10px/1 var(--font-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.copper-home .home-story h3,
.copper-home .home-specialty-copy h3 {
  margin: 0 0 14px;
  color: var(--copper-paper);
  font-size: clamp(1.55rem,2.15vw,2.6rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.copper-home .home-story p,
.copper-home .home-specialty-copy p {
  margin: 0;
  color: var(--copper-muted);
  line-height: 1.65;
}

.copper-home .home-story-link {
  margin-top: auto;
  padding-top: 26px;
  color: var(--copper-light);
  font: 700 10px/1 var(--font-mono);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.copper-home .home-directory {
  grid-column: 2;
  grid-row: 3;
  margin-top: 32px;
  border-top: 1px solid var(--copper-line);
  border-bottom: 1px solid var(--copper-line-soft);
}

.copper-home .home-directory > summary {
  min-height: 92px;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

.copper-home .home-directory > summary::-webkit-details-marker { display: none; }
.copper-home .home-directory > summary > span:first-child { display: grid; gap: 5px; }
.copper-home .home-directory > summary strong { color: var(--copper-paper); font-size: 18px; }
.copper-home .home-directory > summary small { color: var(--copper-muted); font-size: 12px; }

.copper-home .home-directory-action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--copper-light);
  font: 700 10px/1 var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.copper-home .home-directory-action b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper-line);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.copper-home .home-directory[open] .home-directory-action b {
  transform: rotate(45deg);
  background: var(--copper-light);
  color: #17110e;
}

.copper-home .home-directory > .services-grid {
  margin: 0 0 28px;
}

.copper-home #specialites .home-specialty-stage {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr);
  overflow: hidden;
  border-top: 1px solid var(--copper-line);
  border-bottom: 1px solid var(--copper-line-soft);
  background: #0d0e0d;
}

.copper-home .home-specialty-media,
.copper-home .home-zone-media {
  min-height: 480px;
  margin: 0;
  overflow: hidden;
}

.copper-home .home-specialty-copy {
  padding: clamp(36px,4.5vw,68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.copper-home .home-specialty-links {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  border-top: 1px solid var(--copper-line-soft);
}

.copper-home .home-specialty-links a {
  padding: 16px 10px 16px 0;
  border-bottom: 1px solid var(--copper-line-soft);
  color: var(--copper-paper);
  font-size: 13px;
  text-decoration: none;
}

.copper-home .home-specialty-links a:nth-child(odd) { border-right: 1px solid var(--copper-line-soft); }
.copper-home .home-specialty-links a:nth-child(even) { padding-left: 18px; }
.copper-home .home-specialty-links a:hover { color: var(--copper-light); }
.copper-home .home-specialty-directory,
.copper-home .home-zone-directory { grid-column: auto; grid-row: auto; }

.copper-home .home-process-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(380px,.82fr);
  gap: clamp(34px,5vw,74px);
  align-items: stretch;
}

.copper-home .home-process-visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--copper-line);
  border-bottom: 1px solid var(--copper-line-soft);
}

.copper-home .home-process-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 26px;
  display: grid;
  gap: 4px;
  background: rgba(8,9,8,.9);
  border-top: 1px solid var(--copper-line);
}

.copper-home .home-process-visual figcaption strong { color: var(--copper-paper); }
.copper-home .home-process-visual figcaption span { color: var(--copper-muted); font-size: 12px; }

.copper-home .home-process-layout .process {
  grid-template-columns: 1fr;
  border-bottom: 0;
}

.copper-home .home-process-layout .process::before { display: none; }
.copper-home .home-process-layout .process-step,
.copper-home .home-process-layout .process-step:nth-child(2) {
  min-height: 0;
  padding: 28px 62px 28px 0;
  border: 0;
  border-bottom: 1px solid var(--copper-line-soft);
}
.copper-home .home-process-layout .process-step:first-child { border-top: 1px solid var(--copper-line); }
.copper-home .home-process-layout .process-step::before { top: 23px; right: 0; font-size: 2.3rem; }

.copper-home .home-zone-stage {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr);
  overflow: hidden;
  background: #0d0e0d;
  border-top: 1px solid var(--copper-line);
  border-bottom: 1px solid var(--copper-line-soft);
}

.copper-home .home-zone-options {
  display: grid;
  grid-template-rows: repeat(2,1fr);
}

.copper-home .home-zone-options a {
  min-height: 0;
  padding: clamp(28px,4vw,52px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--copper-paper);
  text-decoration: none;
}

.copper-home .home-zone-options a + a { border-top: 1px solid var(--copper-line-soft); }
.copper-home .home-zone-options strong { font-size: clamp(1.55rem,2.4vw,2.45rem); line-height: 1; letter-spacing: -.04em; }
.copper-home .home-zone-options small { margin-top: 10px; color: var(--copper-muted); line-height: 1.5; }
.copper-home .home-zone-options b { margin-top: 24px; color: var(--copper-light); font: 700 10px/1 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.copper-home .home-zone-options a:hover { background: rgba(200,132,92,.055); }

.copper-home #temoignages .testimonials {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--copper) #0d0e0d;
  border: 0;
  background: transparent;
  padding: 2px 0 24px;
}

.copper-home #temoignages .testimonial {
  flex: 0 0 min(430px,82vw);
  min-height: 265px;
  scroll-snap-align: start;
  border-top: 1px solid var(--copper-line);
  border-bottom: 1px solid var(--copper-line-soft);
  background: #0e0f0e;
}

.copper-home.home-motion-ready .home-story,
.copper-home.home-motion-ready .home-specialty-stage,
.copper-home.home-motion-ready .home-process-visual,
.copper-home.home-motion-ready .home-zone-stage,
.copper-home.home-motion-ready .home-directory {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.75,.2,1);
}

.copper-home.home-motion-ready .home-story.is-in-view,
.copper-home.home-motion-ready .home-specialty-stage.is-in-view,
.copper-home.home-motion-ready .home-process-visual.is-in-view,
.copper-home.home-motion-ready .home-zone-stage.is-in-view,
.copper-home.home-motion-ready .home-directory.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.copper-home.home-motion-ready .home-story:nth-child(2) { transition-delay: .08s; }
.copper-home.home-motion-ready .home-story:nth-child(3) { transition-delay: .16s; }

/* The full mobile menu belongs to the copper identity and must begin below the fixed header. */
@media (max-width: 1080px) {
  .copper-ui .site-header .brand > img,
  .copper-ui .site-header .brand-mark,
  .copper-ui .site-header .copper-brand-mark { display: none !important; }

  .copper-ui .mm.is-open {
    top: var(--header-h) !important;
    bottom: 0 !important;
    height: calc(100dvh - var(--header-h)) !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    background: #0a0b0a !important;
  }

  .copper-ui .mm-panel {
    top: 0 !important;
    padding: 14px 12px 100px !important;
    background: #0a0b0a !important;
  }

  .copper-ui .montage-mobile-entry,
  .copper-ui .smart-menu-mobile-entry {
    width: 100%;
    min-height: 72px;
    margin: 0 0 10px;
    padding: 15px 18px;
    border: 1px solid var(--copper-line) !important;
    border-radius: 2px;
    background: #12120f !important;
    color: var(--copper-paper) !important;
    box-shadow: none !important;
  }

  .copper-ui .montage-mobile-entry strong,
  .copper-ui .smart-menu-mobile-entry strong { color: var(--copper-light) !important; }
  .copper-ui .montage-mobile-entry small,
  .copper-ui .smart-menu-mobile-entry small { color: var(--copper-muted) !important; }

  .copper-ui .mm-item {
    min-height: 62px;
    padding: 17px 12px;
    border-bottom-color: var(--copper-line-soft);
    color: var(--copper-paper);
    font-size: .98rem;
  }

  .copper-ui .mm-item:hover,
  .copper-ui .mm-item:active { background: rgba(200,132,92,.06); color: var(--copper-light); }
  .copper-ui .mm-arrow { color: var(--copper); }

  .copper-ui .mm-item--featured {
    background: rgba(200,132,92,.075) !important;
    color: var(--copper-light) !important;
    border-bottom-color: var(--copper-line) !important;
  }

  .copper-ui .mm-back {
    top: 0;
    padding: 15px 12px;
    background: #11120f;
    border-bottom-color: var(--copper-line);
    color: var(--copper-light);
  }

  .copper-ui .mm-section-title { padding-inline: 12px; color: var(--copper); }
  .copper-ui .mm-section .mm-item { padding-left: 18px; }
  .copper-ui .mm-cta-block { padding: 20px 0 30px; border-top-color: var(--copper-line-soft); }

  .copper-ui .mm-cta {
    border-radius: 2px;
    box-shadow: none !important;
  }

  .copper-ui .mm-cta--primary {
    background: var(--copper-light) !important;
    color: #17110e !important;
  }

  .copper-ui .mm-cta--magenta,
  .copper-ui .mm-cta--ghost {
    background: transparent !important;
    color: var(--copper-paper) !important;
    border: 1px solid var(--copper-line) !important;
  }

  .copper-ui .mm-bottom-cta {
    margin-inline: 0;
    border-color: var(--copper-line) !important;
    background: rgba(200,132,92,.06) !important;
    color: var(--copper-light) !important;
  }
}

@media (max-width: 960px) {
  .copper-home #services > .container { width: min(100% - 40px,820px); }
  .copper-home .home-service-stories,
  .copper-home .home-directory { grid-column: auto; grid-row: auto; }
  .copper-home .home-process-layout { grid-template-columns: 1fr; }
  .copper-home .home-process-visual { min-height: 500px; }
}

@media (max-width: 720px) {
  .copper-home .wa-float {
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .2s ease !important;
  }

  .copper-home:not(.home-has-scrolled) .wa-float {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(12px) !important;
  }

  .copper-home .home-service-stories { grid-template-columns: 1fr; gap: 22px; }
  .copper-home .home-story--wide { grid-column: auto; grid-template-columns: 1fr; min-height: 0; }
  .copper-home .home-story--wide .home-story-media,
  .copper-home .home-story-media { min-height: 225px; }
  .copper-home .home-story-copy,
  .copper-home .home-story--wide .home-story-copy { padding: 24px 20px 26px; }
  .copper-home .home-story h3 { font-size: 1.65rem; }
  .copper-home .home-directory { margin-top: 24px; }
  .copper-home .home-directory > summary { align-items: flex-start; flex-direction: column; gap: 16px; padding: 20px 0; }
  .copper-home .home-directory-action { width: 100%; justify-content: space-between; }
  .copper-home #specialites .home-specialty-stage,
  .copper-home .home-zone-stage { min-height: 0; grid-template-columns: 1fr; }
  .copper-home .home-specialty-media,
  .copper-home .home-zone-media { min-height: 280px; }
  .copper-home .home-specialty-copy { padding: 28px 20px 32px; }
  .copper-home .home-specialty-links { grid-template-columns: 1fr; }
  .copper-home .home-specialty-links a:nth-child(odd) { border-right: 0; }
  .copper-home .home-specialty-links a:nth-child(even) { padding-left: 0; }
  .copper-home .home-process-visual { min-height: 420px; }
  .copper-home .home-process-layout .process-step,
  .copper-home .home-process-layout .process-step:nth-child(2) { min-height: 0; padding: 24px 54px 24px 0; }
  .copper-home .home-zone-options a { padding: 28px 20px; }
  .copper-home #temoignages .testimonial { flex-basis: 88vw; padding: 24px; }
}

/* Editorial visual system shared by service, guide and local landing pages. */
.copper-ui .copper-visual-essay {
  padding: clamp(34px,5vw,72px) 0;
  border-block: 1px solid var(--copper-line-soft);
  background: #0a0b0a;
}

.copper-ui .copper-editorial-visual {
  display: grid;
  grid-template-columns: minmax(0,1.7fr) minmax(280px,.72fr);
  width: 100%;
  margin: clamp(28px,4vw,46px) 0;
  overflow: hidden;
  border: 1px solid var(--copper-line);
  background: #0f100f;
}

.copper-ui .copper-visual-essay .copper-editorial-visual {
  margin: 0;
}

.copper-ui .copper-editorial-media {
  min-width: 0;
  min-height: 310px;
  overflow: hidden;
  border-right: 1px solid var(--copper-line-soft);
  background: #0b0c0b;
}

.copper-ui .copper-editorial-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(.84) contrast(1.04);
  transform: scale(1.001);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.copper-ui .copper-editorial-visual:hover .copper-editorial-media img {
  filter: saturate(.95) contrast(1.05);
  transform: scale(1.025);
}

.copper-ui .copper-editorial-visual figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
  padding: clamp(26px,3.5vw,48px);
  color: var(--copper-muted);
  background: #10110f;
}

.copper-ui .copper-editorial-kicker {
  color: var(--copper);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .17em;
  line-height: 1.45;
  text-transform: uppercase;
}

.copper-ui .copper-editorial-visual figcaption strong {
  color: var(--copper-paper);
  font-family: var(--display);
  font-size: clamp(1.55rem,2.3vw,2.55rem);
  font-weight: 620;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.copper-ui .copper-editorial-visual figcaption > span:last-child {
  max-width: 38ch;
  color: var(--copper-muted);
  font-size: 14px;
  line-height: 1.7;
}

html.copper-motion-ready .copper-motion-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease var(--copper-motion-delay,0ms), transform .65s cubic-bezier(.2,.7,.2,1) var(--copper-motion-delay,0ms);
}

html.copper-motion-ready .copper-motion-item.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .copper-ui .copper-editorial-visual {
    grid-template-columns: 1fr;
  }

  .copper-ui .copper-editorial-media {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--copper-line-soft);
  }

  .copper-ui .copper-editorial-media img {
    min-height: 240px;
    max-height: 440px;
  }
}

@media (max-width: 560px) {
  .copper-ui .copper-visual-essay {
    padding: 28px 0;
  }

  .copper-ui .copper-editorial-visual {
    margin: 24px 0;
  }

  .copper-ui .copper-editorial-media,
  .copper-ui .copper-editorial-media img {
    min-height: 210px;
  }

  .copper-ui .copper-editorial-visual figcaption {
    padding: 24px 20px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.copper-motion-ready .copper-motion-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .copper-ui .copper-editorial-media img {
    transform: none !important;
    transition: none;
  }
}
