:root {
  --green: #8fb399;
  --green-900: #315e55;
  --sage: rgba(143, 179, 153, 0.2);
  --sage-light: rgba(143, 179, 153, 0.12);
  --cream: #f9f9f9;
  --ink: #4a4a4a;
  --muted: rgba(74, 74, 74, 0.72);
  --white: #ffffff;
  --line: rgba(143, 179, 153, 0.28);
  --shadow: 0 24px 70px rgba(49, 94, 85, 0.1);
  --page-gutter-total: clamp(36px, 6vw, 112px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #1d3d36;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  color: var(--green-900);
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.6vw, 4.5rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.8rem;
  font-weight: 700;
}

p {
  margin-bottom: 18px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.mini-icon,
.button-icon,
.social-icon,
.page-card-arrow,
.intro-point-icon {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--sage-light);
  box-shadow: 0 12px 26px rgba(74, 74, 74, 0.08);
}

.mini-icon {
  width: 24px;
  height: 24px;
  color: var(--green-900);
}

.button-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.social-icon {
  width: 20px;
  height: 20px;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: calc(18px + env(safe-area-inset-top)) clamp(18px, 4vw, 56px) 18px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(49, 94, 85, 0.72), rgba(49, 94, 85, 0.34) 70%, transparent);
  transition: background 260ms ease, backdrop-filter 260ms ease, box-shadow 260ms ease;
}

.site-header.solid {
  background: rgba(49, 94, 85, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(49, 94, 85, 0.12);
}

.site-header.home-header {
  background: transparent;
  box-shadow: none;
}

.site-header.home-header.is-scrolled {
  background: rgba(29, 61, 54, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(49, 94, 85, 0.12);
}

.home-header .nav,
.home-header .nav > a,
.home-header .mega-trigger,
.home-header .nav > a.active,
.home-header .mega-trigger.active,
.home-header .nav > a:hover,
.home-header .mega-trigger:hover,
.home-header .nav > a:focus-visible,
.home-header .mega-trigger:focus-visible {
  color: var(--white);
}

.home-header .nav > a.active {
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: var(--white);
  background: rgba(49, 94, 85, 0.28);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  grid-area: 1 / 1;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  font-weight: 600;
}

.nav a {
  transition: color 180ms ease, background-color 180ms ease;
}

.nav > a,
.mega-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
}

.nav > a::after,
.mega-trigger::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.nav a:hover {
  color: var(--white);
}

.nav > a:hover::after,
.mega-trigger:hover::before {
  transform: scaleX(1);
}

.nav a.active,
.mega-trigger.active {
  color: var(--green-900);
  background: var(--white);
}

.nav-mega {
  position: relative;
}

.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-item-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* Nav breakpoint: doit rester synchronisé avec navigation.js (mobileMenuQuery) */
@media (min-width: 1685px) {
  .mega-feature .nav-item-icon {
    display: none;
  }
}

.mega-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 200ms ease;
}

.nav-mega:hover .mega-trigger::after,
.nav-mega:focus-within .mega-trigger::after,
.nav-mega.is-open .mega-trigger::after {
  transform: translateY(1px) rotate(225deg);
}

