:root,
:root[data-theme="light"],
:root[data-theme="dark"] {
  color-scheme: light;
  --cr-navy: #0b2d4d;
  --cr-blue: #133e6d;
  --cr-cyan: #00a3b4;
  --cr-cyan-soft: #dff7f9;
  --cr-steel: #6b7785;
  --cr-orange: #f5a623;
  --cr-orange-soft: #fff3dc;
  --cr-ink: #162f47;
  --cr-muted: #607087;
  --cr-line: #dbe5ed;
  --cr-surface: #ffffff;
  --cr-wash: #f5f9fc;
  --cr-shadow: 0 22px 60px rgba(11, 45, 77, 0.1);

  /*
   * Le thème CR Systèmes est exclusivement clair. Quark 2 peut toutefois
   * restaurer une ancienne préférence sombre depuis le localStorage avant le
   * rendu de la page. On fixe donc aussi ses propres jetons dans les trois
   * états afin d'éviter du texte clair sur les surfaces blanches du thème.
   */
  --q2-bg: var(--cr-wash);
  --q2-bg-elev: var(--cr-surface);
  --q2-bg-muted: #eef4f8;
  --q2-bg-inverse: var(--cr-navy);
  --q2-text: var(--cr-ink);
  --q2-text-strong: var(--cr-navy);
  --q2-text-muted: var(--cr-muted);
  --q2-text-inverse: #ffffff;
  --q2-border-ring: rgba(19, 62, 109, 0.1);
  --q2-border-strong: rgba(19, 62, 109, 0.18);
  --q2-divider: rgba(19, 62, 109, 0.1);
  --q2-nav-bg: rgba(255, 255, 255, 0.97);
  --q2-nav-border: rgba(19, 62, 109, 0.1);
  --q2-accent: var(--cr-cyan);
  --q2-accent-contrast: #ffffff;
  --q2-link: var(--cr-blue);
  --q2-focus-ring: rgba(0, 163, 180, 0.3);

  /* Inter fournit de vraies graisses de 100 à 900. Cal Sans n'étant livré
   * qu'en 400 par Quark 2, son gras synthétique paraissait trop compact. */
  --pico-font-family-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --forum-font-display: var(--pico-font-family-display);
  --pico-background-color: var(--cr-surface);
  --pico-color: var(--cr-ink);
  --pico-muted-color: var(--cr-muted);
  --pico-primary: var(--cr-cyan);
  --pico-primary-background: var(--cr-cyan);
  --pico-primary-border: var(--cr-cyan);
  --pico-border-radius: 0.75rem;
}

html {
  color-scheme: light;
  background: var(--cr-wash);
  scroll-behavior: smooth;
}

body {
  background: var(--cr-wash);
  color: var(--cr-ink);
  font-size: 1rem;
  -webkit-hyphens: none;
  hyphens: none;
  line-height: 1.7;
}

/*
 * Quark 2 autorise la césure automatique des textes en français. Selon la
 * largeur disponible, un mot court pouvait alors se retrouver coupé avec son
 * tiret seul en fin de ligne (par exemple « de- / gré »). On impose des
 * retours entre les mots sur l'ensemble des contenus, tout en laissant les
 * chaînes longues comme les URL se replier si elles dépassent leur conteneur.
 */
body :is(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  dt,
  dd,
  blockquote,
  figcaption,
  th,
  td,
  label,
  legend,
  button,
  .cr-button
) {
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: normal;
}

body :is(p, li, dt, dd, blockquote, figcaption, th, td) {
  overflow-wrap: break-word;
}

a {
  color: var(--cr-blue);
  text-underline-offset: 0.2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-kerning: normal;
  font-synthesis: none;
  letter-spacing: -0.012em;
}

/*
 * Quark 2 ajoute un petit trait devant certains titres. Sa position dépend du
 * conteneur du thème parent et devient incohérente dès qu'un titre est centré
 * ou qu'une page passe en pleine largeur. Les titres CR Systèmes n'utilisent
 * donc aucun trait généré : leur hiérarchie repose sur la couleur, la graisse
 * et l'espacement.
 */
#body-wrapper h1::before,
#body-wrapper h1::after,
#body-wrapper h2::before,
#body-wrapper h2::after,
#body-wrapper h3::before,
#body-wrapper h3::after,
#body-wrapper h4::before,
#body-wrapper h4::after,
#body-wrapper h5::before,
#body-wrapper h5::after,
#body-wrapper h6::before,
#body-wrapper h6::after {
  content: none !important;
  display: none !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 163, 180, 0.35);
  outline-offset: 3px;
}

