:root {
  --bg-deep: #ffffff;
  --bg-muted: #f4f7fb;
  --bg-navy: #eef3f9;
  --color-primary: #196db6;
  --color-secondary: #ff6633;
  --accent-cyan: var(--color-primary);
  --accent-cyan-dim: rgba(25, 109, 182, 0.22);
  --accent-gold: var(--color-secondary);
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --whatsapp: #25d366;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-deep);
  overflow-x: hidden;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}

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

/* ——— Header / Nav ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  background: #196db6;
  background: var(--color-primary);
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.12);
}

.site-header.is-scrolled {
  background: #196db6;
  background: var(--color-primary);
  box-shadow: 0 4px 20px rgba(13, 77, 122, 0.35);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.site-header .logo {
  color: #fff;
}

.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 12px rgba(255, 102, 51, 0.45), 0 0 20px rgba(25, 109, 182, 0.25);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.site-header .nav-links a {
  color: rgba(255, 255, 255, 0.95);
}

.site-header .nav-links a:hover,
.site-header .nav-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--whatsapp);
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-wa-sm svg {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-primary);
}

.site-header .menu-toggle {
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #145a94;
  background: color-mix(in srgb, var(--color-primary) 92%, #000);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s var(--ease-out), opacity 0.35s, visibility 0.35s;
  z-index: 999;
}

.mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-drawer a {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-drawer a:not(.btn-wa-sm) {
  color: rgba(255, 255, 255, 0.95);
}

.mobile-drawer a:not(.btn-wa-sm):hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-drawer {
    display: block;
  }
}

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 35%, rgba(25, 109, 182, 0.12) 0%, var(--bg-deep) 58%);
}

.hero-uv-orb {
  position: absolute;
  width: min(90vw, 700px);
  height: min(90vw, 700px);
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(25, 109, 182, 0.18) 60deg,
    rgba(255, 102, 51, 0.12) 120deg,
    rgba(25, 109, 182, 0.2) 200deg,
    transparent 280deg,
    rgba(25, 109, 182, 0.14) 360deg
  );
  filter: blur(40px);
  animation: uvSpin 14s linear infinite;
  will-change: transform;
  pointer-events: none;
}

@keyframes uvSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 0%,
    rgba(25, 109, 182, 0.08) 25%,
    rgba(255, 102, 51, 0.06) 50%,
    rgba(25, 109, 182, 0.1) 75%,
    transparent 100%
  );
  background-size: 200% 200%;
  animation: shimmerMove 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmerMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-beam {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 120%;
  height: 80%;
  transform: translateX(-50%) skewY(-8deg);
  background: linear-gradient(
    180deg,
    rgba(25, 109, 182, 0.12) 0%,
    transparent 45%
  );
  opacity: 0.6;
  pointer-events: none;
  animation: beamPulse 6s ease-in-out infinite alternate;
}

@keyframes beamPulse {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 0.65;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(25, 109, 182, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  animation: floatBadge 4s ease-in-out infinite;
  background: rgba(25, 109, 182, 0.08);
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: var(--text-primary);
  text-shadow: 0 2px 24px rgba(25, 109, 182, 0.12);
}

.hero h1 .gold {
  color: var(--color-secondary);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(25, 109, 182, 0.25);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(25, 109, 182, 0.28), 0 0 40px rgba(25, 109, 182, 0.12);
  }
  50% {
    box-shadow: 0 0 28px rgba(25, 109, 182, 0.45), 0 0 48px rgba(255, 102, 51, 0.12);
  }
}

.btn-primary:hover {
  background: rgba(25, 109, 182, 0.1);
}

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}

.btn-wa:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ——— Intro strip ——— */
.intro-strip {
  background: linear-gradient(90deg, var(--bg-muted) 0%, #e8f0f8 50%, var(--bg-muted) 100%);
  border-top: 1px solid rgba(25, 109, 182, 0.12);
  border-bottom: 1px solid rgba(255, 102, 51, 0.1);
  padding: 3rem 1.5rem;
}

.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.intro-strip p.lead {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  text-align: center;
  color: var(--text-primary);
  margin: 0 0 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.intro-stat {
  text-align: center;
  padding: 1.25rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(25, 109, 182, 0.15);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.intro-stat .icon-wrap {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.intro-stat strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.intro-stat span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .intro-stats {
    grid-template-columns: 1fr;
  }
}

/* ——— Section titles ——— */
.section {
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.03em;
  margin: 0;
  color: var(--text-primary);
}

.section-desc {
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ——— Catalogue ——— */
#catalogue {
  background: var(--bg-muted);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  min-height: 0;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
  will-change: transform;
  outline: none;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.product-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(25, 109, 182, 0.45);
  box-shadow: 0 0 24px rgba(25, 109, 182, 0.2), 0 16px 40px rgba(15, 23, 42, 0.1);
}

.product-card-visual {
  height: 100px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-visual .emoji {
  font-size: 3.5rem;
  line-height: 1;
}

.product-card-visual svg {
  width: 88px;
  height: 88px;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.product-card .desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.product-card-actions {
  margin: 1.1rem 0 0;
  padding-top: 0.5rem;
  position: relative;
  z-index: 3;
}

.product-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 2px solid rgba(255, 102, 51, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.product-card-link:hover,
.product-card-link:focus-visible {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.product-card h3 a:hover,
.product-card h3 a:focus-visible {
  color: var(--color-primary);
}

/* ——— Category detail pages ——— */
.cat-detail {
  scroll-margin-top: calc(var(--nav-h) + 0.5rem);
  background: var(--bg-deep);
  border-top: 1px solid rgba(25, 109, 182, 0.08);
}

.cat-detail--muted {
  background: var(--bg-muted);
}

.cat-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.cat-back-link:hover {
  color: var(--color-secondary);
}

.cat-detail__intro {
  max-width: 720px;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.print-types {
  margin-bottom: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.print-types__row {
  display: grid;
  grid-template-columns: minmax(140px, 240px) 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}

.print-types__visual {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff, var(--bg-muted));
  border: 1px solid rgba(25, 109, 182, 0.12);
  aspect-ratio: 4 / 3;
  max-height: 220px;
}

.print-types__visual svg {
  display: block;
  width: 100%;
  height: 100%;
}

.print-types__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.print-types ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.print-types li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.print-types li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.client-gallery h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
  color: var(--text-primary);
}

.client-gallery__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.client-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
}

.client-figure {
  margin: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.client-figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(25, 109, 182, 0.12);
}

.client-illu {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--bg-muted) 0%, #e2ecf5 100%);
}

.client-illu svg {
  display: block;
  width: 100%;
  height: 100%;
}

.client-figure figcaption {
  padding: 0.85rem 1rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.client-figure figcaption strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

@media (max-width: 900px) {
  .client-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .client-gallery__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .print-types__row {
    grid-template-columns: 1fr;
  }

  .print-types__visual {
    max-height: 200px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

}

/* ——— Process ——— */
#process {
  background: var(--bg-deep);
  border-top: 1px solid rgba(25, 109, 182, 0.1);
}

.process-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.5rem;
}

.process-line-bg {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(15, 23, 42, 0.1);
  border-radius: 2px;
  z-index: 0;
}

.process-line-fill {
  position: absolute;
  top: 36px;
  left: 10%;
  height: 3px;
  width: 0;
  max-width: 80%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
  z-index: 1;
  transition: width 1.2s var(--ease-out);
  box-shadow: 0 0 12px rgba(25, 109, 182, 0.35);
}

.process-line-fill.is-drawn {
  width: 80%;
}

.process-step {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  max-width: 260px;
  margin: 0 auto;
}

.process-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, var(--bg-muted));
  border: 2px solid rgba(25, 109, 182, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(25, 109, 182, 0.12);
}

.process-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
}

.process-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .process-track {
    flex-direction: column;
    align-items: stretch;
  }

  .process-line-bg,
  .process-line-fill {
    display: none;
  }

  .process-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
    max-width: none;
  }

  .process-icon {
    margin: 0;
    flex-shrink: 0;
  }
}

/* ——— Materials ——— */
#materiaux {
  background: var(--bg-muted);
}

