:root {
  --cream: #FAF5EC;
  --cream2: #F3EBD8;
  --cream3: #EDE3CC;
  --lavender-page: #F3EEF8;
  --surface: #FFFFFF;
  --surface-soft: #F8F4FB;
  --mauve: #9B7FC7;
  --mauve-l: #C5ADEA;
  --mauve-d: #7A5FAA;
  --yellow: #EDE84A;
  --yellow-s: #F5F4A0;
  --ink: #3C3228;
  --ink-s: #6B5E52;
  --line: rgba(60, 50, 40, 0.13);
  --green: #6B9A5E;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

::selection {
  background: var(--mauve-l);
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--mauve);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: 'Alegreya Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
  background: transparent;
}

.wrap {
  width: min(1100px, calc(100% - 56px));
  margin: 0 auto;
}

.section-label {
  display: block;
  margin-bottom: 11px;
  color: var(--mauve);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--mauve);
  color: #fff;
  padding: 12px 26px;
  box-shadow: 0 8px 20px rgba(155, 127, 199, 0.28);
}

.btn-primary:hover {
  background: var(--mauve-d);
  box-shadow: 0 12px 28px rgba(155, 127, 199, 0.4);
}

.btn-large {
  padding: 14px 32px;
}

header .btn-primary {
  margin-left: auto;
}

.btn-full {
  width: 100%;
}

header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.is-scrolled {
  box-shadow: 0 6px 24px rgba(60, 50, 40, 0.07);
  background: rgba(250, 245, 236, 0.98);
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.nav-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 9999px;
  background: transparent;
  box-shadow: none;
}

.site-logo {
  display: block;
  width: 36px;
  height: 36px;
  background: transparent;
  transition: transform 0.4s ease;
}

.nav-logo-link:hover .site-logo {
  transform: rotate(-8deg) scale(1.06);
}

.nav-name {
  font-family: 'Great Vibes', cursive;
  font-size: 1.7rem;
  color: var(--mauve);
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.87rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--mauve);
  transition: width 0.22s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 130px;
  background: linear-gradient(180deg, #fcf8f0 0%, var(--cream2) 100%);
  --wave-color-1: #f4e7b4;
  --wave-color-2: #e8dcf5;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  background: none;
  z-index: 0;
}

.hero-background img {
  position: absolute;
  display: block;
  width: auto;
  max-width: 280px;
  height: auto;
  background: transparent;
  pointer-events: none;
}

.hero-img-top-right {
  position: absolute;
  top: -2px;
  left: -2px;
  right: auto;
  bottom: auto;
  max-width: 300px;
  transform: scale(0.9);
}

.hero-img-top-right { --s: 1.08; }

.hero-img-bottom-right-desktop,
.desktop-detail {
  display: none;
}


.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  text-align: center;
  margin: -180px auto 0;
  padding-top: 0px;
}


.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  color: var(--mauve);
  margin: 0;
  line-height: 1;
}

.hero-sub {
  display: inline-block;
  font-family: 'Stinger Wide', 'Alegreya Sans', sans-serif;
  font-weight: 500;
  background: var(--yellow);
  border-radius: 30px;
  padding: 6px 28px;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  margin: 24px 0 28px;
  color: var(--ink);
}

.hero-tagline {
  font-family: 'Alegreya Sans', sans-serif;
  font-style: italic;
  font-size: 1.22rem;
  color: var(--ink-s);
  margin: 0 auto 34px;
  max-width: 480px;
  line-height: 1.45;
}

.hero-tel {
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve-d);
}

.hero-tel a {
  color: var(--mauve-d);
  font-weight: 700;
}

.section {
  padding: 72px 0;
  position: relative;
  isolation: isolate;
}

.section > * {
  position: relative;
  z-index: 1;
}

/* Organic dividers between the page sections. The wave sits inside the
   following section so it remains clean on both desktop and mobile. */
.section::before,
footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  display: block;
  width: 100%;
  height: 54px;
  background: var(--wave-from, var(--cream));
  pointer-events: none;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M0 0H1440V28C1320 58 1200 58 1080 28S840-2 720 28 480 58 360 28 120-2 0 28Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M0 0H1440V28C1320 58 1200 58 1080 28S840-2 720 28 480 58 360 28 120-2 0 28Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.vision::before { display: none; }