.cr-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* En-tête */

#header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(19, 62, 109, 0.1);
  box-shadow: 0 8px 28px rgba(11, 45, 77, 0.055);
  backdrop-filter: blur(16px);
}

#header > .container {
  max-width: 1380px;
}

#header .navbar {
  min-height: 5.5rem;
  gap: 1.5rem;
}

.navbar-section.logo {
  flex: 0 0 auto;
}

.navbar-brand,
.cr-footer__logo {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.navbar-brand {
  width: 18.5rem;
  height: 4.25rem;
}

.cr-brand-lockup {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/logo/cr-systemes.png");
  background-repeat: no-repeat;
  /* Le visuel utile n'occupe que le centre du PNG provisoire. Ce cadrage
   * proportionnel le garde entier dans le header, le menu mobile et le footer. */
  background-position: 45% 46%;
  background-size: 161% auto;
}

.desktop-menu {
  margin-left: auto;
}

.desktop-menu .navigation {
  align-items: center;
  gap: 0.1rem;
}

.desktop-menu .navigation > li > a {
  position: relative;
  padding: 0.72rem 0.62rem;
  border-radius: 0.55rem;
  color: var(--cr-navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.012em;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-menu .navigation > li > a:hover {
  background: var(--cr-cyan-soft);
  color: var(--cr-blue);
}

/*
 * Quark 2 applique son propre fond foncé à l'entrée courante avec un
 * sélecteur plus spécifique. Le texte bleu devenait alors presque invisible.
 */
#header .desktop-menu .navigation > li.active > a,
#header .desktop-menu .navigation > li.selected > a,
#header .desktop-menu .navigation > li > a.active,
#header .desktop-menu .navigation > li > a[aria-current="page"] {
  background: var(--cr-cyan-soft) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 163, 180, 0.16);
  color: var(--cr-navy) !important;
}

.desktop-menu .navigation a[href$="/atelier"] {
  margin-left: 0.35rem;
  padding-inline: 0.9rem;
  background: var(--cr-orange-soft);
  color: #9a5900;
}

.desktop-menu .navigation a[href$="/atelier"]:hover,
.desktop-menu .navigation li.active a[href$="/atelier"],
.desktop-menu .navigation li.selected a[href$="/atelier"],
.desktop-menu .navigation a.active[href$="/atelier"],
.desktop-menu .navigation a[href$="/atelier"][aria-current="page"] {
  background: var(--cr-orange) !important;
  color: var(--cr-navy) !important;
}

.navbar-section.actions {
  display: none;
}

/* Contenu courant */

#body-wrapper {
  background: var(--cr-surface);
}

#body-wrapper > .container {
  max-width: 1120px;
}

.content-item {
  max-width: 900px;
  margin-inline: auto;
  padding-block: 2.25rem 4rem;
}

.content-item h1,
.content-item h2,
.content-item h3 {
  color: var(--cr-navy);
  letter-spacing: -0.012em;
}

.content-item > h1 {
  margin-bottom: 2rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.content-item > h2 {
  margin-top: 3rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.content-item > h3 {
  margin-top: 2rem;
  color: var(--cr-blue);
}

.content-item > p,
.content-item > ul {
  max-width: 48rem;
}

.content-item li::marker {
  color: var(--cr-cyan);
}

.content-item > p:last-child > a:only-child,
.cr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid var(--cr-cyan);
  border-radius: 0.7rem;
  background: var(--cr-cyan);
  box-shadow: 0 10px 22px rgba(0, 163, 180, 0.18);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.content-item > p:last-child > a:only-child:hover,
.cr-button:hover {
  transform: translateY(-2px);
  background: #008d9c;
  box-shadow: 0 15px 28px rgba(0, 163, 180, 0.23);
  color: #ffffff;
}

.cr-button--secondary {
  border-color: rgba(19, 62, 109, 0.22);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  color: var(--cr-blue);
}

.cr-button--secondary:hover {
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(11, 45, 77, 0.1);
  color: var(--cr-navy);
}

.cr-button--atelier {
  border-color: var(--cr-orange);
  background: var(--cr-orange);
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.22);
  color: var(--cr-navy);
}

.cr-button--atelier:hover {
  background: #e59612;
  color: var(--cr-navy);
}

.cr-shell {
  width: min(100% - 2rem, 1240px);
  margin-inline: auto;
}

.cr-eyebrow {
  margin: 0 0 0.9rem;
  color: var(--cr-cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cr-section-heading {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.cr-section-heading h2 {
  margin: 0 0 0.8rem;
  color: var(--cr-navy);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.018em;
}

.cr-section-heading p:last-child {
  margin-bottom: 0;
  color: var(--cr-muted);
  font-size: 1.08rem;
}

/* Accueil */

.home-page #body-wrapper,
.atelier-page #body-wrapper {
  padding: 0;
}

.home-page #body-wrapper > .container,
.atelier-page #body-wrapper > .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.home-page .content-item,
.atelier-page .content-item {
  max-width: none;
  margin: 0;
  padding: 0;
}

/*
 * Quark 2 affiche par défaut le contenu courant dans une carte de 960 px.
 * Sur les pages vitrines composées en sections, cette carte ressemble à un
 * cadre d'appareil et réduit artificiellement toute la mise en page. Le
 * sélecteur reprend volontairement la structure du thème parent afin de
 * neutraliser sa spécificité (ID + classes), pas seulement son apparence.
 */
.home-page #body-wrapper > .container > .content-item,
.atelier-page #body-wrapper > .container > .content-item {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cr-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(3.6rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 14% 20%, rgba(0, 163, 180, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff 12%, #f6fbfd 62%, #edf7fb 100%);
}

.cr-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 50%;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(19, 62, 109, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 62, 109, 0.085) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000);
}