.materials-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent, #fff 2%, #fff 98%, transparent);
}

.materials-scroll::-webkit-scrollbar {
  height: 6px;
}

.materials-scroll::-webkit-scrollbar-thumb {
  background: rgba(25, 109, 182, 0.35);
  border-radius: 3px;
}

.material-pill {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  border: 1px solid rgba(15, 23, 42, 0.1);
  white-space: nowrap;
  transition: transform 0.2s;
}

.material-pill:hover {
  transform: scale(1.03);
}

.material-pill--bois,
.material-pill--metal,
.material-pill--plastique,
.material-pill--tissu,
.material-pill--cuir,
.material-pill--ardoise {
  color: #fff;
}

.material-pill--bois {
  background: linear-gradient(135deg, #5c4033, #3d2b22);
}

.material-pill--verre {
  background: linear-gradient(135deg, rgba(25, 109, 182, 0.35), rgba(200, 230, 255, 0.35));
}

.material-pill--plexi {
  background: linear-gradient(135deg, rgba(25, 109, 182, 0.25), rgba(255, 102, 51, 0.15));
}

.material-pill--metal {
  background: linear-gradient(135deg, #6b7280, #374151);
}

.material-pill--plastique {
  background: linear-gradient(135deg, #ec4899, #7c3aed);
}

.material-pill--tissu {
  background: linear-gradient(135deg, #8b5cf6, #4c1d95);
}

.material-pill--cuir {
  background: linear-gradient(135deg, #78350f, #451a03);
}

.material-pill--ceramique {
  background: linear-gradient(135deg, #fef3c7, #d97706);
  color: #1c1917;
}

.material-pill--ardoise {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.materials-mosaic {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.materials-mosaic .material-pill {
  text-align: center;
  border-radius: 12px;
}

@media (min-width: 769px) {
  .materials-scroll {
    display: none;
  }

  .materials-mosaic {
    display: grid;
  }
}

/* ——— Why ——— */
#pourquoi {
  background: var(--bg-deep);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  padding: 1.5rem;
  border-radius: 14px;
  background: var(--bg-muted);
  border: 1px solid rgba(25, 109, 182, 0.15);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 102, 51, 0.35);
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.feature-card .f-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Contact ——— */
#contact {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
  background: var(--bg-muted);
}

.contact-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(25, 109, 182, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 0.75rem;
}

.contact-inner > p {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.btn-wa-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-wa-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.btn-wa-lg svg {
  width: 28px;
  height: 28px;
}

.site-url {
  display: block;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-form input[type="email"] {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input::placeholder {
  color: rgba(100, 116, 139, 0.8);
}

.btn-submit {
  margin-top: 0.5rem;
  padding: 0.95rem;
  background: linear-gradient(135deg, var(--color-primary), #145a94);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s, filter 0.2s;
}

.btn-submit:hover {
  filter: brightness(1.08);
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid rgba(25, 109, 182, 0.15);
  padding: 3rem 1.5rem 2rem;
  background: #fff;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand .logo {
  margin-bottom: 0.5rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

  .reveal,
  .hero-uv-orb,
  .hero-shimmer,
  .hero-beam,
  .hero-badge,
  .btn-primary,
  .process-line-fill {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.page-devis {
    padding: calc(var(--nav-h) + 2.5rem) 1.5rem 4rem;
    max-width: 720px;
    margin: 0 auto;
  }

  .page-devis__header {
    margin-bottom: 2rem;
  }

  .page-devis__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin: 0 0 0.5rem;
  }

  .page-devis__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    letter-spacing: 0.03em;
    margin: 0 0 0.75rem;
    line-height: 1.1;
  }

  .page-devis__lead {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
  }

  .form-devis {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  }

  .form-devis__grid {
    display: grid;
    gap: 1.25rem;
  }

  @media (min-width: 560px) {
    .form-devis__grid--2 {
      grid-template-columns: 1fr 1fr;
    }
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .form-field label,
  .form-field legend {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  .form-field .hint {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    margin: 0;
  }

  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"],
  .form-field input[type="number"],
  .form-field input[type="file"],
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
  }

  .form-field textarea {
    min-height: 140px;
    resize: vertical;
  }

  .form-field input::placeholder,
  .form-field textarea::placeholder {
    color: rgba(100, 116, 139, 0.75);
  }

  .form-field--full { grid-column: 1 / -1; }

  .form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    grid-column: 1 / -1;
  }

  @media (max-width: 480px) {
    .form-row-split {
      grid-template-columns: 1fr;
    }
  }

  .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .form-checkbox input {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--color-primary);
  }

  .form-checkbox label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.45;
  }

  .btn-submit-devis {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--color-primary), #145a94);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    transition: filter 0.2s, transform 0.15s;
  }

  .btn-submit-devis:hover {
    filter: brightness(1.05);
  }

  .btn-submit-devis:active {
    transform: scale(0.99);
  }

  .form-devis__alt {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .form-devis__alt a {
    font-weight: 600;
  }

  .form-success {
    display: none;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(25, 109, 182, 0.08);
    border: 1px solid rgba(25, 109, 182, 0.25);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
  }

  .form-success.is-visible {
    display: block;
  }

  .form-success strong {
    color: var(--color-primary);
  }