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

:root {
  --black: #111111;
  --text: #111111;
  --muted: #333333;
  --quiet: rgba(0, 0, 0, 0.82);
  --link: #151515;
  --paper: #ffffff;
  --line: rgba(0, 0, 0, 0.58);
  --scrollbar-thumb: rgba(0, 0, 0, 0.34);
  --scrollbar-track: transparent;
  --serif: "Cormorant Garamond", serif;
  --sans: futura-pt, sans-serif;
  --measure: 720px;
  --page-side: clamp(24px, 8vw, 128px);
  --label-size: clamp(0.62rem, 0.68vw, 0.68rem);
  --label-spacing: 0.3em;
  --label-line-height: 1.35;
  --mobile-info-size: clamp(0.66rem, 3.4vw, 0.82rem);
  --modal-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --modal-open-duration: 0.96s;
  --modal-close-duration: 0.92s;
}

html {
  min-height: 100%;
  color: var(--text);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.58;
  scroll-behavior: auto;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  cursor: auto;
  text-rendering: geometricPrecision;
}

.customCursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: none;
  }

  .customCursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    mix-blend-mode: difference;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0) scale(var(--cursor-scale, 1));
    transition:
      opacity 0.22s ease,
      width 0.42s cubic-bezier(0.19, 1, 0.22, 1),
      height 0.42s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, opacity;
  }

  .customCursor.is-visible {
    opacity: 1;
  }

  .customCursor.is-hovering {
    width: 18px;
    height: 18px;
  }
}

*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  border-radius: 0;
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 0;
}

*::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 0;
  background-clip: border-box;
}

*::-webkit-scrollbar-track-piece,
*::-webkit-scrollbar-corner,
*::-webkit-scrollbar-button {
  border-radius: 0;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  max-width: 1120px;
  color: var(--black);
  font-size: clamp(2.05rem, 4.85vw, 4.35rem);
  letter-spacing: clamp(0.14em, 1vw, 0.26em);
  line-height: 1.02;
}

#christian h1,
#contact .box h1 {
  letter-spacing: -0.085em;
}

h2 {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto clamp(24px, 4.2vh, 44px);
  color: var(--black);
  font-size: clamp(1.08rem, 2.25vw, 2.35rem);
  letter-spacing: clamp(0.28em, 2.55vw, 0.68em);
  line-height: 1.15;
}

h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-top: clamp(16px, 2.7vh, 28px);
  background: var(--line);
}

::selection {
  background: var(--black);
  color: var(--paper);
}

.transition {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: grid;
  place-items: center;
  background: var(--paper);
  pointer-events: none;
}

.transition.is-active {
  animation: transition-fallback 3.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.loaderLine {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.28);
  transform: scaleX(0);
  transform-origin: left center;
  animation: loader-line-in 1.035s ease both;
  will-change: transform;
}

.loader {
  color: var(--black);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.74rem, 1.65vw, 1rem);
  letter-spacing: clamp(0.42em, 1.15vw, 0.72em);
  opacity: 0;
  text-transform: uppercase;
  white-space: nowrap;
  animation: loader-presence 2.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity;
}

@keyframes loader-presence {
  0% {
    opacity: 0;
  }

  32% {
    opacity: 0.82;
  }

  40% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loader-line-in {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader {
    animation: none;
    opacity: 0.82;
  }

  .loaderLine {
    animation: none;
    transform: scaleX(1);
  }
}

@keyframes transition-fallback {
  0% {
    opacity: 1;
    visibility: visible;
  }

  86% {
    opacity: 1;
    visibility: visible;
  }

  99% {
    transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    transform: translateY(-100%);
    opacity: 1;
    visibility: hidden;
  }
}

main {
  position: relative;
}

.home,
.page {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.home {
  padding: 0 var(--page-side);
  background: var(--paper);
}

.box {
  position: absolute;
  left: var(--page-side);
  right: var(--page-side);
  top: 50%;
  transform: translateY(-50%);
}

.box .tagline {
  display: inline-block;
  margin-top: clamp(26px, 5vh, 54px);
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.3;
}

#christian .box,
#contact .box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(18px, 2.6vw, 38px);
  width: auto;
  max-width: calc(100vw - (var(--page-side) * 2));
}

#christian .box .tagline,
#contact .box .tagline {
  display: inline-block;
  margin-top: 0;
  font-family: var(--sans);
  font-size: var(--label-size);
  font-weight: 300;
  color: var(--quiet);
  letter-spacing: var(--label-spacing);
  line-height: var(--label-line-height);
  text-transform: uppercase;
  white-space: normal;
}