.pourquoi-section { --wave-from: var(--cream2); }
.tarifs { --wave-from: var(--lavender-page); }
.parcours { --wave-from: var(--cream); }
.contact { --wave-from: var(--lavender-page); }
footer { --wave-from: var(--cream); }

html.has-js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

html.has-js .reveal.in-view {
  opacity: 1;
  transform: none;
}

.pourquoi-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.pourquoi-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.pourquoi-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
.pourquoi-grid .reveal:nth-child(4) { transition-delay: 0.26s; }
.pourquoi-grid .reveal:nth-child(5) { transition-delay: 0.33s; }
.pourquoi-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html.has-js .reveal,
  html.has-js .hero-anim {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .hero-background img,
  .scroll-cue span {
    animation: none !important;
  }
}

.section.contact {
  position: relative;
  overflow: visible;
  background: var(--cream);
  --wave-color-1: #f4e7b4;
  --wave-color-2: var(--cream);
}

.contact-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.92;
  z-index: 1;
  will-change: transform;
}

.contact-deco.deco-top-right {
  top: 8px;
  right: 18px;
  transform: rotate(-16deg) scale(0.95);
  max-width: 180px;
}

.contact-deco.deco-bottom-left {
  bottom: -24px;
  left: 12px;
  transform: rotate(10deg) scale(1.05);
  max-width: 240px;
}

.rdv-box {
  position: relative;
  z-index: 2;
}

.pourquoi-section {
  position: relative;
  overflow: hidden;
  background: var(--lavender-page);
  --wave-color-1: #f4e7b4;
  --wave-color-2: #e8dcf5;
}

.pourquoi-deco {
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}

.pourquoi-deco.deco-top-left {
  top: 0;
  left: 0;
  max-width: 150px;
  transform: rotate(0deg);
}

.pourquoi-mobile-visual {
  display: none;
}

/* Tarifs decoration */
.tarifs-decorations {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tarifs-deco {
  position: static;
  width: 88px;
  max-width: 88px;
  transform: rotate(-12deg) scale(1.0);
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
}

/* Footer decoration */
footer {
  position: relative;
}
.footer-deco {
  position: absolute;
  right: 12px;
  bottom: 6px;
  max-width: 120px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.vision {
  background: var(--cream2);
  padding-top: 36px;
  padding-bottom: 28px;
  --wave-color-1: #f4e7b4;
  --wave-color-2: var(--cream);
}

.vision > .vision-olive-bridge {
  position: absolute;
  z-index: 2;
  top: -145px;
  right: -24px;
  width: min(430px, 34vw);
  max-width: none;
  pointer-events: none;
  filter: brightness(1.06) contrast(0.98);
}

.vision-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.vision-illustration {
  position: relative;
}

.vision-illustration {
  isolation: isolate;
}

.vision-deco {
  position: absolute;
  bottom: -22px;
  right: -18px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
  border: 6px solid var(--cream);
  box-shadow: 0 18px 36px rgba(60, 50, 40, 0.16);
  pointer-events: none;
  z-index: 2;
  animation: vision-deco-float 6s ease-in-out infinite;
}

@keyframes vision-deco-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.illustration-large {
  max-width: 520px;
  width: 100%;
  transform: none;
  box-shadow: none;
  border-radius: 12px;
  background: transparent;
  padding: 0;
  display: block;
  margin: 0 auto;
  z-index: 0;
  mix-blend-mode: multiply;
}

.vision-illustration {
  position: relative;
}

.vision-text p {
  color: var(--ink-s);
  font-size: 0.96rem;
  margin-bottom: 15px;
}

.vision-quote {
  margin-top: 28px;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--mauve);
  padding: 24px 28px;
  border-left: 3px solid var(--mauve-l);
  background: var(--cream);
  border-radius: 0 10px 10px 0;
  line-height: 1.3;
}

.illustration {
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  display: block;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.section h2,
.section-intro,
.vision-text,
.vision-text p,
.vision-quote,
.aside-box,
.rdv-box {
  text-align: center;
}

.section h2 {
  margin: 0 0 20px;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

.section-intro > p {
  font-size: 1.02rem;
  line-height: 1.6;
}

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.pq-card {
  background: var(--surface);
  padding: 30px 26px;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pq-card:hover {
  background: var(--surface);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(60, 50, 40, 0.08);
  z-index: 2;
}

.pq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid var(--mauve-l);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.pq-card:hover .pq-icon {
  background: var(--mauve);
  border-color: var(--mauve);
}

.pq-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mauve-d);
  line-height: 1;
  transition: color 0.3s ease;
}

.pq-card:hover .pq-num {
  color: #fff;
}

.pq-card p {
  font-size: 0.9rem;
  color: var(--ink-s);
  margin: 0;
}

.tarifs {
  background: var(--cream);
  position: relative;
  overflow: visible;
  --wave-color-1: #f4e7b4;
  --wave-color-2: var(--cream);
}

.parcours {
  background: var(--lavender-page);
  --wave-color-1: #f4e7b4;
  --wave-color-2: var(--cream2);
}

.tarifs-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}

.illustration-small {
  width: 120px;
  flex-shrink: 0;
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
}

th {
  text-align: left;
  padding: 14px 22px;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve-d);
  font-weight: 400;
  background: var(--surface-soft);
}

