@font-face {
  font-family: "Satoshi";
  src:
    url("fonts/Satoshi-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src:
    url("fonts/Satoshi-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src:
    url("fonts/Satoshi-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src:
    url("fonts/Switzer-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src:
    url("fonts/Switzer-Semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src:
    url("fonts/Switzer-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src:
    url("fonts/CabinetGrotesk-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src:
    url("fonts/CabinetGrotesk-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src:
    url("fonts/CabinetGrotesk-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  /* Palette et dimensions globales : modifier ici pour ajuster l'identité visuelle. */
  --bg: hsl(202 55% 98.5%);
  --surface: #ffffff;
  --text: hsl(0 0% 5%);
  --muted: hsl(0 0% 22%);
  --heading: hsl(332 66% 51%);
  --line: hsl(332 66% 51%);
  --soft-line: hsl(332 40% 88%);
  --cta: hsl(332 66% 51%);
  --accent-green: hsl(96 43% 70%);
  --footer-bg: var(--heading);
  --footer-text: #ffffff;
  --footer-muted: #ffffff;
  --header-height: 76px;
  --content-width: 1320px;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background: var(--bg);
  color: var(--text);
  font-family: "Satoshi", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  color: inherit;
  font-weight: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  min-height: var(--header-height);
  align-items: start;
  justify-content: space-between;
  gap: 32px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: transparent;
  border-bottom: 0;
}

.is-scrolled .site-header,
.site-header:focus-within {
  background: var(--surface);
}

.brand {
  display: grid;
  width: max-content;
  gap: 5px;
  font-family: "Satoshi", Arial, Helvetica, sans-serif;
  line-height: 1;
}

.brand span {
  color: var(--heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  text-transform: lowercase;
}

.brand small {
  color: var(--heading);
  font-size: clamp(0.84rem, 1vw, 1rem);
  letter-spacing: 0;
  text-transform: lowercase;
}

.site-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 40px);
}

.site-nav {
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

#hamburger {
  display: none;
}

#menu {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.is-scrolled .site-nav,
.site-nav:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a.is-active {
  padding-bottom: 0.08em;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 20 L312 9' fill='none' stroke='%23b9d7a2' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.34em;
  color: var(--text);
}

.page-section {
  width: min(100%, var(--content-width));
  max-width: 100%;
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 72px) clamp(20px, 5vw, 72px);
}

.section-hero {
  background: var(--bg);
  box-shadow: 0 0 0 100vmax var(--bg);
  clip-path: inset(0 -100vmax);
}

.section-memo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: clamp(34px, 5vw, 68px);
  align-items: start;
  background: var(--surface);
}

.section-memo::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 70vw;
  max-width: calc(var(--content-width) - clamp(40px, 10vw, 144px));
  height: 1px;
  background: var(--soft-line);
  content: "";
  transform: translateX(50%);
}

.section-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: clamp(34px, 4.2vw, 62px);
  align-items: start;
  padding-top: 0;
  padding-bottom: clamp(44px, 6vw, 80px);
}

.section-team {
  display: grid;
  grid-template-columns: minmax(640px, 1.15fr) minmax(480px, 0.85fr);
  gap: clamp(28px, 4vw, 48px);
  align-content: center;
  align-items: stretch;
  background: var(--surface);
  min-height: auto;
  padding-top: clamp(44px, 6vw, 84px);
}

.section-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  background: var(--surface);
}

.section-about {
  display: grid;
  align-content: center;
  background: var(--surface);
  min-height: auto;
  padding-bottom: clamp(20px, 3vw, 44px);
}

.hero-copy,
.memo-copy,
.proof-copy,
.team-copy {
  min-width: 0;
  max-width: 760px;
}

.memo-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 620px;
}

.section-hero h1 {
  grid-column: 1 / -1;
  margin-bottom: 0;
  max-width: none;
  text-align: center;
}

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

.hero-visual {
  /* Composition par calques : chaque image enfant est positionnée via --layer-transform. */
  position: relative;
  width: min(112vw, calc((100svh - var(--header-height) - 70px) * 1.334), 1680px);
  min-width: 0;
  aspect-ratio: 2732 / 2048;
  margin: clamp(4px, 1vw, 18px) auto 0;
  overflow: visible;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  animation: layer-intro 640ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
  object-fit: contain;
  pointer-events: none;
  transform: var(--layer-transform);
  transform-origin: center;
  user-select: none;
}

#fleche {
  /* Calques du premier visuel. Les délais créent l'apparition progressive au chargement. */
  z-index: 0;
  --layer-transform: translate(0, -5%) scale(1.08);
  animation-delay: 780ms;
}

#papiers {
  z-index: 1;
  --layer-transform: translate(-15%, 2%) scale(1.13);
  animation-delay: 120ms;
}