.box a {
  position: relative;
  margin-right: 22px;
}

#contact .box .tagline a {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  overflow-wrap: anywhere;
  text-transform: inherit;
}

#contact .contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.34em;
}

#christian .box .tagline span + span::before {
  content: "|";
  margin: 0 0.85em;
  pointer-events: none;
}

#contact .box .tagline .separator {
  margin: 0 0.85em;
}

.box a::after,
.nav-collapse a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  height: 1px;
  background: currentColor;
  opacity: 0.28;
  transform: scaleX(0);
  transform-origin: right;
  transition:
    opacity 0.55s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.box a,
.nav-collapse a {
  transition:
    color 0.55s ease,
    opacity 0.55s ease;
}

.box a:hover,
.box a:focus-visible,
.nav-collapse a:hover,
.nav-collapse a:focus-visible {
  color: var(--black);
  opacity: 1;
}

.box a:hover::after,
.box a:focus-visible::after,
.nav-collapse a:hover::after,
.nav-collapse a:focus-visible::after {
  opacity: 0.72;
  transform: scaleX(1);
  transform-origin: left;
}

.page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7.6vh, 82px) var(--page-side);
  overflow: hidden;
}

.js-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.82s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.text {
  width: min(100%, var(--measure));
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(0.82rem, 1.02vw, 0.98rem);
  font-weight: 300;
  line-height: 1.36;
  text-align: left;
}

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

.copy-list li + li {
  margin-top: 1em;
}

#infos {
  min-height: 100vh;
  min-height: 100svh;
}

#infos .text {
  display: grid;
  grid-template-columns: clamp(168px, 16.8vw, 224px) max-content;
  gap: clamp(40px, 6.5vw, 96px);
  align-items: center;
  justify-content: center;
  width: min(100%, 1060px);
}

#infos picture {
  position: relative;
  display: block;
  width: clamp(168px, 16.8vw, 224px);
}

#infos img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.92) brightness(1.04);
  opacity: 0.94;
}

#infos .info-list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  font-family: var(--sans);
  font-size: var(--label-size);
  color: var(--quiet);
  letter-spacing: var(--label-spacing);
  line-height: var(--label-line-height);
  overflow-wrap: anywhere;
  white-space: normal;
}

#infos .mobile-break {
  display: none;
}

#pourQui .text {
  margin-left: clamp(0px, 18vw, 30%);
}

#monProfil .text {
  width: min(100%, 820px);
  margin-left: clamp(0px, 24vw, 36%);
}

#maPratique .text {
  margin-left: clamp(0px, 18vw, 30%);
}

#cabinets .text {
  width: min(100%, 820px);
  margin-left: clamp(0px, 24vw, 36%);
}

.links {
  width: 100%;
  padding-top: clamp(18px, 3.6vh, 36px);
}

#links,
#google {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(18px, 4vw, 52px);
  z-index: 2;
}

.link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--link);
  font-family: var(--sans);
  font-size: var(--label-size);
  font-style: normal;
  font-weight: 300;
  letter-spacing: var(--label-spacing);
  line-height: var(--label-line-height);
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  transition:
    color 0.55s ease,
    opacity 0.55s ease;
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.link:hover,
.link:focus,
.link:focus-visible,
.link:active {
  color: var(--black);
  opacity: 1;
}

.link:hover::after,
.link:focus::after,
.link:focus-visible::after,
.link:active::after {
  transform: scaleX(1);
  transform-origin: left;
}

#cabinets img {
  position: relative;
  width: 14px;
  margin-left: 8px;
  opacity: 0.38;
  filter: grayscale(1);
}

header {
  position: fixed;
  right: clamp(16px, 3.2vw, 46px);
  top: 50%;
  z-index: 9;
  width: 270px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  font-family: var(--sans);
  font-size: var(--label-size);
  font-weight: 300;
  letter-spacing: var(--label-spacing);
  line-height: 1;
  text-transform: uppercase;
}

header.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.navToggle {
  position: fixed;
  top: 12px;
  right: 20px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: flex-end;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}

.navToggle:focus:not(:focus-visible) {
  outline: 0;
}