.cr-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(2.4rem, 6vw, 6rem);
}

.cr-hero h1 {
  max-width: 730px;
  margin: 0;
  color: var(--cr-navy);
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.cr-hero h1 span {
  display: block;
  color: var(--cr-blue);
}

.cr-hero__lead {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: var(--cr-muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.cr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.cr-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin: 2.2rem 0 0;
  padding: 0;
  color: var(--cr-blue);
  font-size: 0.9rem;
  font-weight: 750;
  list-style: none;
}

.cr-hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cr-hero__proof li::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--cr-cyan);
  box-shadow: 0 0 0 0.28rem rgba(0, 163, 180, 0.12);
}

.cr-hero__visual {
  position: relative;
  min-height: 440px;
}

.cr-rack {
  position: absolute;
  top: 2rem;
  right: 8%;
  bottom: 0;
  width: 74%;
  padding: 1.5rem;
  border: 1px solid rgba(19, 62, 109, 0.13);
  border-radius: 1.4rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(222, 240, 247, 0.86));
  box-shadow: var(--cr-shadow);
}

.cr-rack__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--cr-line);
}

.cr-rack__header::before {
  content: "infrastructure";
  color: var(--cr-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cr-rack__header::after {
  content: "●  ●  ●";
  color: var(--cr-cyan);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
}

.cr-rack__unit {
  position: relative;
  height: 3.65rem;
  margin-top: 0.72rem;
  border: 1px solid rgba(19, 62, 109, 0.14);
  border-radius: 0.65rem;
  background: linear-gradient(90deg, var(--cr-navy), #164d7a);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
}

.cr-rack__unit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--cr-cyan);
  box-shadow: 1.05rem 0 #80dbe2, 2.1rem 0 rgba(255, 255, 255, 0.42);
}

.cr-rack__unit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 32%;
  height: 0.34rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 4px, transparent 4px 8px);
}

.cr-console {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 1.8rem;
  width: 64%;
  padding: 1.2rem;
  border: 5px solid var(--cr-navy);
  border-radius: 1rem;
  background: #0e3556;
  box-shadow: 0 26px 55px rgba(11, 45, 77, 0.24);
  transform: rotate(-3deg);
}

.cr-console__line {
  height: 0.42rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cr-cyan) 0 48%, rgba(255, 255, 255, 0.12) 48% 100%);
}

.cr-console__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.cr-console__metrics span {
  aspect-ratio: 1.3;
  border: 1px solid rgba(128, 219, 226, 0.3);
  border-radius: 0.5rem;
  background:
    radial-gradient(circle at center, transparent 34%, var(--cr-cyan) 36% 42%, transparent 44%),
    rgba(255, 255, 255, 0.045);
}

.cr-services {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #ffffff;
}

.cr-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.cr-service-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.65rem;
  overflow: hidden;
  border: 1px solid var(--cr-line);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(11, 45, 77, 0.055);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cr-service-card::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -3rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(0, 163, 180, 0.14);
  border-radius: 50%;
}

.cr-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 163, 180, 0.38);
  box-shadow: 0 22px 48px rgba(11, 45, 77, 0.12);
}