#poster {
  z-index: 3;
  --layer-transform: translate(-2%, -5%) scale(1.07);
  animation-delay: 1040ms;
}

#perso2 {
  z-index: 4;
  --layer-transform: translate(9%, -4%) scale(1.06);
  animation-delay: 1300ms;
}

#client {
  z-index: 5;
  --layer-transform: translate(9%, -4%) scale(1.06);
  animation-delay: 1560ms;
}

#bulle {
  z-index: 7;
  --layer-transform: translate(-13%, 0) scale(1.02);
  animation-delay: 460ms;
}

@keyframes layer-intro {
  from {
    opacity: 0;
    transform: var(--layer-transform) translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: var(--layer-transform);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual img {
    animation: none;
    opacity: 1;
  }
}

.section-hero .hero-copy {
  display: grid;
  width: min(100%, 1120px);
  max-width: 1120px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  column-gap: clamp(34px, 6vw, 82px);
  row-gap: clamp(4px, 0.8vw, 10px);
  align-items: start;
  margin: 0 auto;
}

.section-hero .audience-kicker {
  grid-column: 1 / -1;
}

.section-hero .hero-subtitle {
  grid-column: 1;
  grid-row: 2 / span 3;
}

.section-hero .hero-copy p:not(.audience-kicker) {
  grid-column: 2;
  margin-bottom: 0;
}

.section-hero .button {
  grid-column: 2;
  justify-self: center;
}

.circle-word {
  position: relative;
  display: inline-block;
  padding: 0 0.12em;
  z-index: 0;
}

.circle-word::after {
  position: absolute;
  z-index: -1;
  inset: -0.24em -0.34em -0.2em;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  content: "";
  transform: translateY(0.08em) rotate(-3deg);
  pointer-events: none;
}

.section-memo .circle-word::after {
  inset: -0.3em -0.48em -0.25em;
  transform: translateY(0.08em) rotate(-2deg);
}

.sketch-underline {
  position: relative;
  display: inline;
  padding-bottom: 0.08em;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 20 L312 9' fill='none' stroke='%23b9d7a2' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.34em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.sketch-underline::after {
  content: none;
}

.hero-subtitle {
  max-width: none;
  margin-bottom: clamp(18px, 2.3vw, 28px);
  font-size: clamp(2.1rem, 3.15vw, 3.3rem);
  line-height: 1.02;
}

.audience-kicker {
  margin-bottom: 0;
  color: var(--heading);
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.team-profile {
  display: grid;
  gap: 22px;
}

.team-profile p {
  max-width: 58ch;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--heading);
  font-family: "Cabinet Grotesk", Arial, Helvetica, sans-serif;
  margin-bottom: clamp(22px, 3vw, 34px);
  font-size: clamp(2.25rem, 4.2vw, 4.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-memo h2,
.section-proof h2,
.section-team h2,
.section-about h2 {
  max-width: 920px;
  font-size: clamp(1.95rem, 3.3vw, 3.35rem);
}

.benefit-list,
.content-types ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 2px solid var(--soft-line);
  background: var(--surface);
}

.benefit-icon {
  display: grid;
  width: 36px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--heading);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.benefit-list strong,
.benefit-list small {
  display: block;
}

.benefit-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.benefit-list li,
.content-types li {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.45;
}

.content-types {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  margin-top: 0;
  padding: 18px;
  border: 2px solid var(--soft-line);
  background: var(--surface);
}

.content-types h3 {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
}

.content-types ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-types li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  white-space: nowrap;
}

.content-types li::before {
  position: absolute;
  top: 0.28em;
  left: 0;
  width: 9px;
  height: 12px;
  border: 1.5px solid var(--accent-green);
  border-radius: 1px;
  background:
    linear-gradient(var(--accent-green) 0 0) 2.5px 3.5px / 4.5px 1.2px no-repeat,
    linear-gradient(var(--accent-green) 0 0) 2.5px 6.8px / 4.5px 1.2px no-repeat;
  content: "";
}

.proof-image {
  aspect-ratio: 4 / 5;
  min-height: 420px;
}

.memo-goodie {
  /* Encart fiche PDP : colonne texte à gauche, aperçu de la fiche à droite. */
  grid-column: 1 / -1;
  margin-top: clamp(12px, 2vw, 28px);
  display: grid;
  align-self: center;
  grid-template-columns: minmax(0, 54ch) minmax(320px, 1fr);
  max-width: 100%;
  overflow: visible;
  justify-content: start;
  align-items: start;
  column-gap: clamp(20px, 3vw, 36px);
  row-gap: 16px;
  padding: 18px 22px;
  border: 2px solid var(--heading);
  background: var(--heading);
  color: #ffffff;
}

.memo-goodie-copy {
  grid-column: 1;
  display: grid;
  gap: 16px;
  align-content: start;
  max-width: 54ch;
}

.memo-goodie h3 {
  max-width: 54ch;
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.memo-goodie h3 strong {
  font-weight: 800;
}

.memo-goodie p {
  max-width: 54ch;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.28;
}

.memo-goodie-action {
  grid-column: 2;
  display: grid;
  gap: 0;
  justify-items: stretch;
  align-self: start;
}

.goodie-preview {
  position: relative;
  display: grid;
  width: min(100%, 400px);
  min-width: 0;
  justify-self: stretch;
  align-self: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0;
  margin-bottom: 0;
  overflow: visible;
  border: 0;
  aspect-ratio: auto;
  min-height: 0;
  padding: 8px 12px 18px;
  filter: none;
  perspective: 900px;
}

.goodie-preview::after {
  position: absolute;
  right: 8%;
  bottom: 4px;
  left: 8%;
  z-index: 0;
  height: 18px;
  border-radius: 50%;
  background: rgb(0 0 0 / 0.18);
  filter: blur(10px);
  box-shadow: 8px 18px 22px rgb(0 0 0 / 0.16);
  content: "";
}

.memo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
}

.memo-goodie .button {
  min-width: 0;
  margin-top: 0;
  padding: 10px 18px;
  text-align: center;
  white-space: nowrap;
  line-height: 1.15;
}

.memo-goodie .button-outline {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}

.memo-goodie .button-secondary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--heading);
}