.mega-panel {
  position: fixed;
  top: 92px;
  left: 50%;
  display: grid;
  width: 1400px;
  max-width: calc(100vw - var(--page-gutter-total));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto repeat(4, auto);
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(74, 74, 74, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-panel::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
}

.nav-mega:hover .mega-panel,
.nav-mega:focus-within .mega-panel,
.nav-mega.is-open .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-column {
  display: grid;
  grid-row: 1 / -1;
  grid-template-rows: subgrid;
  gap: 10px;
  align-content: start;
}

.mega-column + .mega-column {
  padding-left: clamp(22px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.mega-title {
  margin-bottom: 14px;
  color: var(--green-900);
  font-size: clamp(1rem, 1.1vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mega-column a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 3px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.mega-column a:hover,
.mega-column a:focus-visible,
.mega-column a.active {
  color: var(--green-900);
  border-color: var(--line);
  background: var(--sage-light);
}

.mega-column .nav-item-icon {
  grid-row: 1 / span 2;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--green-900);
}

.mega-column strong {
  grid-column: 2;
  color: var(--green-900);
  font-size: 1.12rem;
  line-height: 1.2;
}

.mega-column small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.mega-feature {
  position: relative;
  display: grid;
  grid-row: 1 / -1;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-image: url("assets/mega-services.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.mega-feature .button {
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.nav > a.nav-mobile-cta {
  display: none;
}

.mega-mobile-contact {
  display: none;
}

.mega-mobile-legal {
  display: none;
}

.nav-mobile-brand {
  display: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta {
  color: var(--green-900);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(74, 74, 74, 0.14);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(74, 74, 74, 0.12);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary.light {
  color: var(--green-900);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.container {
  width: min(1400px, calc(100% - var(--page-gutter-total)));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  cursor: grab;
  isolation: isolate;
  touch-action: pan-y;
}

.hero.is-dragging {
  cursor: grabbing;
}

.hero-slider,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: -2;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-track.is-dragging {
  transition: none;
  cursor: grabbing;
}

.hero-slide {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

.hero-slider-controls {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(20px, 4vh, 48px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 200ms ease, transform 200ms ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.hero-dot.is-active {
  background: var(--white);
  transform: scale(1.2);
}

.hero-arrow {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.hero-arrow:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.28);
}

.hero-arrow:active {
  transform: scale(0.92);
}

.hero-arrow-icon {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-arrow-prev .hero-arrow-icon {
  transform: rotate(180deg);
}

.hero-swipe-hint {
  display: none;
}

@keyframes hero-swipe-hint-fade {
  0%,
  65% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-track {
    transition: none;
  }

  .hero-swipe-hint {
    animation: none;
  }
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 46, 40, 0.7) 0%, rgba(20, 46, 40, 0.34) 118px, rgba(20, 46, 40, 0) 240px),
    linear-gradient(90deg, rgba(49, 94, 85, 0.9) 0%, rgba(49, 94, 85, 0.66) 34%, rgba(143, 179, 153, 0.34) 58%, rgba(249, 249, 249, 0.08) 82%),
    linear-gradient(180deg, rgba(49, 94, 85, 0.08), rgba(49, 94, 85, 0.24));
}

.hero-content {
  align-self: center;
  width: calc(100% - var(--page-gutter-total));
  margin: 0 auto;
  padding: clamp(96px, 14vh, 150px) 0 clamp(40px, 6vh, 70px);
}

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

.hero-title {
  margin: 0 0 10px;
}

.hero-role {
  margin: 0 0 24px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 2.6vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.7;
}

.hero-role-highlight {
  display: inline;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(143, 179, 153, 0.6);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 30px;
}

.hero-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: clamp(0.92rem, 1.6vw, 1rem);
}

.hero-contact-link .mini-icon {
  color: var(--white);
}

.hero-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.hero-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-socials a:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.2);
}

.hero-hook {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.15;
}

.hero-lede {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.page-hero {
  padding: 178px 0 88px;
  text-align: center;
  color: var(--ink);
  background: var(--sage-light);
}

/* Custom grid for page hero with 2 columns */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 981px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
  }
}

.page-hero h1,
.page-hero p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

/* General component for framed visual blocks with offset brand background accents */
.section-photo {
  position: relative;
  z-index: 1;
}

.page-hero-grid .section-photo {
  margin-top: clamp(32px, 5vw, 48px);
}

@media (min-width: 981px) {
  .page-hero-grid .section-photo {
    margin-top: 0;
  }
}

.section-photo::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: var(--green-900);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.15;
  transition: transform 300ms ease;
}

.section-photo::after {
  content: "";
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1.5px dashed var(--green);
  border-radius: 16px;
  z-index: -2;
  transition: transform 300ms ease;
}

.section-photo img,
.section-photo svg {
  display: block;
  width: 100%;
  border: 6px solid var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(49, 94, 85, 0.14);
  background: var(--white);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.section-photo img {
  height: clamp(280px, 34vw, 450px);
  object-fit: cover;
}

.section-photo svg {
  height: auto;
}

/* Hover effects for a tactile, modern feel */
.section-photo:hover::before {
  transform: translate(4px, 4px);
}

.section-photo:hover::after {
  transform: translate(-4px, -4px);
}

.section-photo:hover img,
.section-photo:hover svg {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(49, 94, 85, 0.2);
}

/* Custom 2-column grid for services section on desktop */
.split-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 981px) {
  .split-services {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
  }
}

/* Specific pricing section illustration layout */
.pricing-photo {
  margin-top: clamp(28px, 4vw, 42px);
  max-width: 440px;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 6.1rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.band {
  background: var(--sage-light);
  color: var(--ink);
}

.intro {
  padding: clamp(72px, 9vw, 112px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.intro h2,
.deep h2 {
  color: var(--green-900);
}

.intro-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.intro-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
}

.intro-illustration {
  width: min(100%, 340px);
  height: auto;
  margin-top: clamp(28px, 4vw, 40px);
}

.intro-illustration-circle {
  fill: var(--green);
  opacity: 0.16;
}

.intro-illustration-circle-2 {
  fill: var(--green-900);
  opacity: 0.12;
}

.intro-illustration-circle-3 {
  fill: var(--green);
  opacity: 0.24;
}

.intro-illustration-path {
  fill: none;
  stroke: var(--green-900);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.55;
}

.intro-illustration-dot {
  fill: var(--green-900);
}

.intro-panel {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 24px 70px rgba(49, 94, 85, 0.14);
}

.intro-panel p {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.intro-points span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 800;
  line-height: 1.25;
}

.intro-point-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--white);
}

.intro .eyebrow,
.deep .eyebrow,
.benefits .eyebrow {
  color: var(--green);
}

.contact h2 {
  color: var(--white);
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.explore-section {
  background: var(--cream);
}

.reviews-section {
  background: var(--sage-light);
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 18px;
}

.reviews-stars {
  display: flex;
  gap: 3px;
  color: var(--green-900);
}

.reviews-stars .star-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.reviews-summary p {
  margin: 0;
  color: var(--muted);
}

.reviews-summary strong {
  color: var(--green-900);
}

.reviews-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-viewport.is-dragging {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 20px;
  padding-bottom: 14px;
  width: max-content;
  will-change: transform;
}

.review-card {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 14px;
  width: min(340px, 82vw);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(74, 74, 74, 0.07);
}

.review-card:not([hidden]) {
  display: flex;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reviews-grid .review-card {
  width: auto;
}

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

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

.eyebrow a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.review-card .reviews-stars {
  margin: 0;
}

.review-text {
  margin: 0;
  color: var(--ink);
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}

.review-author strong {
  color: var(--green-900);
}

.review-author span {
  color: var(--muted);
  font-size: 0.86rem;
}

.reason-grid,
.cards,
.quote-grid,
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reason-grid article,
.card,
.quote-grid figure,
.page-card {
  min-height: 180px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(74, 74, 74, 0.07);
}

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

.page-card {
  position: relative;
  display: grid;
  align-content: start;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 18px;
  min-height: 220px;
  min-width: 0;
  color: var(--ink);
  transition: box-shadow 0.2s ease;
}

.page-card-arrow {
  position: absolute;
  right: clamp(20px, 3vw, 28px);
  bottom: clamp(20px, 3vw, 28px);
  width: 20px;
  height: 20px;
  color: inherit;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.page-card:hover .page-card-arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

.page-card.featured {
  grid-column: 1 / -1;
  min-height: 240px;
  border-color: rgba(49, 94, 85, 0.28);
  background: var(--green-900);
  color: var(--white);
}

.page-card.featured .icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.page-card.featured h3,
.page-card.featured p,
.page-card.featured .page-kicker {
  color: var(--white);
}

.page-card.featured h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.page-card .icon {
  grid-row: 1 / span 3;
}

.page-kicker {
  align-self: end;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-card h3 {
  margin-bottom: 0;
  min-width: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
  overflow-wrap: anywhere;
}

.page-card p {
  margin-bottom: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.reason-grid article {
  display: grid;
  align-content: space-between;
  gap: 26px;
  color: var(--green-900);
  font-weight: 600;
}

.deep {
  color: var(--ink);
  background: var(--sage-light);
}

.deep p:not(.eyebrow) {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.tool-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.tool-panel span {
  display: flex;
  gap: 10px;
  min-height: 58px;
  align-items: center;
  padding: 14px 16px;
  border-left: 2px solid var(--green);
  background: var(--white);
  color: var(--green-900);
  font-weight: 700;
}

.tools-section {
  background: var(--sage-light);
}

.blog-feature-card {
  position: relative;
  display: grid;
  min-height: clamp(460px, 48vw, 620px);
  place-items: center;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.blog-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58)),
    linear-gradient(90deg, rgba(49, 94, 85, 0.28), rgba(249, 249, 249, 0.08));
}

.blog-feature-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.blog-feature-card:hover .blog-feature-background {
  transform: scale(1.04);
}

.blog-feature-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  max-width: 760px;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.blog-feature-content h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  overflow-wrap: anywhere;
}

.blog-feature-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(74, 74, 74, 0.86);
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
}

.blog-sidebar {
  position: sticky;
  z-index: 1;
  top: 108px;
  grid-column: 2;
  display: grid;
  width: 320px;
  min-height: 100%;
  align-content: start;
  max-height: calc(100vh - 108px);
  gap: 18px;
  overflow-y: auto;
  padding: 32px 28px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: -18px 0 44px rgba(49, 94, 85, 0.08);
}

.blog-sidebar h2 {
  margin: -8px 0 0;
  font-size: 2.2rem;
}

.blog-sidebar-group {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.blog-sidebar-group h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-sidebar-group a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.blog-sidebar-group a:hover,
.blog-sidebar-feature:hover strong {
  color: var(--green-900);
}

.blog-sidebar-feature {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sage-light);
}

.blog-sidebar-feature span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-sidebar-feature strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.article-hero {
  padding-bottom: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 700;
}

.article-cover {
  width: min(1400px, calc(100% - var(--page-gutter-total)));
  margin: -42px auto 0;
}

.article-cover img {
  width: 100%;
  max-height: 560px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-content {
  max-width: 860px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1.06rem, 1.4vw, 1.18rem);
}

.article-content h2 {
  margin-top: 54px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.article-content p,
.article-content li {
  color: var(--muted);
}

.article-content ul {
  padding-left: 24px;
  margin: 0 0 24px;
}

.article-signature {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--green-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

@media (min-width: 1181px) {
  .blog-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
  }

  .blog-main-column,
  .article-content {
    grid-column: 1;
    min-width: 0;
  }

  .blog-content-layout .blog-sidebar {
    grid-column: 2;
  }
}

@media (max-width: 1180px) {
  .blog-sidebar {
    display: none;
  }
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tool-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(74, 74, 74, 0.07);
}

.tool-card .icon {
  margin-bottom: 26px;
  color: var(--green-900);
  background: var(--white);
}

.tool-card p {
  color: var(--muted);
}

.card {
  min-height: 310px;
}

.card .icon {
  margin-bottom: 28px;
  color: var(--green);
  background: var(--sage-light);
}

.card p,
.benefits p,
.values p,
.story-copy p {
  color: var(--muted);
}

.pricing {
  scroll-margin-top: 124px;
  background: var(--sage-light);
}

.pricing .split {
  align-items: center;
  justify-items: center;
}

.services-section {
  background: var(--cream);
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(74, 74, 74, 0.07);
}

.service-card.featured {
  border-color: var(--green);
  background: var(--white);
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card .icon {
  color: var(--green);
  background: var(--sage-light);
}

.service-price {
  display: grid;
  justify-items: end;
  min-width: 150px;
  color: var(--green-900);
}

.service-price strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}

.service-price span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
}

.pricing-highlights {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-highlights li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.pricing-highlights .icon {
  flex-shrink: 0;
  color: var(--green);
  background: var(--sage-light);
}

.pricing-highlights div {
  display: grid;
  gap: 2px;
}

.pricing-highlights strong {
  color: var(--green-900);
}

.pricing-highlights span {
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(74, 74, 74, 0.08);
}

.pricing-panel div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.pricing-panel strong {
  color: var(--green-900);
}

.pricing-panel span {
  color: var(--muted);
}

.pricing-panel .button {
  width: fit-content;
  margin-top: 4px;
}

.pricing-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-copy .pricing-highlights {
  width: 100%;
  text-align: left;
}

.benefits {
  background: var(--sage-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(38px, 7vw, 86px);
}

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

.benefit-list div {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 32px rgba(74, 74, 74, 0.06);
}

.story {
  background: var(--white);
}

.story,
.values,
.story-copy p {
  scroll-margin-top: 124px;
}

.values {
  background: var(--sage-light);
}

.testimonials {
  background: var(--cream);
}

.quote-grid blockquote {
  margin: 0;
  color: var(--green-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.16;
}

.quote-grid figure {
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.quote-grid figure::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 28px;
  width: 38px;
  height: 2px;
  background: var(--green);
}

.contact {
  padding: 92px 0;
  color: rgba(255, 255, 255, 0.84);
  background: var(--green-900);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: center;
}

.contact-inner p {
  max-width: 820px;
}

.contact-actions {
  display: grid;
  gap: 12px;
  min-width: 270px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.2);
}

.social-links.light a {
  color: var(--green-900);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.social-links.light a:hover {
  border-color: rgba(143, 179, 153, 0.48);
  background: var(--white);
}

.contact-note {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.contact-page {
  background: var(--sage-light);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(74, 74, 74, 0.08);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.consent,
.form-submit {
  grid-column: 1 / -1;
}

.form-row label,
.consent {
  color: var(--green-900);
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(143, 179, 153, 0.18);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
}

.consent input {
  margin-top: 5px;
}

.form-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-submit.is-loading {
  opacity: 0.7;
  cursor: wait;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(196, 92, 92, 0.1);
  color: #a83f3f;
  font-size: 0.92rem;
}

.contact-form-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(74, 74, 74, 0.08);
}

.contact-form-wrap .contact-form {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.contact-confirmation {
  display: none;
  justify-items: start;
  gap: 12px;
  padding: clamp(28px, 5vw, 44px);
}

.contact-confirmation:not([hidden]) {
  display: grid;
}

.contact-confirmation-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green-900);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-confirmation h2 {
  margin: 0;
  color: var(--green-900);
}

.contact-confirmation > p {
  margin: 0;
  color: var(--muted);
}

.contact-recap {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 18px;
  width: 100%;
  margin: 6px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sage-light);
}

.contact-recap dt {
  color: var(--green-900);
  font-weight: 700;
}

.contact-recap dd {
  margin: 0;
  color: var(--ink);
  white-space: pre-line;
}

.contact-confirmation-thanks {
  color: var(--green-900);
  font-weight: 700;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
}

.contact-card h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.contact-card > a {
  color: var(--green-900);
  font-weight: 800;
}

.contact-sidebar {
  display: grid;
  gap: 24px;
}

.contact-card h3 {
  margin: 0 0 8px;
  color: var(--green-900);
}

.contact-item,
.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--green-900);
  font-weight: 700;
  transition: color 180ms ease;
}

.contact-item a:hover {
  color: var(--green);
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  margin-top: 2px;
}

.info-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: clamp(32px, 5vw, 56px) clamp(18px, 4vw, 56px) clamp(20px, 3vw, 32px);
  color: var(--white);
  background: #000;
  font-size: 0.9rem;
  text-align: left;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  gap: 28px;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) max-content max-content minmax(320px, 1fr);
  align-items: start;
  gap: clamp(44px, 6vw, 118px);
  width: 100%;
}

.footer-brand {
  display: inline-flex;
}

.footer-brand .brand-mark {
  width: 70px;
  height: 70px;
  font-size: 1.55rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-col-brand {
  gap: 8px;
}

.footer-nav {
  font-weight: 600;
}

.footer-nav a,
.footer-legal a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-nav a::after,
.footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.footer-nav a:hover::after,
.footer-legal a:hover::after {
  transform: scaleX(1);
}

.footer-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 2px 0 2px 26px;
}

.footer-legal {
  gap: 12px;
}

.footer-photos {
  min-width: 300px;
}

.footer-photo-grid {
  display: grid;
  width: min(360px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.footer-photo-grid picture {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
}

.footer-photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-col-title {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: underline;
}

.footer-nav-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--white);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-name {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.footer-contact,
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-socials {
  margin-top: 4px;
}

.footer-siret {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
}

.footer-copyright {
  width: 100%;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.8rem;
  text-align: center;
}

.footer-credit {
  width: 100%;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  text-align: center;
}

/* Nav breakpoint: doit rester synchronisé avec navigation.js (mobileMenuQuery) */
@media (max-width: 1684px) {
  .hero-slider-controls {
    display: none;
  }

  .hero-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 20px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.76rem;
    font-weight: 600;
    pointer-events: none;
    animation: hero-swipe-hint-fade 4500ms ease forwards;
  }

  .hero-swipe-hint-icon {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .hero-swipe-hint-icon.is-flipped {
    transform: rotate(180deg);
  }

  .hero-role-break {
    display: none;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-hook {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-contact {
    justify-content: center;
  }

  .hero-socials {
    justify-content: center;
  }

  .site-header {
    position: fixed;
    flex-wrap: nowrap;
    align-items: center;
  }

  .menu-toggle {
    position: relative;
    z-index: 46;
    display: grid;
    width: 56px;
    height: 56px;
    margin-left: auto;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 26px;
    height: 2.5px;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .menu-toggle[aria-expanded="true"] {
    color: #000;
    border-color: rgba(0, 0, 0, 0.2);
    background: var(--white);
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    z-index: 44;
    inset: 0 0 0 auto;
    display: flex;
    width: 80vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    padding: calc(96px + env(safe-area-inset-top)) 22px calc(28px + env(safe-area-inset-bottom));
    color: var(--ink);
    background: var(--white);
    box-shadow: -24px 0 70px rgba(20, 46, 40, 0.18);
    transform: translateX(100%);
    transition: transform 240ms ease;
  }

  .nav-mobile-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-mobile-brand .brand-mark {
    width: 96px;
    height: 96px;
    border-color: rgba(49, 94, 85, 0.32);
    color: var(--green-900);
    font-size: 1.7rem;
  }

  .nav-mobile-brand strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-900);
    text-align: center;
  }

  body.menu-open .nav {
    transform: translateX(0);
  }

  .nav > a,
  .mega-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: flex-start;
    padding: 15px 16px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: left;
  }

  .nav > a:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-item-icon {
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: rgba(49, 94, 85, 0.75);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .nav a.active,
  .mega-column a.active {
    color: var(--white);
    background: var(--green-900);
  }

  .nav a.active .nav-item-icon,
  .mega-column a.active .nav-item-icon {
    color: var(--white);
  }

  .home-header .nav > a.active,
  .home-header .mega-column a.active {
    color: var(--white);
    background: var(--green-900);
  }

  .nav-mega {
    display: block;
  }

  .mega-trigger,
  .home-header .nav,
  .home-header .nav > a,
  .home-header .mega-trigger,
  .home-header .nav > a:hover,
  .home-header .mega-trigger:hover,
  .home-header .nav > a:focus-visible,
  .home-header .mega-trigger:focus-visible {
    color: var(--ink);
  }

  .mega-trigger.active,
  .home-header .nav > a.active,
  .home-header .mega-trigger.active,
  .home-header .nav > a.active:hover,
  .home-header .mega-trigger.active:hover,
  .home-header .nav > a.active:focus-visible,
  .home-header .mega-trigger.active:focus-visible {
    color: var(--white);
    background: var(--green-900);
  }

  .mega-panel {
    position: static;
    display: grid;
    width: auto;
    max-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 18px;
    overflow: hidden;
    margin: 0;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: max-height 260ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .mega-panel::before {
    display: none;
  }

  .nav-mega:hover .mega-panel,
  .nav-mega:focus-within .mega-panel {
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .nav-mega.is-open .mega-panel {
    max-height: 1400px;
    padding: 18px 14px 22px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mega-column {
    display: grid;
    grid-row: auto;
    grid-template-rows: none;
    gap: 8px;
    margin-left: 16px;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mega-column + .mega-column {
    padding-left: 0;
    border-left: 0;
  }

  .mega-title {
    display: block;
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 0.74rem;
  }

  .mega-column a {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px;
    padding: 10px 0;
    border: 0;
    color: var(--ink);
  }

  .mega-column .nav-item-icon {
    grid-row: 1 / span 2;
    margin-top: 1px;
  }

  .mega-column a.active {
    padding: 12px 14px;
  }

  .mega-column a.active small {
    color: var(--white);
  }

  .nav a:hover {
    color: inherit;
  }

  .nav a.active:hover,
  .mega-trigger.active:hover,
  .nav a.active:focus-visible,
  .mega-trigger.active:focus-visible {
    color: var(--white);
  }

  .nav > a:hover::after,
  .mega-trigger:hover::before {
    transform: scaleX(0);
  }

  .nav-mega:hover .mega-trigger::after {
    transform: translateY(-2px) rotate(45deg);
  }

  .mega-column a:hover,
  .mega-column a:focus-visible {
    color: var(--ink);
    border-color: transparent;
    background: transparent;
  }

  .mega-column a.active:hover,
  .mega-column a.active:focus-visible {
    color: var(--white);
    background: var(--green-900);
  }

  .mega-column a.active:hover small,
  .mega-column a.active:focus-visible small {
    color: var(--white);
  }

  .mega-column strong {
    grid-column: 2;
    color: inherit;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.24;
  }

  .mega-column small {
    display: block;
    grid-column: 2;
    color: var(--muted);
    font-size: 0.78rem;
  }

  .mega-feature {
    display: none;
  }

  .mega-mobile-contact {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: var(--sage-light);
  }

  .mega-mobile-contact strong,
  .mega-mobile-contact a {
    color: var(--green-900);
  }

  .mega-mobile-contact small {
    color: var(--muted);
  }

  .mega-mobile-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
  }

  .mega-mobile-socials a {
    display: grid;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-items: center;
    border: 1px solid rgba(49, 94, 85, 0.24);
    border-radius: 50%;
    background: rgba(49, 94, 85, 0.08);
  }

  .mega-mobile-socials .social-icon {
    width: 19px;
    height: 19px;
  }

  .mega-mobile-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    padding: 14px 0 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mega-mobile-legal a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.85rem;
  }

  .mega-mobile-legal .footer-nav-icon {
    width: 16px;
    height: 16px;
    color: rgba(49, 94, 85, 0.75);
  }

  .header-cta {
    display: none;
  }

  .nav > a.nav-mobile-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: flex-start;
    min-height: 0;
    padding: 15px 16px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--ink);
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
  }

  .nav-mobile-cta .button-icon {
    width: 22px;
    height: 22px;
    margin-right: 0;
    color: rgba(49, 94, 85, 0.75);
  }

  .nav-mobile-cta.active .button-icon {
    color: var(--white);
  }

  .intro-grid,
  .split,
  .benefits-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .reason-grid,
  .cards,
  .quote-grid,
  .tools-grid,
  .page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .service-card > div {
    text-align: center;
  }

  .service-price {
    grid-column: 1 / -1;
    justify-items: center;
    min-width: 0;
  }

  .service-price span {
    text-align: center;
  }

  .contact-page-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .blog-feature-card {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .section-heading p {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-copy,
  .intro-panel,
  .contact-inner > div:first-child,
  .split > div:first-child,
  .benefits-grid > div:first-child {
    text-align: center;
  }

  .intro-copy p:not(.eyebrow),
  .intro-panel p,
  .contact-inner p,
  .split > div:first-child > p,
  .benefits-grid > div:first-child > p {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-illustration {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-points span {
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1684px) {
  .menu-toggle {
    width: 72px;
    height: 72px;
  }

  .menu-toggle span {
    width: 34px;
    height: 3px;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-9px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(9px);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    max-width: 210px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(20, 46, 40, 0.78) 0%, rgba(20, 46, 40, 0.42) 160px, rgba(20, 46, 40, 0) 300px),
      linear-gradient(180deg, rgba(49, 94, 85, 0.58), rgba(49, 94, 85, 0.76) 58%, rgba(49, 94, 85, 0.82)),
      linear-gradient(90deg, rgba(49, 94, 85, 0.76), rgba(143, 179, 153, 0.2));
  }

  .hero-content {
    padding: 100px 0 40px;
    text-align: center;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-hook {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero {
    padding: 188px 0 64px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-contact {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-socials {
    justify-content: center;
  }

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

  .footer-photos {
    min-width: 0;
  }

  .footer-photo-grid {
    width: min(320px, 100%);
  }

  .footer {
    font-size: 1.05rem;
  }

  .footer-col,
  .footer-col-brand,
  .footer-nav,
  .footer-legal {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-nav-sub {
    margin-left: 0;
  }

  .footer-name {
    font-size: 1.5rem;
  }

  .footer-contact,
  .footer-socials {
    align-items: center;
    width: 100%;
  }

  .footer-siret {
    font-size: 0.95rem;
  }

  .footer-copyright {
    font-size: 0.9rem;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .reason-grid,
  .cards,
  .quote-grid,
  .benefit-list,
  .intro-points,
  .tool-panel,
  .tools-grid,
  .service-card,
  .page-grid,
  .mega-panel {
    grid-template-columns: 1fr;
  }

  .page-card,
  .page-card.featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-card .icon {
    grid-row: auto;
  }

  .mega-column + .mega-column {
    padding-left: 0;
    border-left: 0;
  }

  .reason-grid article,
  .card,
  .quote-grid figure,
  .tool-card,
  .page-card {
    min-height: auto;
  }

  .form-submit {
    width: 100%;
  }

  .pricing-panel .button {
    width: 100%;
  }

  .article-cover {
    margin-top: -24px;
  }
}