.cr-service-card--atelier {
  background: linear-gradient(150deg, #ffffff, #fff9ef);
}

.cr-service-card--atelier:hover {
  border-color: rgba(245, 166, 35, 0.55);
}

.cr-service-card .cr-icon {
  margin-bottom: 1.3rem;
}

.cr-service-card h3 {
  margin: 0;
  color: var(--cr-navy);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.012em;
}

.cr-service-card p {
  margin: 0.75rem 0 1.25rem;
  color: var(--cr-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.cr-service-card__link {
  margin-top: auto;
  color: var(--cr-cyan);
  font-size: 0.86rem;
  font-weight: 800;
}

.cr-service-card--atelier .cr-icon,
.cr-service-card--atelier .cr-service-card__link {
  color: var(--cr-orange);
}

.cr-icon {
  display: inline-block;
  width: 2.7rem;
  height: 2.7rem;
  color: var(--cr-blue);
  background: currentColor;
  mask: var(--cr-icon) center / contain no-repeat;
  -webkit-mask: var(--cr-icon) center / contain no-repeat;
}

.cr-icon--cloud { --cr-icon: url("../images/icons/cloud.svg"); }
.cr-icon--server { --cr-icon: url("../images/icons/server.svg"); }
.cr-icon--wrench { --cr-icon: url("../images/icons/wrench.svg"); }
.cr-icon--shield { --cr-icon: url("../images/icons/shield.svg"); }
.cr-icon--headset { --cr-icon: url("../images/icons/headset.svg"); }
.cr-icon--monitor { --cr-icon: url("../images/icons/monitor.svg"); }
.cr-icon--smartphone { --cr-icon: url("../images/icons/smartphone.svg"); }
.cr-icon--search { --cr-icon: url("../images/icons/search.svg"); }
.cr-icon--drive { --cr-icon: url("../images/icons/hard-drive.svg"); }
.cr-icon--package { --cr-icon: url("../images/icons/package-check.svg"); }
.cr-icon--map { --cr-icon: url("../images/icons/map-pin.svg"); }
.cr-icon--settings { --cr-icon: url("../images/icons/settings.svg"); }

.cr-atelier-band {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(245, 166, 35, 0.16), transparent 30%),
    linear-gradient(135deg, var(--cr-navy), #113e68);
  color: #ffffff;
}

.cr-atelier-band__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.cr-atelier-lockup,
.cr-atelier-hero__logo {
  overflow: hidden;
}

.cr-atelier-lockup {
  width: min(100%, 500px);
  height: auto;
  aspect-ratio: 4.4 / 1;
  border-radius: 1rem;
  background-image: url("../images/logo/cr-atelier.png");
  background-repeat: no-repeat;
  background-position: 50% 45%;
  background-size: 124% auto;
}

.cr-atelier-band h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.018em;
}

.cr-atelier-band p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.cr-atelier-band .cr-button {
  margin-top: 0.7rem;
}

.cr-values {
  padding: 2.6rem 0;
  border-top: 1px solid var(--cr-line);
  background: var(--cr-wash);
}

.cr-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.cr-value {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
}

.cr-value .cr-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--cr-cyan);
}

.cr-value:nth-child(4) .cr-icon {
  color: var(--cr-orange);
}

.cr-value strong,
.cr-value span {
  display: block;
}

.cr-value strong {
  color: var(--cr-navy);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cr-value span {
  margin-top: 0.15rem;
  color: var(--cr-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Atelier */

.cr-atelier-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(245, 166, 35, 0.2), transparent 30%),
    linear-gradient(135deg, #ffffff, #f4fbfd 64%, #fff8eb);
}

.cr-atelier-hero::after {
  content: "";
  position: absolute;
  right: -9rem;
  bottom: -12rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(245, 166, 35, 0.04), 0 0 0 8rem rgba(0, 163, 180, 0.035);
}

.cr-atelier-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.cr-atelier-hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--cr-navy);
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.024em;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.cr-atelier-hero__lead {
  max-width: 680px;
  margin-top: 1.4rem;
  color: var(--cr-muted);
  font-size: clamp(1.07rem, 2vw, 1.25rem);
}

.cr-atelier-hero__brand {
  width: min(100%, 32rem);
  justify-self: end;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid rgba(19, 62, 109, 0.1);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--cr-shadow);
  backdrop-filter: blur(12px);
}

.cr-atelier-hero__logo {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4.4 / 1;
  background-image: url("../images/logo/cr-atelier.png");
  background-repeat: no-repeat;
  background-position: 50% 45%;
  background-size: 124% auto;
}

.cr-atelier-hero__markers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.cr-atelier-hero__markers li {
  padding: 0.38rem 0.65rem;
  border: 1px solid rgba(245, 166, 35, 0.24);
  border-radius: 999px;
  background: var(--cr-orange-soft);
  color: #815016;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
}