.memo-cta {
  justify-self: start;
  margin-top: clamp(14px, 2vw, 24px);
}

.team-profile h2 {
  margin-bottom: 0;
}

.team-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 18px;
  border: 2px solid var(--cta);
  border-radius: 32px;
  background: var(--cta);
  color: var(--surface);
  font-weight: 700;
}

.button-secondary {
  background: var(--cta);
  color: var(--surface);
}

.image-placeholder {
  display: grid;
  width: 90%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 0;
  place-items: center;
  /*border: 2px solid var(--line);*/
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  overflow: hidden;
  text-align: center;
}

.image-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.goodie-preview img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  /*border: 2px solid #ffffff;*/
  object-fit: contain;
  filter: drop-shadow(0 12px 12px rgb(0 0 0 / 0.14));
}

.book-page-left {
  justify-self: end;
  border-right: 0;
  transform: rotateY(7deg);
  transform-origin: right bottom;
}

.book-page-right {
  margin-left: 0px;
  border-left: 0;
  justify-self: start;
  transform: rotateY(-7deg);
  transform-origin: left bottom;
}

.hero-image {
  aspect-ratio: 16 / 9;
  min-height: 360px;
}

.memo-image {
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 72%);
  justify-self: center;
  border: 0;
  background: transparent;
  aspect-ratio: 1559 / 1235;
  min-height: 0;
  transform: none;
}

.signature-visual {
  width: min(100%, 420px);
  margin: auto 0 0;
  align-self: start;
}

.signature-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(-18px, -1.6vw, -8px) 0 0;
  padding: 0;
  list-style: none;
}

.team-list figure {
  display: grid;
  align-content: start;
  justify-items: center;
  grid-template-rows: 112px auto;
  gap: 4px;
  margin-bottom: 0;
}