td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

tr:last-child td {
  border-bottom: none;
}

tr {
  transition: background 0.25s ease;
}

tr:hover td {
  background: rgba(155, 127, 199, 0.06);
}

.t-name {
  font-weight: 400;
  font-size: 0.97rem;
}

.t-desc {
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--ink-s);
}

.t-price {
  text-align: right;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--mauve-d);
  white-space: nowrap;
}

.t-note {
  margin: 18px 0 0;
  padding: 11px 15px;
  border-left: 3px solid var(--mauve-l);
  border-radius: 7px;
  background: rgba(155, 127, 199, 0.08);
  color: var(--ink-s);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 600;
}

.t-warn {
  background: rgba(155, 127, 199, 0.1);
  border: 1px solid var(--mauve-l);
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 0.8rem;
  color: var(--ink-s);
  margin-top: 12px;
}

.parcours-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
  margin-top: 36px;
}

.parcours-mobile-visual {
  display: none;
}

.timeline {
  display: grid;
  gap: 30px;
}

.tl-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 20px;
  position: relative;
}

.tl-item::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 14px;
  bottom: 0;
  width: 1px;
  background: var(--mauve-l);
}

.tl-item:last-child::after {
  display: none;
}

.tl-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--mauve);
  outline: 2px solid var(--mauve-l);
}

.tl-lbl {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--mauve);
}

.tl-txt {
  color: var(--ink-s);
  font-size: 0.92rem;
  margin: 0;
}

.aside-box {
  background: rgba(155, 127, 199, 0.1);
  border: 1px solid var(--mauve-l);
  border-radius: 12px;
  padding: 24px 22px;
}

.aside-box p {
  margin: 0 0 12px;
  color: var(--ink-s);
  font-size: 0.9rem;
}

.aside-box p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.c-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.c-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(155, 127, 199, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.c-lbl {
  display: block;
  margin-bottom: 3px;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mauve-d);
}

.c-val {
  font-size: 0.94rem;
}

.access-list {
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.accessibility-note {
  margin: 7px 0 0;
  color: var(--mauve-d);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.access-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink-s);
  font-size: 0.83rem;
}

.access-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mauve);
  margin-top: 0.55em;
  flex-shrink: 0;
}

.rdv-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px 30px;
}

.rdv-box h3 {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 6px;
}

.rdv-box p {
  margin: 0 0 22px;
  font-size: 0.88rem;
  color: var(--ink-s);
}

.big-tel {
  display: inline-block;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--mauve-d);
  margin-bottom: 4px;
}

.tel-note {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-s);
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.or-divider span:first-child,
.or-divider span:last-child {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.form-ok {
  display: none;
  margin-top: 10px;
  padding: 11px 14px;
  background: rgba(107, 154, 94, 0.1);
  border: 1px solid rgba(107, 154, 94, 0.3);
  border-radius: 7px;
  font-size: 0.85rem;
  color: var(--green);
}

.form-error {
  display: none;
  margin-top: 10px;
  padding: 11px 14px;
  background: rgba(160, 76, 76, 0.08);
  border: 1px solid rgba(160, 76, 76, 0.24);
  border-radius: 7px;
  font-size: 0.85rem;
  color: #8A4545;
}

.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#contact-form button[type='submit']:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

#contact-form {
  display: grid;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mauve-d);
}