.cr-atelier-services,
.cr-atelier-details,
.cr-atelier-zone,
.cr-atelier-prepare {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.cr-atelier-services {
  background: #ffffff;
}

.cr-atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cr-atelier-card {
  padding: 1.7rem;
  border: 1px solid var(--cr-line);
  border-radius: 1rem;
  background: linear-gradient(150deg, #ffffff, #fbfdfe);
}

.cr-atelier-card .cr-icon {
  color: var(--cr-orange);
}

.cr-atelier-card h3 {
  margin: 1rem 0 0.65rem;
  color: var(--cr-navy);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.012em;
}

.cr-atelier-card p {
  margin: 0;
  color: var(--cr-muted);
  font-size: 0.93rem;
}

.cr-atelier-details {
  background: var(--cr-wash);
}

.cr-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.cr-detail-panel {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid var(--cr-line);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(11, 45, 77, 0.05);
}

.cr-detail-panel h2 {
  margin-top: 0;
  color: var(--cr-navy);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.cr-detail-panel li::marker,
.cr-prepare-card li::marker {
  color: var(--cr-orange);
}

.cr-atelier-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--cr-orange);
  background: var(--cr-orange-soft);
  color: #6f4a13;
  font-size: 0.91rem;
}

.cr-atelier-zone {
  background: linear-gradient(135deg, var(--cr-navy), #134b77);
  color: #ffffff;
}

.cr-zone-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.cr-zone-grid .cr-icon {
  width: 3.4rem;
  height: 3.4rem;
  color: var(--cr-orange);
}

.cr-zone-grid h2 {
  margin: 0 0 0.5rem;
  color: #ffffff;
}

.cr-zone-grid p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cr-atelier-prepare {
  background: #ffffff;
}

.cr-prepare-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.cr-prepare-grid h2 {
  margin-top: 0;
  color: var(--cr-navy);
  font-size: clamp(2rem, 4vw, 3rem);
}

.cr-prepare-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid rgba(245, 166, 35, 0.28);
  border-radius: 1rem;
  background: linear-gradient(145deg, #ffffff, var(--cr-orange-soft));
}

.cr-final-cta {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--cr-cyan-soft);
  text-align: center;
}

.cr-final-cta h2 {
  margin: 0;
  color: var(--cr-navy);
  font-size: clamp(2rem, 4vw, 3rem);
}

.cr-final-cta p {
  max-width: 680px;
  margin: 1rem auto 1.6rem;
  color: var(--cr-muted);
}

/* Pages intérieures */

.page-service #body-wrapper,
.page-contact #body-wrapper {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 88% 14%, rgba(0, 163, 180, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 8%, #f6fbfd 62%, #edf7fb 100%);
}

.page-service #body-wrapper::before,
.page-contact #body-wrapper::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 54%;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(19, 62, 109, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 62, 109, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000);
}

.page-service #body-wrapper > .container,
.page-contact #body-wrapper > .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.page-service #body-wrapper > .container > .content-item,
.page-contact #body-wrapper > .container > .content-item {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding:
    clamp(4.5rem, 8vw, 7.5rem)
    max(1rem, calc((100% - 1240px) / 2))
    clamp(5rem, 9vw, 8rem) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* La page Contact utilise le template du plugin Form, pas default.html.twig.
 * Son contenu est volontairement recentré dans une colonne de lecture stable. */
.page-contact #body-wrapper > .container > .content-item {
  width: min(100% - 2rem, 1120px) !important;
  max-width: 1120px !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

.page-service .content-item > h1,
.page-contact .content-item > h1 {
  max-width: 850px;
  margin: 0;
  color: var(--cr-navy);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.024em;
  text-wrap: balance;
}

.page-contact .content-item > h1,
.page-contact .content-item > p,
.page-contact form {
  width: min(100%, 900px);
  margin-inline: auto;
}

.page-service .content-item > p,
.page-contact .content-item > p {
  max-width: 760px;
  color: var(--cr-muted);
}

.page-service .content-item > h1 + p,
.page-contact .content-item > h1 + p {
  margin-top: 1.6rem;
  color: var(--cr-ink);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.page-service .content-item > p + p:not(:last-child) {
  margin-top: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(19, 62, 109, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(11, 45, 77, 0.055);
  backdrop-filter: blur(10px);
}

.page-service .content-item > p:last-child,
.page-contact .content-item > p:last-of-type {
  margin-top: 2rem;
}

/* Pages détaillées des services professionnels */

.service-detail-page #body-wrapper > .container > .content-item {
  padding: 0 !important;
}

.cr-pro-service__hero {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6.5rem);
}