.logo-link {
  display: grid;
  width: 100%;
  height: 112px;
  justify-self: center;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

.team-list figure span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.team-list img {
  display: block;
  width: auto;
  max-width: min(92%, 180px);
  max-height: 92px;
  object-fit: contain;
}

.team-list img.logo-large {
  max-width: min(100%, 220px);
  max-height: 106px;
}

.team-list img.logo-small {
  max-width: min(72%, 140px);
  max-height: 82px;
}

.team-list img.logo-claw {
  max-width: min(64%, 124px);
  max-height: 74px;
}

.team-list figcaption {
  margin-top: 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  line-height: 1.25;
  text-align: center;
}

.contact-form {
  display: grid;
  width: min(100%, 720px);
  gap: 22px;
  justify-self: end;
  padding: 24px;
  border: 2px solid var(--soft-line);
  background: var(--surface);
}

.contact-form .button {
  min-height: 42px;
  margin-top: 4px;
  margin-bottom: -10px;
  padding: 0 16px;
  font-size: clamp(1.08rem, 1.2vw, 1.22rem);
}

label {
  display: grid;
  gap: 3px;
  color: var(--text);
  font-weight: 700;
}

label small {
  margin-top: -1px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.35;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

input,
textarea {
  width: 100%;
  margin-top: 3px;
  border: 2px solid var(--soft-line);
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  padding: 12px;
}

textarea {
  resize: vertical;
}

.form-note,
.legal-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-status {
  margin-top: -10px;
  color: var(--heading);
  font-weight: 700;
}

.form-status a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin-top: -14px;
}

.legal-note {
  margin-top: -18px;
}

.legal-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 32px clamp(20px, 5vw, 72px);
  background: var(--footer-bg);
  color: var(--footer-text);
}

.site-footer article {
  max-width: 760px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--footer-muted);
  font-size: 0.92rem;
}

.footer-links {
  color: var(--footer-muted);
  font-size: 0.92rem;
  text-align: right;
}

.site-footer a,
.site-footer p,
.site-footer strong {
  color: #ffffff;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--footer-text);
}

/* Page mentions légales : contenu volontairement simple à mettre à jour. */
.legal-page {
  background: var(--surface);
}

.legal-page .site-header {
  background: var(--surface);
}

.legal-main {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.legal-content {
  display: grid;
  gap: 28px;
}

.legal-content h1 {
  margin-bottom: 0;
  color: var(--heading);
  font-family: "Cabinet Grotesk", Arial, Helvetica, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.legal-content section {
  display: grid;
  gap: 10px;
}

.legal-content h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-content p {
  max-width: 70ch;
  margin-bottom: 0;
}

.legal-updated {
  padding-top: 12px;
  border-top: 1px solid var(--soft-line);
}

@media (max-width: 980px) {
  body {
    padding-top: 68px;
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 68px;
    padding: 10px 18px;
  }

  .site-nav {
    --hamburger-size: 24px;
    --slice-height: 2px;
    position: relative;
    display: block;
    width: auto;
    color: var(--muted);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .is-scrolled .site-nav,
  .site-nav:focus-within {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  #hamburger {
    position: relative;
    display: block;
    width: var(--hamburger-size);
    height: var(--hamburger-size);
    padding: 10px;
    box-sizing: content-box;
    border: 2px solid var(--soft-line);
    border-radius: 32px;
    background: var(--surface);
    color: var(--heading);
    cursor: pointer;
    font: inherit;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  #hamburger .slice {
    display: block;
    position: absolute;
    left: 10px;
    width: var(--hamburger-size);
    height: var(--slice-height);
    border-radius: var(--slice-height);
    background: currentColor;
    transition:
      opacity 180ms ease,
      top 180ms ease,
      transform 180ms ease;
  }

  #hamburger .slice:nth-child(1) {
    top: 14px;
  }

  #hamburger .slice:nth-child(2) {
    top: 21px;
  }

  #hamburger .slice:nth-child(3) {
    top: 28px;
  }

  #menu {
    visibility: hidden;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    z-index: 20;
    display: grid;
    box-sizing: border-box;
    width: min(280px, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    padding: 8px;
    border: 0;
    background: var(--bg);
    color: var(--text);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .menu-open #menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-open #hamburger .slice:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-open #hamburger .slice:nth-child(2) {
    opacity: 0;
  }

  .menu-open #hamburger .slice:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  #menu a {
    display: grid;
    min-height: 40px;
    align-items: center;
    justify-content: start;
    padding: 8px 10px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: left;
  }

  #menu a.is-active {
    background-position: 10px 100%;
    background-size: calc(100% - 20px) 0.34em;
  }

  .page-section,
  .section-hero,
  .section-memo,
  .section-proof,
  .section-team {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .section-hero h1 {
    text-align: left;
  }

  .memo-image,
  .hero-image,
  .proof-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    justify-self: center;
  }

  .memo-image {
    width: min(100%, 520px);
    border: 0;
    background: transparent;
    aspect-ratio: 1559 / 1235;
    justify-self: center;
    transform: none;
  }

  .memo-copy,
  .content-types {
    grid-column: auto;
    grid-row: auto;
  }

  .content-types ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .goodie-preview {
    width: min(100%, 320px);
    max-width: 100%;
    min-width: 0;
    height: auto;
    justify-self: center;
  }

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

  .memo-goodie {
    grid-template-columns: 1fr;
  }

  .memo-goodie-copy,
  .memo-goodie-action,
  .memo-goodie .button {
    grid-column: auto;
    grid-row: auto;
  }

  .memo-goodie .button {
    width: min(100%, 296px);
    justify-self: start;
    white-space: normal;
  }

  .memo-goodie h3 {
    white-space: normal;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    text-align: left;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .site-header {
    display: flex;
    min-height: var(--header-height);
    padding: 14px clamp(20px, 5vw, 72px);
  }

  .site-nav {
    display: flex;
    justify-content: flex-end;
  }

  #hamburger {
    display: none;
  }

  #menu {
    visibility: visible;
    position: static;
    display: flex;
    flex-wrap: wrap;
    width: auto;
    gap: clamp(14px, 3vw, 40px);
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  #menu a {
    padding: 0;
  }
}