input,
textarea,
select {
  width: 100%;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 14px;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--mauve);
}

textarea {
  min-height: 80px;
  resize: vertical;
}

footer {
  background: var(--ink);
  color: #BFB5AB;
  padding: 86px 0 22px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-name {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: #E8DEFF;
}

.ft-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.ft-links a:hover {
  color: #fff;
}

@media (max-width: 860px) {
  .wrap {
    width: min(100%, calc(100% - 32px));
  }

  .hero {
    min-height: 70vh;
    padding: 60px 0 40px;
  }

  .hero-img-top-right {
    max-width: 180px;
  }

  .hero-img-top-right {
    top: 0;
    left: 0;
    max-width: 220px;
    transform: none;
  }

  .hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-sub {
    padding: 6px 22px;
    font-size: 0.92rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
    max-width: 420px;
  }

  .vision-inner,
  .tarifs-top,
  .parcours-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pq-card {
    padding: 24px 18px;
  }

  .tarifs-top {
    align-items: stretch;
    flex-direction: row;
  }

  .illustration-small {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  th,
  td {
    padding: 14px 16px;
  }

  .c-row {
    flex-direction: column;
    gap: 10px;
  }

  .rdv-box {
    padding: 26px 20px;
  }
}

@media (max-width: 640px) {
  html,
  body {
    min-width: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .wrap {
    width: min(100%, calc(100% - 20px));
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .site-nav {
    width: 100%;
    padding: 10px 12px;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-name {
    font-size: 1.2rem;
  }

  .nav-links {
    display: none;
  }

  header .btn-primary {
    padding: 8px 14px;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
  }

  .nav-brand {
    flex: 1;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 30px;
    overflow: hidden;
  }

  .hero-background {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-background img {
    display: block;
    max-width: 100px;
    opacity: 1;
  }

  .hero-img-top-right {
    top: 0;
    left: 0;
    max-width: 120px;
    transform: none;
  }

  .vision > .vision-olive-bridge {
    top: -66px;
    right: -50px;
    width: 200px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 3.4rem);
  }

  .hero-sub {
    padding: 6px 16px;
    font-size: 0.88rem;
    margin: 16px 0 20px;
  }

  .hero-tagline {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .btn-large {
    padding: 12px 24px;
  }

  .hero-tel {
    font-size: 0.72rem;
  }

  .section {
    padding: 56px 0;
  }

  .section::before,
  footer::before {
    height: 46px;
    -webkit-mask-size: 760px 46px;
    mask-size: 760px 46px;
  }

  .pourquoi-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .pq-card {
    padding: 20px 16px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(60,50,40,0.08);
    border: 1px solid rgba(155,127,199,0.14);
  }

  .vision-inner {
    gap: 24px;
  }

  .vision-text {
    text-align: left;
  }

  .vision-quote {
    padding: 16px 16px;
    font-size: 1.2rem;
    border-left-width: 2px;
    border-radius: 0 8px 8px 0;
  }

  .vision-illustration {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .illustration-large {
    max-width: 260px;
    margin: 0 auto;
  }

  .illustration {
    max-width: 220px;
  }

  .vision-deco {
    display: none;
  }

  .pourquoi-deco {
    max-width: 110px;
    opacity: 1;
  }

  .pourquoi-deco.deco-top-left {
    top: 0;
    left: 0;
    transform: rotate(0deg);
    max-width: 110px;
  }

  .tarifs-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 0;
  }

  .tarifs-deco {
    position: static;
    display: block;
    width: 78px;
    max-width: 78px;
    margin: 0 0 8px;
    transform: none;
    opacity: 0.95;
  }

  .illustration-small {
    display: block;
    width: 110px;
    max-width: 110px;
    margin: 4px 0 0 auto;
  }

  table,
  thead,
  tbody {
    display: block;
  }

  thead {
    position: absolute;
    left: -9999px;
  }

  tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
  }

  tr:last-child {
    margin-bottom: 0;
  }

  td {
    border: none;
    padding: 0;
  }

  .t-price {
    text-align: right;
  }

  .parcours-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aside-box {
    padding: 20px 16px;
    text-align: left;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .c-row {
    flex-direction: column;
    gap: 10px;
  }

  .field {
    gap: 8px;
  }

  input,
  textarea,
  select {
    padding: 12px 14px;
  }

  .or-divider {
    gap: 10px;
  }

  .big-tel {
    font-size: 1.8rem;
  }

  .contact-deco {
    display: block;
    opacity: 0.8;
  }

  .contact-deco.deco-top-right {
    max-width: 120px;
    right: 6px;
  }

  .contact-deco.deco-bottom-left {
    max-width: 140px;
    left: 4px;
    bottom: -18px;
  }

  footer {
    padding-top: 72px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-deco {
    display: block;
    position: static;
    max-width: 100px;
    margin: 10px 0 0 auto;
    opacity: 0.95;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.75rem;
}

.footer-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #BFB5AB;
  font-size: 0.78rem;
  text-align: center;
}

.footer-credit a {
  color: #E8DEFF;
  text-decoration: underline;
  text-decoration-color: rgba(232, 222, 255, 0.45);
  text-underline-offset: 3px;
}

.footer-credit a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

@media (max-width: 1024px) {
  .vision-inner,
  .parcours-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }
}

@media (max-width: 820px) {
  .site-nav {
    padding-right: 12px;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 14px);
    right: 12px;
    left: auto;
    width: min(260px, calc(100% - 24px));
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(60, 50, 40, 0.14);
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 11px 14px;
    border-radius: 9px;
    width: 100%;
  }

  .nav-links a:hover {
    background: rgba(155, 127, 199, 0.1);
  }

  .nav-links a::after {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .tarifs-top {
    flex-direction: column;
    align-items: stretch;
  }

  .ft-links {
    justify-content: flex-start;
  }
}

/* Final phone-specific navigation and hero adjustments. Kept at the end so
   the tablet rules above cannot override the 390 px layout. */
@media (max-width: 640px) {
  html {
    scroll-padding-top: 62px;
  }

  body {
    padding-top: 62px;
  }

  header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    z-index: 100;
  }

  .site-nav {
    min-height: 62px;
    padding: 7px 12px;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .nav-brand {
    flex: 0 1 auto;
    min-width: 0;
    gap: 7px;
  }

  .nav-logo-link {
    flex: 0 0 auto;
    padding: 0;
  }

  .site-logo {
    width: 40px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
  }

  .nav-name {
    font-size: 1.12rem;
    line-height: 1;
    white-space: nowrap;
  }

  .nav-toggle,
  .nav-links,
  .nav-links.is-open {
    display: none;
  }

  header .btn-primary {
    margin: 0 0 0 auto;
    padding: 8px 12px;
    font-size: 0.7rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero {
    align-items: flex-start;
    padding: 18px 0 36px;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 128px;
  }

  .hero-background .hero-img-top-right {
    top: -2px;
    left: -8px;
    max-width: 175px;
  }

  .pourquoi-section {
    padding-top: 72px;
    background: var(--lavender-page);
  }

  .tarifs {
    --wave-from: var(--lavender-page);
  }

  .tarifs::before {
    height: 36px;
    -webkit-mask-size: 760px 36px;
    mask-size: 760px 36px;
  }

  .pourquoi-deco {
    display: none;
  }

  .pourquoi-section .section-intro {
    margin-bottom: 18px;
    padding: 0 8px;
  }

  .pourquoi-section .section-label {
    margin-bottom: 14px;
  }

  .pourquoi-section h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .pourquoi-section .section-intro p {
    margin: 0;
    color: var(--ink-s);
    font-size: 0.92rem;
  }

  .pourquoi-mobile-visual {
    position: relative;
    display: grid;
    place-items: center;
    width: 220px;
    height: 184px;
    margin: 0 auto 26px;
  }

  .pourquoi-mobile-visual::before {
    content: '';
    position: absolute;
    inset: 10px 8px 0;
    border-radius: 48% 52% 44% 56% / 58% 42% 58% 42%;
    background: rgba(197, 173, 234, 0.28);
    transform: rotate(-4deg);
  }

  .pourquoi-mobile-visual img {
    position: relative;
    z-index: 1;
    width: 200px;
    max-height: 180px;
    object-fit: contain;
  }

  .pourquoi-grid {
    gap: 10px;
  }

  .pq-card,
  .pq-card:hover {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border: 1px solid rgba(155, 127, 199, 0.2);
    border-radius: 15px;
    background: var(--surface);
    box-shadow: none;
    transform: none;
  }

  .pq-icon,
  .pq-card:hover .pq-icon {
    width: 32px;
    height: 32px;
    margin: 0;
    border: 0;
    background: var(--mauve);
  }

  .pq-num,
  .pq-card:hover .pq-num {
    color: #fff;
    font-size: 0.72rem;
  }

  .pq-card p {
    color: var(--ink);
    font-size: 0.86rem;
    line-height: 1.45;
    text-align: left;
  }

  .parcours {
    padding-top: 72px;
    background: var(--lavender-page);
  }

  .contact {
    --wave-from: var(--lavender-page);
  }

  .parcours > .wrap > .section-label {
    margin-bottom: 12px;
    text-align: center;
  }

  .parcours-inner {
    gap: 20px;
    margin-top: 0;
  }

  .parcours h2 {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.18;
    text-align: center;
  }

  .parcours h2 br {
    display: none;
  }

  .parcours-mobile-visual {
    display: block;
    width: 270px;
    margin: 22px auto 26px;
  }

  .timeline {
    gap: 12px;
  }

  .tl-item {
    display: block;
    padding: 18px 48px 18px 18px;
    overflow: hidden;
    border: 1px solid rgba(155, 127, 199, 0.18);
    border-radius: 17px;
    background: var(--surface);
  }

  .tl-item::after,
  .tl-dot {
    display: none;
  }

  .tl-item::before {
    position: absolute;
    top: 7px;
    right: 12px;
    color: rgba(155, 127, 199, 0.22);
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
  }

  .tl-item:nth-child(1)::before { content: '01'; }
  .tl-item:nth-child(2)::before { content: '02'; }
  .tl-item:nth-child(3)::before { content: '03'; }
  .tl-item:nth-child(4)::before { content: '04'; }

  .tl-lbl {
    margin-bottom: 7px;
    font-size: 0.7rem;
    font-weight: 700;
  }

  .tl-txt {
    color: var(--ink);
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .parcours-inner > .reveal:last-child > .illustration {
    display: none;
  }

  .parcours .aside-box {
    padding: 20px;
    border: 0;
    border-radius: 18px;
    background: rgba(197, 173, 234, 0.25);
    text-align: center;
  }

  .parcours .aside-box p {
    margin: 0;
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .parcours .aside-box p:last-child {
    display: none;
  }

  .section.contact {
    padding-top: 165px;
    padding-bottom: 150px;
    overflow: hidden;
    background: var(--cream);
  }

  footer {
    --wave-from: var(--cream);
  }

  footer::before {
    height: 36px;
    -webkit-mask-size: 760px 36px;
    mask-size: 760px 36px;
  }

  .contact > .contact-deco {
    display: block;
    opacity: 0.92;
  }

  .contact > .contact-deco.deco-top-right {
    top: 2px;
    right: 28px;
    left: auto;
    width: 130px;
    max-width: none;
    transform: rotate(102deg);
  }

  .contact > .contact-deco.deco-bottom-left {
    top: auto;
    right: auto;
    bottom: 4px;
    left: -12px;
    width: 145px;
    max-width: none;
    transform: rotate(90deg);
  }

  .contact-grid {
    gap: 24px;
  }

  .contact-grid > .reveal:first-child > .section-label,
  .contact-grid > .reveal:first-child > h2 {
    text-align: center;
  }

  .contact-grid > .reveal:first-child > .section-label {
    margin-bottom: 10px;
  }

  .contact-grid > .reveal:first-child > h2 {
    margin: 0 0 20px;
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .contact .c-row {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 15px;
    border: 1px solid rgba(155, 127, 199, 0.14);
    border-radius: 15px;
    background: var(--surface);
  }

  .contact .c-ic {
    width: 36px;
    height: 36px;
  }

  .contact .c-val {
    display: block;
    overflow-wrap: anywhere;
    color: var(--ink);
    line-height: 1.45;
  }

  .contact .access-list {
    gap: 7px;
    margin-top: 10px;
  }

  .contact .access-list li {
    line-height: 1.45;
  }

  .contact .rdv-box {
    padding: 26px 20px;
    border-color: rgba(155, 127, 199, 0.18);
    border-radius: 20px;
    background: var(--surface);
  }

  .contact input,
  .contact textarea,
  .contact select {
    background: var(--surface-soft);
    border-color: #d8c9ec;
  }

  .contact input:focus,
  .contact textarea:focus,
  .contact select:focus {
    background: var(--surface);
    border-color: var(--mauve);
  }

  /* Unified phone type scale */
  .section .section-label {
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.3;
  }

  .section h2,
  .pourquoi-section h2,
  .parcours h2,
  .contact-grid > .reveal:first-child > h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.012em;
    line-height: 1.18;
  }

  .section-intro > p,
  .pourquoi-section .section-intro p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .rdv-box h3 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .tl-lbl,
  .c-lbl,
  label,
  .tel-note {
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }

  .pq-card p,
  .tl-txt,
  .aside-box p,
  .c-val {
    font-size: 0.92rem;
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  .hero-background .hero-img-bottom-right-desktop {
    display: none;
  }

  .tarifs-heading {
    order: 2;
  }

  .tarifs-heading > p {
    display: none;
  }

  .tarifs-decorations {
    order: 1;
  }

  .tarifs-table table,
  .tarifs-table tbody {
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }
}

/* Desktop presentation: intentionally placed after the responsive rules so
   tablet declarations cannot override the computer layout. */
@media (min-width: 861px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-top: 82px;
  }

  header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
  }

  .site-nav {
    min-height: 82px;
    padding: 10px 0;
  }

  .nav-logo-link {
    padding: 0;
  }

  .site-logo {
    width: 64px;
    height: auto;
    max-height: 54px;
    object-fit: contain;
  }

  .nav-name {
    font-size: 1.9rem;
    line-height: 1;
  }

  .hero {
    min-height: calc(100vh - 82px);
    padding: 90px 0 105px;
  }

  .hero-content {
    max-width: 760px;
    margin: -20px auto 0;
  }

  .hero-title {
    font-size: clamp(5.6rem, 8vw, 7.2rem);
  }

  .hero-background .hero-img-top-right {
    top: -12px;
    left: -18px;
    width: min(400px, 29vw);
    max-width: none;
    transform: none;
  }

  .hero-background .hero-img-bottom-right-desktop {
    display: block;
    top: 64%;
    right: -84px;
    width: min(470px, 34vw);
    max-width: none;
    transform: translateY(-25%) rotate(-3deg);
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section::before,
  footer::before {
    filter: drop-shadow(0 2px 0 rgba(155, 127, 199, 0.45));
  }

  .vision {
    padding-top: 38px;
    padding-bottom: 60px;
  }

  .vision > .vision-olive-bridge {
    display: none;
  }

  .vision-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
    gap: 54px;
  }

  .vision-text,
  .vision-text h2,
  .vision-text p,
  .vision-quote {
    text-align: left;
  }

  .vision-illustration {
    min-height: 420px;
    display: grid;
    place-items: center;
  }

  .vision-illustration::before {
    display: none;
  }

  .vision .illustration-large {
    position: relative;
    width: 430px;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
  }

  .vision-deco {
    display: none;
  }

  .pourquoi-section > .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    align-items: center;
    gap: 18px 70px;
  }

  .pourquoi-deco {
    display: none;
  }

  .pourquoi-section .section-intro {
    max-width: 620px;
    margin: 0;
    text-align: left;
  }

  .pourquoi-section .section-intro h2 {
    text-align: left;
  }

  .pourquoi-mobile-visual {
    position: relative;
    display: grid;
    place-items: center;
    width: 360px;
    height: 310px;
    margin: 0 auto;
  }

  .pourquoi-mobile-visual::before {
    content: '';
    position: absolute;
    inset: 16px 12px;
    border-radius: 52% 48% 42% 58% / 48% 55% 45% 52%;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(155, 127, 199, 0.16);
    transform: rotate(-4deg);
  }

  .pourquoi-mobile-visual img {
    position: relative;
    z-index: 1;
    width: 330px;
    max-height: 290px;
    object-fit: contain;
  }

  .pourquoi-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }

  .pq-card,
  .pq-card:hover {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    min-height: 112px;
    padding: 20px 22px;
    border: 1px solid rgba(155, 127, 199, 0.18);
    border-radius: 16px;
    transform: none;
  }

  .pq-icon,
  .pq-card:hover .pq-icon {
    width: 42px;
    height: 42px;
    margin: 0;
    background: var(--mauve);
    border-color: var(--mauve);
  }

  .pq-num,
  .pq-card:hover .pq-num {
    color: #fff;
  }

  .pq-card p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .tarifs-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: 64px;
    min-height: 510px;
  }

  .tarifs {
    overflow: hidden;
  }

  .tarifs-top {
    display: block;
    position: static;
    margin: 0;
  }

  .tarifs-heading,
  .tarifs-heading h2 {
    text-align: left;
  }

  .tarifs-heading {
    position: relative;
    z-index: 2;
    padding: 18px 0 18px 32px;
  }

  .tarifs-heading p {
    max-width: 390px;
    margin: 0;
    color: var(--ink-s);
    font-size: 1rem;
    line-height: 1.5;
  }

  .tarifs-decorations {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: auto;
    height: auto;
    pointer-events: none;
  }

  .tarifs-deco {
    position: absolute;
    top: -80px;
    left: -130px;
    width: 220px;
    max-width: none;
    transform: rotate(-18deg);
  }

  .illustration-small {
    position: absolute;
    right: auto;
    bottom: -42px;
    left: 88px;
    width: 260px;
    max-width: none;
    margin: 0;
    transform: rotate(8deg);
  }

  .tarifs-table {
    position: relative;
    z-index: 2;
  }

  .tarifs-table table {
    margin-top: 0;
    box-shadow: 0 16px 42px rgba(60, 50, 40, 0.07);
  }

  .parcours > .wrap > .section-label,
  .parcours h2 {
    text-align: center;
  }

  .parcours-inner {
    display: block;
    margin-top: 26px;
  }

  .parcours-mobile-visual {
    display: block;
    width: min(600px, 62%);
    margin: 26px auto 34px;
  }

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

  .tl-item {
    display: block;
    min-height: 250px;
    padding: 28px 58px 28px 28px;
    overflow: hidden;
    border: 1px solid rgba(155, 127, 199, 0.2);
    border-radius: 18px;
    background: var(--surface);
  }

  .tl-dot,
  .tl-item::after {
    display: none;
  }

  .tl-item::before {
    position: absolute;
    top: 10px;
    right: 16px;
    color: rgba(155, 127, 199, 0.2);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1;
  }

  .tl-item:nth-child(1)::before { content: '01'; }
  .tl-item:nth-child(2)::before { content: '02'; }
  .tl-item:nth-child(3)::before { content: '03'; }
  .tl-item:nth-child(4)::before { content: '04'; }

  .tl-lbl {
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .tl-txt {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .desktop-detail {
    display: inline;
  }

  .parcours-inner > .reveal:last-child > .illustration {
    display: none;
  }

  .parcours .aside-box {
    max-width: 900px;
    margin: 18px auto 0;
    padding: 22px 30px;
  }

  .contact-deco.deco-top-right {
    top: 36px;
    right: -12px;
    width: 250px;
    max-width: none;
    transform: scaleX(-1) rotate(-10deg);
  }

  .section.contact {
    padding-bottom: 18px;
  }

  footer::before {
    height: 36px;
    -webkit-mask-size: 100% 36px;
    mask-size: 100% 36px;
  }

  .contact-deco.deco-bottom-left {
    bottom: -34px;
    left: -54px;
    width: 300px;
    max-width: none;
    transform: rotate(32deg) scale(1.05);
  }
}