.cr-pro-service__hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--cr-navy);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.024em;
  text-wrap: balance;
}

.cr-pro-service__lead {
  max-width: 820px;
  margin: 1.6rem 0 0;
  color: var(--cr-ink);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.cr-pro-service__markers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.8rem 0 2rem;
  padding: 0;
  list-style: none !important;
}

.cr-pro-service__markers li {
  list-style: none !important;
  padding: 0.42rem 0.75rem;
  border: 1px solid rgba(0, 163, 180, 0.28);
  border-radius: 999px;
  background: rgba(223, 247, 249, 0.72);
  color: var(--cr-blue);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.25;
}

/*
 * Quark 2 redonne un marqueur carré aux éléments de liste avec un sélecteur
 * plus spécifique que la classe du composant. Les marqueurs situés entre les
 * pastilles ne font pas partie du contenu : ils doivent rester absents sur
 * toutes les listes utilisées comme composants d'interface.
 */
#body-wrapper :is(
  .cr-hero__proof,
  .cr-atelier-hero__markers,
  .cr-pro-service__markers,
  .cr-pro-service__steps,
  .cr-about__timeline,
  .cr-about__values-list
) > li {
  list-style: none !important;
}

#body-wrapper :is(
  .cr-hero__proof,
  .cr-atelier-hero__markers,
  .cr-pro-service__markers,
  .cr-pro-service__steps,
  .cr-about__timeline,
  .cr-about__values-list
) > li::marker {
  content: "" !important;
  color: transparent !important;
  font-size: 0 !important;
}

.cr-pro-service__scope {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  border-block: 1px solid rgba(19, 62, 109, 0.08);
  background: rgba(245, 249, 252, 0.88);
}

.cr-pro-service__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.cr-pro-service__card {
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--cr-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(11, 45, 77, 0.065);
}

.cr-pro-service__card .cr-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
}

.cr-pro-service__card h3 {
  margin: 0;
  color: var(--cr-navy);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 750;
  line-height: 1.2;
}

.cr-pro-service__card p {
  margin: 0.75rem 0 0;
  color: var(--cr-muted);
  line-height: 1.65;
}

.cr-pro-service__method {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 163, 180, 0.2), transparent 30%),
    var(--cr-navy);
  color: #ffffff;
}

.cr-pro-service__method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.cr-pro-service__method .cr-eyebrow {
  color: #7ce9f0;
}

.cr-pro-service__method h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  text-wrap: balance;
}