@media (max-width: 680px) {
  .footer-links {
    justify-content: flex-start;
  }

  h1,
  h2 {
    font-size: clamp(1.95rem, 9.5vw, 2.75rem);
  }

  .section-hero {
    row-gap: 24px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .section-hero .hero-copy {
    width: min(100%, calc(100vw - 28px));
    max-width: none;
    grid-template-columns: 1fr;
    margin-right: auto;
    margin-left: auto;
  }

  .section-hero .audience-kicker,
  .section-hero .hero-subtitle,
  .section-hero .hero-copy p:not(.audience-kicker),
  .section-hero .button {
    grid-column: 1;
    grid-row: auto;
  }

  .section-hero .button {
    justify-self: start;
  }

  .section-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    aspect-ratio: 1 / 1.34;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
  }

  #fleche {
    --layer-transform: translate(-17%, 3%) scale(1.23);
  }

  #papiers {
    --layer-transform: translate(1%, -16%) scale(1.12);
  }

  #poster {
    --layer-transform: translate(-18%, 16%) scale(1.23);
  }

  #perso2 {
    --layer-transform: translate(-32%, 10%) scale(1.48);
  }

  #client {
    --layer-transform: translate(-32%, 10%) scale(1.48);
  }

  #bulle {
    --layer-transform: translate(0, -18%) scale(1.12);
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .image-placeholder {
    width: min(100%, 100%);
    max-width: 100%;
    height: auto;
    justify-self: center;
  }

  .hero-image,
  .memo-image,
  .proof-image {
    min-height: 0;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }

  .image-placeholder img,
  .signature-visual img,
  .team-list img {
    max-width: 100%;
  }

  .signature-visual {
    width: min(100%, 340px);
    margin-right: auto;
    margin-left: auto;
  }

  .proof-image {
    aspect-ratio: 4 / 5;
  }

  .content-types ul {
    grid-template-columns: 1fr;
  }

  .goodie-preview {
    width: min(100%, 300px);
  }

  .contact-form {
    padding: 18px;
  }

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

  .team-list figure {
    grid-template-rows: 138px auto;
  }

  .logo-link {
    height: 138px;
    place-items: end center;
  }

  .team-list figure span {
    place-items: end center;
  }

  .team-list img {
    max-width: 100%;
    max-height: 126px;
  }

  .team-list img.logo-large {
    max-width: 100%;
    max-height: 132px;
  }

  .team-list img.logo-small {
    max-width: 88%;
    max-height: 118px;
  }

  .team-list img.logo-claw {
    max-width: 78%;
    max-height: 108px;
  }
}