.navToggle:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.navToggle .icon {
  position: relative;
  display: block;
  width: 34px;
  height: 1px;
  background: transparent;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.navToggle .icon::before,
.navToggle .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 34px;
  height: 1px;
  background: currentColor;
  transition:
    top 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.navToggle .icon::before {
  top: -4px;
  width: 24px;
}

.navToggle .icon::after {
  top: 4px;
}

.navToggle:hover .icon::before,
.navToggle:focus-visible .icon::before {
  top: -12px;
  width: 34px;
}

.navToggle:hover .icon::after,
.navToggle:focus-visible .icon::after {
  top: 12px;
}

.navToggle.open .icon {
  transform: rotate(180deg);
}

.navToggle.open .icon::before {
  top: 0;
  width: 34px;
  transform: rotate(45deg);
}

.navToggle.open .icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.navToggle.open:hover .icon::before,
.navToggle.open:focus-visible .icon::before,
.navToggle.open:hover .icon::after,
.navToggle.open:focus-visible .icon::after {
  top: 0;
}

.nav-collapse,
.nav-collapse ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

.nav-collapse li {
  width: 100%;
  padding: 7px 0;
}

.nav-collapse a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  color: var(--link);
  opacity: 0.42;
}

.nav-collapse .active a {
  color: var(--black);
  opacity: 0.76;
}

.sign {
  position: absolute;
  left: var(--page-side);
  bottom: clamp(34px, 7vh, 70px);
  z-index: 2;
  width: 74px;
  height: 74px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.78);
  font-family: "LemonMilk";
  font-size: 8px;
  line-height: 1.05;
  text-align: left;
  transition:
    opacity 0.3s ease,
    filter 0.3s ease,
    background-color 0.3s ease;
}

.sign a {
  color: var(--black);
}

html:not(.hero-open) .navToggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -10px, 0);
}

html.hero-open .navToggle {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.72s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear;
}

.sign:hover,
.sign:focus-within {
  filter: invert(1);
}

#contact {
  background: var(--paper);
  overflow: hidden;
  transition: background-color 1.4s ease;
}

#contact.is-warm {
  background: #f8f8f6;
}

#contact .box h1 {
  white-space: normal;
}

#contact .sign {
  left: auto;
  right: var(--page-side);
  bottom: clamp(28px, 6vh, 64px);
  width: auto;
  height: auto;
  padding: 10px 11px;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
  opacity: 1;
}

#contact .sign a {
  color: var(--black);
  transition: color 0.3s ease;
}

#contact .sign:hover,
#contact .sign:focus-within {
  filter: none;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0.92;
}

#contact .sign:hover a,
#contact .sign:focus-within a {
  color: #ffffff;
}

.modalLayer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.74);
  -webkit-backdrop-filter: blur(22px) saturate(1.04);
  backdrop-filter: blur(22px) saturate(1.04);
  overflow: hidden;
  opacity: 1;
  transition:
    opacity var(--modal-open-duration) var(--modal-ease),
    background-color var(--modal-open-duration) var(--modal-ease),
    backdrop-filter var(--modal-open-duration) var(--modal-ease),
    -webkit-backdrop-filter var(--modal-open-duration) var(--modal-ease);
}

.modalLayer[hidden] {
  display: none;
}

.modalLayer.is-opening,
.modalLayer.is-closing {
  background: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(0) saturate(1);
  backdrop-filter: blur(0) saturate(1);
  opacity: 0;
}

.modalLayer.is-closing {
  transition:
    opacity 0.54s var(--modal-ease) 0.32s,
    background-color 0.54s var(--modal-ease) 0.32s,
    backdrop-filter 0.54s var(--modal-ease) 0.32s,
    -webkit-backdrop-filter 0.54s var(--modal-ease) 0.32s;
}

.modalPanel {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: none;
  overflow-y: auto;
  padding: clamp(74px, 10vh, 112px) max(var(--page-side), calc((100vw - 780px) / 2)) clamp(52px, 8vh, 88px);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  font-size: clamp(0.82rem, 1.02vw, 0.98rem);
  line-height: 1.36;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 0.78s ease,
    filter var(--modal-open-duration) var(--modal-ease),
    transform var(--modal-open-duration) var(--modal-ease);
}

.modalLayer.is-opening .modalPanel,
.modalLayer.is-closing .modalPanel {
  opacity: 0;
  filter: blur(20px);
  transform: translateY(58px) scale(0.968);
}