.cr-pro-service__method p {
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.cr-pro-service__steps {
  margin: 0;
  padding: 0;
  counter-reset: cr-service-step;
  list-style: none;
}

.cr-pro-service__steps li {
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  gap: 0 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  counter-increment: cr-service-step;
}

.cr-pro-service__steps li:first-child {
  padding-top: 0;
}

.cr-pro-service__steps li::before {
  content: counter(cr-service-step, decimal-leading-zero);
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(124, 233, 240, 0.48);
  border-radius: 50%;
  color: #7ce9f0;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.cr-pro-service__steps strong,
.cr-pro-service__steps span {
  grid-column: 2;
}

.cr-pro-service__steps strong {
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.cr-pro-service__steps span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

/* À propos */

.cr-about__hero {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6.5rem);
}

.cr-about__hero h1 {
  max-width: 1020px;
  margin: 0;
  color: var(--cr-navy);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.024em;
  text-wrap: balance;
}

.cr-about__lead {
  max-width: 850px;
  margin: 1.6rem 0 0;
  color: var(--cr-ink);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.cr-about__story,
.cr-about__skills,
.cr-about__values,
.cr-about__local {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.cr-about__story {
  border-block: 1px solid rgba(19, 62, 109, 0.08);
  background: rgba(245, 249, 252, 0.88);
}

.cr-about__story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.cr-about__timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cr-about__timeline li {
  display: grid;
  grid-template-columns: minmax(7rem, 0.32fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cr-line);
}

.cr-about__timeline li:first-child {
  padding-top: 0;
}

.cr-about__period {
  color: var(--cr-cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.cr-about__timeline h3 {
  margin: 0;
  color: var(--cr-navy);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.cr-about__timeline p {
  margin: 0.65rem 0 0;
  color: var(--cr-muted);
  line-height: 1.65;
}

.cr-about__skills {
  background: #ffffff;
}

.cr-about__values {
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 163, 180, 0.2), transparent 30%),
    var(--cr-navy);
  color: #ffffff;
}

.cr-about__values-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.cr-about__values .cr-eyebrow {
  color: #7ce9f0;
}

.cr-about__values h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  text-wrap: balance;
}

.cr-about__values p {
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.cr-about__values-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cr-about__values-list li {
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.cr-about__values-list li:first-child {
  padding-top: 0;
}

.cr-about__values-list strong {
  color: #ffffff;
  line-height: 1.5;
}

.cr-about__values-list span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.cr-about__local {
  background: var(--cr-soft);
}

.cr-about__local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem 4rem;
  align-items: end;
}

.cr-about__local h2 {
  margin: 0;
  color: var(--cr-navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.cr-about__local p:not(.cr-eyebrow) {
  max-width: 790px;
  margin: 1rem 0 0;
  color: var(--cr-muted);
  line-height: 1.65;
}

/* Mentions légales et données personnelles */

.cr-legal__hero {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6.5rem);
}

.cr-legal__hero h1 {
  max-width: 1050px;
  margin: 0;
  color: var(--cr-navy);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.024em;
  text-wrap: balance;
}

.cr-legal__lead {
  max-width: 820px;
  margin: 1.6rem 0 0;
  color: var(--cr-ink);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.cr-legal__updated {
  margin: 1.25rem 0 0;
  color: var(--cr-muted);
  font-size: 0.88rem;
}

.cr-legal__content {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid rgba(19, 62, 109, 0.08);
  background: rgba(245, 249, 252, 0.9);
}

.cr-legal__stack {
  display: grid;
  gap: 1.25rem;
  max-width: 960px;
}

.cr-legal__section {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid var(--cr-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(11, 45, 77, 0.055);
}

.cr-legal__section--pending {
  border-left: 4px solid var(--cr-orange);
}

.cr-legal__section h2 {
  margin: 0;
  color: var(--cr-navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.cr-legal__section h3 {
  margin: 1.8rem 0 0;
  color: var(--cr-blue);
  font-size: 1.1rem;
  line-height: 1.3;
}

.cr-legal__section p {
  margin: 0.9rem 0 0;
  color: var(--cr-muted);
  line-height: 1.7;
}

.cr-legal__section a {
  color: var(--cr-blue);
  font-weight: 700;
}

.cr-legal__facts {
  display: grid;
  gap: 0;
  margin: 1.4rem 0 0;
}

.cr-legal__facts > div {
  display: grid;
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cr-line);
}

.cr-legal__facts > div:last-child {
  border-bottom: 0;
}

.cr-legal__facts dt {
  color: var(--cr-blue);
  font-weight: 800;
}

.cr-legal__facts dd {
  margin: 0;
  color: var(--cr-muted);
  line-height: 1.55;
}

/* Formulaire */

.page-contact .content-item {
  max-width: none;
}

.page-contact .cr-contact-privacy {
  margin-top: 1.5rem !important;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--cr-cyan);
  border-radius: 0 0.65rem 0.65rem 0;
  background: rgba(223, 247, 249, 0.58);
  color: var(--cr-muted) !important;
  font-size: 0.92rem;
  line-height: 1.6;
}

.page-contact .cr-contact-privacy a {
  color: var(--cr-blue);
  font-weight: 700;
}

.page-contact form {
  margin-top: 2.5rem;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border: 1px solid var(--cr-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--cr-shadow);
  backdrop-filter: blur(12px);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--cr-navy);
  font-weight: 750;
  line-height: 1.35;
}

.form-input,
.form-select,
input,
textarea,
select {
  width: 100%;
  border: 1px solid #b9cbd8;
  border-radius: 0.65rem;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(11, 45, 77, 0.04);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
select {
  min-height: 3rem;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
}

textarea {
  min-height: 11rem;
  resize: vertical;
}

button[type="submit"],
.button-wrapper button {
  border-color: var(--cr-cyan);
  background: var(--cr-cyan);
  color: #ffffff;
  font-weight: 800;
}

/* Pied de page */

#footer {
  padding: 3rem 0 1.7rem;
  border: 0;
  background: #082640;
  color: rgba(255, 255, 255, 0.72);
}

.cr-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 2rem 4rem;
  max-width: 1240px;
}

#footer .cr-footer__brand p {
  max-width: 500px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.cr-footer__logo {
  width: 15.5rem;
  height: 3.6rem;
  background: transparent;
}

.cr-footer__logo .cr-brand-lockup {
  opacity: 0.92;
  filter: brightness(0) invert(1);
}

.cr-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(10rem, 1fr));
  align-content: start;
  gap: 1.5rem 2.25rem;
}

.cr-footer__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

#footer .cr-footer__heading {
  margin: 0 0 0.25rem;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

#footer .cr-footer__nav a,
#footer .cr-footer__nav a:visited {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.9rem;
  text-decoration: none;
}

#footer .cr-footer__nav a:hover,
#footer .cr-footer__nav a:focus-visible {
  color: #ffffff !important;
}

#footer .cr-footer__meta {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
}

/* Responsive */

@media (max-width: 1180px) {
  .navbar-brand {
    width: 15rem;
    height: 3.55rem;
  }

  .desktop-menu .navigation > li > a {
    padding-inline: 0.45rem;
    font-size: 0.78rem;
  }

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

  .cr-service-card {
    min-height: 270px;
  }
}

@media (max-width: 1080px) {
  .cr-atelier-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cr-atelier-hero__brand {
    width: min(100%, 42rem);
    justify-self: start;
  }
}

@media (max-width: 900px) {
  #header .navbar {
    min-height: 4.8rem;
  }

  .navbar-brand {
    width: 14rem;
    height: 3.4rem;
  }

  .mobile-container .cr-brand-lockup {
    width: 15rem;
    height: 4rem;
  }

  .cr-hero__grid,
  .cr-atelier-band__grid,
  .cr-prepare-grid {
    grid-template-columns: 1fr;
  }

  .cr-hero__visual {
    min-height: 390px;
  }

  .cr-hero::before {
    inset: 42% 0 0;
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000);
  }

  .page-service #body-wrapper::before,
  .page-contact #body-wrapper::before {
    inset: 38% 0 0;
    mask-image: linear-gradient(180deg, transparent, #000 24%, #000);
  }

  .cr-values__grid,
  .cr-atelier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cr-zone-grid {
    grid-template-columns: auto 1fr;
  }

  .cr-zone-grid .cr-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .cr-pro-service__method-grid {
    grid-template-columns: 1fr;
  }

  .cr-about__story-grid,
  .cr-about__values-grid,
  .cr-about__local-grid {
    grid-template-columns: 1fr;
  }

  .cr-about__local .cr-button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.98rem;
  }

  .cr-shell {
    width: min(100% - 1.25rem, 1240px);
  }

  .page-service #body-wrapper > .container > .content-item,
  .page-contact #body-wrapper > .container > .content-item {
    width: 100% !important;
    padding: 3.5rem 0.625rem 4.5rem !important;
  }

  .page-contact #body-wrapper > .container > .content-item {
    width: calc(100% - 1.25rem) !important;
    padding-inline: 0 !important;
  }

  .service-detail-page #body-wrapper > .container > .content-item {
    padding: 0 !important;
  }

  .page-service .content-item > h1,
  .page-contact .content-item > h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .page-service .content-item > p + p:not(:last-child) {
    padding: 1rem;
  }

  .page-contact form {
    margin-top: 2rem;
    padding: 1rem;
  }

  .cr-pro-service__hero {
    padding-block: 3.5rem 4rem;
  }

  .cr-pro-service__hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .cr-pro-service__grid {
    grid-template-columns: 1fr;
  }

  .cr-pro-service__markers {
    gap: 0.5rem;
  }

  .cr-about__hero {
    padding-block: 3.5rem 4rem;
  }

  .cr-about__hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .cr-legal__hero {
    padding-block: 3.5rem 4rem;
  }

  .cr-legal__hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .cr-legal__facts > div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .cr-about__timeline li,
  .cr-about__values-list li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .cr-hero {
    padding-top: 3.25rem;
  }

  .cr-atelier-hero {
    padding-block: 2.8rem 3.4rem;
  }

  .cr-hero h1,
  .cr-atelier-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .cr-atelier-hero__brand {
    padding: 0.8rem;
    border-radius: 1rem;
  }

  .cr-atelier-hero__markers {
    margin-top: 0.45rem;
  }

  .cr-hero__actions,
  .cr-hero__actions .cr-button {
    width: 100%;
  }

  .cr-service-grid,
  .cr-values__grid,
  .cr-atelier-grid,
  .cr-detail-grid {
    grid-template-columns: 1fr;
  }

  .cr-service-card {
    min-height: 0;
  }

  .cr-service-card__link {
    margin-top: 1rem;
  }

  .cr-hero__visual {
    min-height: 310px;
  }

  .cr-rack {
    right: 0;
    width: 86%;
  }

  .cr-console {
    width: 72%;
  }

  .cr-zone-grid {
    grid-template-columns: 1fr;
  }

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

  .cr-footer__nav {
    grid-template-columns: 1fr;
  }

  .cr-footer__meta {
    grid-column: 1;
  }
}

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