.modalLayer.is-closing .modalPanel {
  filter: blur(10px);
  transform: translateY(26px) scale(0.988);
  transition-duration:
    0.84s,
    var(--modal-close-duration),
    var(--modal-close-duration);
}

.modalPanel h2 {
  width: 100%;
  margin-bottom: clamp(24px, 4vh, 42px);
}

.modalClose {
  position: fixed;
  top: clamp(18px, 4vw, 34px);
  left: clamp(18px, 4vw, 34px);
  z-index: 2;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  outline: 0;
  pointer-events: auto;
  touch-action: manipulation;
  transform: rotate(0deg);
  transition:
    opacity 0.6s ease,
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.modalClose:focus {
  outline: 0;
}

.modalClose:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.modalClose.is-focus-suppressed:focus-visible {
  outline: 0;
}

.modalClose:hover,
.modalClose.is-hovering {
  opacity: 0.72;
  transform: rotate(90deg);
}

.modalClose::before,
.modalClose::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 1px;
  background: currentColor;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.modalClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modalClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modalClose:hover::before,
.modalClose.is-hovering::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.modalClose:hover::after,
.modalClose.is-hovering::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.seoBody {
  min-height: 100vh;
  background: var(--paper);
}

.seoShell {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) var(--page-side) clamp(52px, 8vw, 96px);
}

.seoTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(68px, 12vw, 132px);
  font-family: var(--sans);
  font-size: var(--label-size);
  font-weight: 300;
  letter-spacing: var(--label-spacing);
  line-height: var(--label-line-height);
  text-transform: uppercase;
}

.seoTop a,
.seoFoot a,
.seoRelated a {
  position: relative;
}

.seoTop a::after,
.seoFoot a::after,
.seoRelated a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.seoTop a:hover::after,
.seoTop a:focus-visible::after,
.seoFoot a:hover::after,
.seoFoot a:focus-visible::after,
.seoRelated a:hover::after,
.seoRelated a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.seoNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  text-align: right;
}

.seoArticle {
  width: min(100%, 760px);
  margin: 0 auto;
}

.seoArticle h1 {
  max-width: 860px;
  margin-bottom: clamp(28px, 5vw, 56px);
  font-size: clamp(1.9rem, 5vw, 4.1rem);
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.seoLead {
  margin-bottom: clamp(34px, 6vw, 68px);
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.34;
}

.seoArticle h2 {
  width: 100%;
  margin: clamp(42px, 7vw, 78px) 0 22px;
  font-size: clamp(1.02rem, 2vw, 1.54rem);
  letter-spacing: 0.16em;
}

.seoArticle p,
.seoArticle li {
  font-size: clamp(0.92rem, 1.08vw, 1rem);
  line-height: 1.5;
}

.seoArticle p + p {
  margin-top: 1em;
}

.seoArticle ul {
  margin: 0;
  padding-left: 1.1em;
}

.seoArticle li + li {
  margin-top: 0.7em;
}

.seoRelated {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: clamp(42px, 7vw, 78px);
  font-family: var(--sans);
  font-size: var(--label-size);
  letter-spacing: var(--label-spacing);
  line-height: var(--label-line-height);
  text-transform: uppercase;
}

.seoFoot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 28px;
  margin-top: clamp(68px, 12vw, 132px);
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  font-family: var(--sans);
  font-size: var(--label-size);
  letter-spacing: var(--label-spacing);
  line-height: var(--label-line-height);
  text-transform: uppercase;
}

@media (max-width: 1160px) {
  h1 {
    font-size: clamp(1.95rem, 5vw, 3.7rem);
    letter-spacing: clamp(0.11em, 0.75vw, 0.18em);
  }

  header {
    width: 220px;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 17px;
    font-weight: 400;
  }

  body {
    color: var(--black);
  }

  h1 {
    font-size: clamp(2rem, 11vw, 4rem);
    letter-spacing: 0.1em;
    overflow-wrap: anywhere;
  }

  h2 {
    margin-bottom: 46px;
    font-size: clamp(1.55rem, 8vw, 3rem);
    letter-spacing: 0.14em;
    overflow-wrap: anywhere;
  }

  header {
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 130;
    display: block;
    width: 76px;
    height: 76px;
    font-size: 1rem;
    letter-spacing: 0.24em;
    line-height: 1.15;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navToggle {
    display: flex;
    z-index: 140;
    touch-action: manipulation;
  }

  .nav-collapse {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    padding: 72px 24px;
    background: rgba(242, 242, 240, 0.94);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -3%, 0);
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-collapse.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .nav-collapse ul {
    width: min(100%, 320px);
    text-align: right;
  }

  .nav-collapse li {
    padding: 8px 0;
  }

  .nav-collapse a {
    color: var(--black);
    font-size: clamp(1rem, 5.4vw, 1.55rem);
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.9;
  }

  .home,
  .page {
    padding-left: 24px;
    padding-right: 24px;
  }

  .box {
    left: 24px;
    right: 24px;
  }

  .page {
    height: auto;
    min-height: 100svh;
    max-height: none;
    padding-top: 64px;
    padding-bottom: 64px;
    overflow: visible;
  }

  .text {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .text {
    color: var(--black);
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.48;
  }

  .copy-list,
  .copy-list li {
    color: var(--black);
    font-weight: 400;
  }

  #infos .text {
    grid-template-columns: minmax(133px, 154px) max-content;
    gap: 28px;
  }

  #infos picture {
    width: 154px;
  }

  #infos img {
    width: 100%;
  }

  #pourQui .text,
  #monProfil .text,
  #maPratique .text,
  #cabinets .text {
    margin-left: 0;
  }

  #links,
  #google {
    flex-direction: column;
    gap: 16px;
  }

  .link {
    color: var(--black);
    width: fit-content;
    max-width: 100%;
    min-height: 44px;
    font-size: var(--mobile-info-size);
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1.45;
    opacity: 0.92;
    touch-action: manipulation;
  }

  #christian .box .tagline,
  #contact .box .tagline,
  #infos .info-list,
  .seoTop,
  .seoRelated,
  .seoFoot {
    color: var(--black);
    font-weight: 400;
  }

  .sign {
    left: 24px;
    width: 58px;
    height: 58px;
    font-size: 6px;
  }

  .seoShell {
    padding-right: 24px;
    padding-left: 24px;
  }

  .seoTop,
  .seoFoot {
    align-items: flex-start;
    flex-direction: column;
  }

  .seoNav {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(1.55rem, 8.8vw, 3.1rem);
    letter-spacing: 0.08em;
    overflow-wrap: normal;
  }

  #christian h1,
  #contact .box h1 {
    font-size: clamp(1.78rem, 9.8vw, 3.28rem);
    letter-spacing: -0.085em;
    white-space: normal;
  }

  .box .tagline {
    display: block;
    margin-right: 0;
    font-size: 1.06rem;
  }

  #christian .box,
  #contact .box {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(8px, 2.2vw, 12px);
    left: 24px;
    right: 24px;
    top: 50%;
    width: auto;
    max-width: calc(100vw - 48px);
  }

  #christian .box .tagline,
  #contact .box .tagline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.34em;
    margin-top: 0;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1.45;
    text-align: left;
    text-transform: uppercase;
    white-space: normal;
  }

  #christian .box .tagline span,
  #contact .box .tagline a,
  #contact .box .tagline .separator {
    display: block;
  }

  #christian .box .tagline span + span::before {
    content: "";
    margin: 0;
  }

  #contact .box .tagline .separator {
    display: none;
  }

  #contact .sign {
    right: 24px;
    bottom: 18px;
    width: auto;
    height: auto;
    font-size: 0.36rem;
  }

  .modalLayer {
    padding: 0;
  }

  .modalPanel {
    padding: 72px 24px 34px;
    font-size: clamp(0.82rem, 1.02vw, 0.98rem);
    line-height: 1.36;
  }

  .modalPanel h2 {
    font-size: clamp(1.28rem, 6.4vw, 2.25rem);
    letter-spacing: 0.12em;
  }

  .modalClose {
    top: 14px;
    left: 14px;
    width: 58px;
    height: 58px;
  }

  #infos .text {
    display: block;
  }

  #infos .info-list {
    color: var(--black);
    font-size: var(--mobile-info-size);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.72;
    list-style-position: outside;
    padding-left: 1.15em;
    white-space: normal;
  }

  #infos .line-indent {
    display: inline-block;
    padding-left: 0;
  }

  #infos .mobile-break {
    display: inline;
  }

  #infos picture {
    width: min(50.4vw, 196px);
    margin-bottom: 30px;
  }

}

@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;
  }

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