:root {
  --ink: #12282c;
  --teal-950: #052f36;
  --teal-900: #083f47;
  --teal-800: #0b525b;
  --teal-100: #dcecee;
  --gold: #c99a5e;
  --gold-light: #e8c998;
  --cream: #f7f2eb;
  --paper: #fffdf9;
  --muted: #6f7b7d;
  --line: rgba(18, 40, 44, .14);
  --shadow: 0 28px 70px rgba(6, 48, 54, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--teal-950);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.announcement {
  position: relative;
  z-index: 60;
  padding: 9px 20px;
  color: rgba(255, 255, 255, .9);
  background: var(--teal-950);
  text-align: center;
  font-size: .78rem;
  letter-spacing: .08em;
}

.announcement p {
  margin: 0;
}

.announcement span {
  margin: 0 10px;
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(6, 48, 54, .06);
}

.nav-wrap {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--teal-900);
  font: italic 1.5rem/1 var(--serif);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: .12em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold);
  font-size: .65rem;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  color: #294246;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 6px auto;
  background: var(--teal-950);
  transition: transform .25s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--teal-900);
  border-radius: 999px;
  color: #fff;
  background: var(--teal-900);
  box-shadow: 0 12px 28px rgba(8, 63, 71, .14);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--teal-800);
  box-shadow: 0 16px 32px rgba(8, 63, 71, .2);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg path[d^="M13.7"] {
  fill: currentColor;
  stroke: none;
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: .84rem;
}

.button-secondary {
  border-color: var(--line);
  color: var(--teal-900);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--teal-900);
  background: rgba(8, 63, 71, .05);
  box-shadow: none;
}

.button-gold {
  border-color: var(--gold-light);
  color: var(--teal-950);
  background: var(--gold-light);
  box-shadow: none;
}

.button-gold:hover {
  color: var(--teal-950);
  background: #f0d7ad;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.button-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--teal-800);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 31px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.light {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(3.3rem, 6.8vw, 6.3rem);
  line-height: .94;
}

h1 em,
h2 em {
  color: var(--teal-800);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.45rem, 4.6vw, 4.5rem);
  line-height: 1.02;
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
  padding: clamp(66px, 7vw, 104px) 0 clamp(80px, 8vw, 120px);
  background:
    radial-gradient(circle at 8% 8%, rgba(201, 154, 94, .13), transparent 26%),
    linear-gradient(130deg, #fffdf9 0%, #f5f0e9 100%);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .84fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.hero-copy {
  max-width: 680px;
}

.hero-lead {
  max-width: 585px;
  margin: 30px 0 0;
  color: #526669;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.welcome-note {
  margin: 18px 0 0;
  color: var(--teal-800);
  font-weight: 600;
}

.page-hero-copy > .welcome-note {
  margin-top: 18px;
  color: var(--gold-light);
}

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

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-details li {
  display: grid;
  gap: 2px;
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.hero-details li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-details strong {
  font-size: .84rem;
}

.hero-details span {
  color: var(--muted);
  font-size: .77rem;
}

.hero-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 1000 / 1333;
}

.hero-image-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 47, 54, .24), transparent 42%);
  pointer-events: none;
}

.hero-image-main img,
.story-images img,
.gallery-item img,
.page-hero-image img,
.category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-main img {
  object-position: center;
}

.hero-seal {
  position: absolute;
  z-index: 4;
  top: 6%;
  left: -50px;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--teal-900);
  box-shadow: 0 16px 38px rgba(8, 63, 71, .25);
  text-align: center;
}

.hero-seal::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232, 201, 152, .35);
  border-radius: 50%;
}

.hero-seal span {
  z-index: 1;
  align-self: end;
  font-size: .53rem;
  letter-spacing: .16em;
}

.hero-seal span:last-child {
  align-self: start;
}

.hero-seal strong {
  z-index: 1;
  font: italic 2rem/1 var(--serif);
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 15%;
  bottom: 6%;
  margin: 0;
  color: #fff;
  font: italic 1.15rem/1 var(--serif);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(201, 154, 94, .24);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: -180px;
  right: -120px;
  width: 560px;
  height: 560px;
}

.hero-orbit-two {
  right: 31%;
  bottom: -260px;
  width: 480px;
  height: 480px;
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.4fr .65fr;
  align-items: end;
  gap: 64px;
}

.split-heading > p,
.service-intro > p {
  margin: 0 0 8px;
  color: var(--muted);
}

.services-preview {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 27px 29px;
  border-right: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.service-card:first-child {
  border-left: 1px solid var(--line);
}

.service-card:hover,
.service-card.featured {
  color: #fff;
  background: var(--teal-900);
  transform: translateY(-8px);
}

.service-number {
  color: var(--gold);
  font: italic 1rem/1 var(--serif);
}

.service-card > svg {
  width: 48px;
  height: 48px;
  margin: 46px 0 25px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 12px;
  font: 400 1.55rem/1.15 var(--serif);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.service-card:hover p,
.service-card.featured p {
  color: rgba(255, 255, 255, .7);
}

.card-link {
  margin-top: auto;
  padding-top: 26px;
  color: var(--teal-800);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.service-card:hover .card-link,
.service-card.featured .card-link {
  color: var(--gold-light);
}

.center-action {
  margin-top: 38px;
  text-align: center;
}

.text-link,
.facebook-follow {
  color: var(--teal-800);
  text-underline-offset: 5px;
  font-weight: 750;
}

.text-link span,
.facebook-follow span {
  display: inline-block;
  margin-left: 6px;
  transition: transform .2s ease;
}

.text-link:hover span,
.facebook-follow:hover span {
  transform: translateX(4px);
}

.story {
  color: #fff;
  background: var(--teal-950);
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: .95fr 1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.story-images {
  position: relative;
  min-height: 680px;
}

.story-main {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 200px 200px 16px 16px;
}

.story-main img {
  object-position: 48% 45%;
}

.story-stroke {
  position: absolute;
  top: 3%;
  right: 1%;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(232, 201, 152, .34);
  border-radius: 50%;
}

.story-stroke::before,
.story-stroke::after {
  content: "";
  position: absolute;
  background: rgba(232, 201, 152, .34);
}

.story-stroke::before {
  top: 50%;
  left: -28px;
  width: 224px;
  height: 1px;
}

.story-stroke::after {
  top: -28px;
  left: 50%;
  width: 1px;
  height: 224px;
}

.story-copy h2 {
  max-width: 650px;
}

.story-intro {
  max-width: 620px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.08rem;
}

.story-points {
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.story-points > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.story-points strong {
  color: var(--gold-light);
  font: italic .9rem/1.7 var(--serif);
}

.story-points p {
  margin: 0;
  color: rgba(255, 255, 255, .67);
  font-size: .9rem;
}

.story-points b {
  color: #fff;
  font-size: .96rem;
}

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

.gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.facebook-follow {
  max-width: 250px;
  margin-bottom: 10px;
  font-size: .86rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 3;
  grid-row: span 3;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #dce5e3;
}

.gallery-item.tall {
  grid-column: span 4;
  grid-row: span 5;
}

.gallery-item.wide {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  grid-column: span 4;
}

.gallery-item:nth-child(4) {
  grid-column: span 8;
}

.gallery-item img {
  transition: transform .5s cubic-bezier(.2, .65, .25, 1);
}

.gallery-item:nth-child(1) img {
  object-position: 50% 42%;
}

.gallery-item:nth-child(4) img {
  object-position: 50% 58%;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(5, 47, 54, .68), transparent);
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font: italic 1.07rem/1.2 var(--serif);
}

.location {
  padding-top: clamp(80px, 9vw, 120px);
  background: var(--paper);
}

.location-shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 72px;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 154, 94, .14), transparent 35%),
    var(--teal-900);
}

.location-copy > p:not(.eyebrow) {
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, .72);
}

.location-copy address {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  font-style: normal;
}

.location-copy address > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-copy address a {
  color: #fff;
}

.address-icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.address-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.google-card {
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.google-card-top,
.google-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.google-label {
  color: #3c4043;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.03em;
}

.google-label i {
  color: #4285f4;
  font-style: normal;
  font-weight: 800;
}

.google-profile {
  padding: 5px 9px;
  border-radius: 999px;
  color: #526064;
  background: #edf2f3;
  font-size: .7rem;
  font-weight: 700;
}

.google-business {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0 18px;
}

.google-business-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--teal-900);
  font: italic 1.25rem/1 var(--serif);
}

.google-business h3 {
  margin: 0;
  font: 400 1.45rem/1.2 var(--serif);
}

.google-business p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.map-embed {
  height: 245px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.google-card-footer {
  padding-top: 17px;
  font-size: .76rem;
}

.google-card-footer > span {
  color: var(--muted);
}

.google-card-footer a {
  color: #1a73e8;
  font-weight: 750;
  text-decoration: none;
}

.site-footer {
  padding: 60px 0 28px;
  color: rgba(255, 255, 255, .72);
  background: var(--teal-950);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
  padding-bottom: 42px;
}

.footer-brand .brand-mark,
.footer-brand .brand-copy strong {
  color: #fff;
}

.footer-main > p {
  margin: 0;
  font-size: .86rem;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-size: .82rem;
}

.footer-main nav a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .73rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: inherit;
}

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

.error-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  padding: 40px 24px;
  color: #fff;
  background: var(--teal-950);
  text-align: center;
  overflow: hidden;
}

.error-brand {
  position: absolute;
  top: 28px;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
}

.error-brand .brand-mark {
  color: #fff;
}

.error-code {
  margin: 0;
  color: var(--gold-light);
  font: italic 1rem/1 var(--serif);
  letter-spacing: .2em;
}

.error-page h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 7vw, 6rem);
}

.error-page > p:not(.error-code) {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .7);
}

.error-orbit {
  position: absolute;
  width: min(80vw, 700px);
  aspect-ratio: 1;
  border: 1px solid rgba(232, 201, 152, .18);
  border-radius: 50%;
  pointer-events: none;
}

.error-orbit::before,
.error-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(232, 201, 152, .11);
  border-radius: 50%;
}

.error-orbit::after {
  inset: 26%;
}

/* Prestations */
.page-hero {
  position: relative;
  color: #fff;
  background: var(--teal-950);
  overflow: hidden;
}

.page-hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  align-items: center;
  gap: 80px;
  padding-block: 76px 82px;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
}

.page-hero-copy h1 {
  font-size: clamp(3.15rem, 6.2vw, 5.8rem);
}

.page-hero-copy h1 em {
  color: var(--gold-light);
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, .56);
  font-size: .78rem;
}

.breadcrumb a {
  color: var(--gold-light);
}

.page-hero-image {
  position: relative;
  height: 580px;
  margin: 0;
  overflow: hidden;
  border-radius: 190px 190px 12px 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
}

.page-hero-image img {
  object-position: 52% 48%;
}

.page-hero-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(5, 47, 54, .75), transparent);
}

.page-hero-image figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.page-hero-accent {
  position: absolute;
  right: -130px;
  bottom: -280px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(232, 201, 152, .22);
  border-radius: 50%;
}

.service-jump {
  position: sticky;
  z-index: 35;
  top: 84px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(14px);
}

.service-jump .container {
  display: flex;
  justify-content: center;
  gap: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-jump .container::-webkit-scrollbar {
  display: none;
}

.service-jump a {
  padding: 17px 2px 15px;
  border-bottom: 2px solid transparent;
  color: #53676a;
  text-decoration: none;
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 750;
}

.service-jump a:hover {
  border-color: var(--gold);
  color: var(--teal-900);
}

.service-listing {
  padding-top: clamp(72px, 8vw, 110px);
}

.service-intro {
  display: grid;
  grid-template-columns: 1fr .62fr;
  align-items: end;
  gap: 80px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.service-category {
  display: grid;
  grid-template-columns: .7fr 1fr;
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.service-category.reverse {
  grid-template-columns: 1fr .7fr;
}

.service-category.reverse .category-visual {
  order: 2;
}

.category-visual {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 180px 180px 10px 10px;
  background: var(--cream);
}

.category-visual img {
  object-position: 50% 46%;
}

.category-number {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-950);
  background: var(--gold-light);
  font: italic .88rem/1 var(--serif);
}

.category-kicker {
  margin: 0 0 11px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.category-content h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.category-content > p:not(.category-kicker) {
  max-width: 630px;
  margin: 22px 0 31px;
  color: var(--muted);
}

.service-items {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-items li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.service-items span {
  font-weight: 700;
}

.service-items small {
  color: var(--muted);
  text-align: right;
}

.family-services {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
  margin-top: 90px;
  padding: clamp(42px, 6vw, 72px);
  border-radius: 10px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(201, 154, 94, .16), transparent 30%),
    var(--teal-900);
}

.family-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .7);
}

.family-heading h2 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
}

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

.family-grid section {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.family-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-950);
  background: var(--gold-light);
  font: italic 1.1rem/1 var(--serif);
}

.family-grid h3 {
  margin: 20px 0 16px;
  font: 400 1.65rem/1.2 var(--serif);
}

.family-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .74);
  font-size: .87rem;
  list-style: none;
}

.family-grid li {
  position: relative;
  padding-left: 17px;
}

.family-grid li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--gold-light);
}

.service-cta {
  background: var(--cream);
}

.service-cta-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: clamp(36px, 6vw, 68px);
  border: 1px solid rgba(201, 154, 94, .35);
  border-radius: 8px;
  background: var(--paper);
}

.service-cta-shell h2 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.service-cta-shell > div > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.service-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1020px) {
  :root {
    --container: min(100% - 36px, 900px);
  }

  .nav-wrap {
    grid-template-columns: auto auto 1fr;
  }

  .main-nav {
    position: fixed;
    inset: 117px 18px auto;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .menu-toggle {
    display: block;
    order: 2;
  }

  .header-call {
    justify-self: end;
    order: 3;
  }

  .hero-grid {
    grid-template-columns: 1fr 430px;
    gap: 44px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-seal {
    left: -32px;
  }

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

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .story-grid {
    gap: 54px;
  }

  .story-images {
    min-height: 590px;
  }

  .location-shell {
    gap: 42px;
  }

  .page-hero-grid {
    gap: 50px;
  }

  .service-category,
  .service-category.reverse {
    gap: 55px;
  }

  .family-services {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .story-grid,
  .location-shell,
  .page-hero-grid,
  .service-intro,
  .service-category,
  .service-category.reverse,
  .service-cta-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 0;
    max-width: 570px;
    order: -1;
    width: 100%;
    margin-inline: auto;
  }

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

  .story-images {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .gallery-item.tall {
    grid-column: span 6;
    grid-row: span 4;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    grid-column: span 6;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 6;
    grid-row: span 2;
  }

  .location-copy {
    padding: 12px 8px 0;
  }

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

  .page-hero-grid {
    padding-top: 58px;
  }

  .page-hero-image {
    width: min(100%, 520px);
    height: 620px;
    margin-inline: auto;
  }

  .service-category.reverse .category-visual {
    order: 0;
  }

  .category-visual {
    width: min(100%, 520px);
    height: 620px;
    margin-inline: auto;
  }

  .service-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 145px;
  }

  body {
    padding-bottom: 68px;
  }

  .section {
    padding: 74px 0;
  }

  .announcement {
    min-height: 31px;
    padding: 7px 10px;
    font-size: .63rem;
    letter-spacing: .04em;
  }

  .announcement span {
    margin-inline: 5px;
  }

  .nav-wrap {
    min-height: 72px;
    gap: 11px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy small {
    font-size: .55rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    justify-self: end;
  }

  .header-call {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    inset: 104px 14px auto;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .hero {
    padding-top: 54px;
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-details {
    display: grid;
    gap: 14px;
    margin-top: 30px;
  }

  .hero-details li,
  .hero-details li:first-child {
    padding-left: 16px;
    border-left: 1px solid var(--line);
  }

  .hero-visual {
    min-height: 0;
    margin-top: 8px;
  }

  .hero-seal {
    top: 4%;
    left: 0;
    width: 92px;
    height: 92px;
  }

  .hero-seal strong {
    font-size: 1.55rem;
  }

  .hero-seal span {
    font-size: .42rem;
  }

  .image-caption {
    display: none;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .service-card,
  .service-card:first-child {
    min-height: 290px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .service-card > svg {
    margin: 31px 0 20px;
  }

  .story-images {
    min-height: 500px;
  }

  .story-copy {
    padding-top: 20px;
  }

  .story-points > div {
    grid-template-columns: 35px 1fr;
    gap: 10px;
  }

  .gallery-heading {
    display: grid;
    align-items: start;
    gap: 22px;
  }

  .gallery-heading br {
    display: none;
  }

  .gallery-grid {
    grid-auto-rows: 120px;
    gap: 10px;
  }

  .gallery-item.tall,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    grid-column: span 6;
  }

  .gallery-item.tall {
    grid-row: span 4;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-row: span 2;
  }

  .location-shell {
    gap: 42px;
    padding: 32px 20px;
  }

  .contact-actions {
    display: grid;
  }

  .google-card {
    padding: 17px;
  }

  .google-card-top {
    align-items: flex-start;
  }

  .google-card-footer {
    display: grid;
    gap: 10px;
  }

  .map-embed {
    height: 210px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    height: 68px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    background: var(--paper);
    box-shadow: 0 -10px 28px rgba(5, 47, 54, .14);
  }

  .mobile-contact-bar a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    color: #fff;
    background: var(--teal-900);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 750;
  }

  .mobile-contact-bar a:last-child {
    color: var(--teal-900);
    background: var(--cream);
  }

  .mobile-contact-bar svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-contact-bar svg path[d^="M13.7"] {
    fill: currentColor;
    stroke: none;
  }

  .page-hero-grid {
    min-height: auto;
    padding: 48px 0 64px;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .breadcrumb {
    margin-bottom: 36px;
  }

  .page-hero-image {
    height: 500px;
  }

  .service-jump {
    top: 72px;
  }

  .service-jump .container {
    justify-content: flex-start;
    gap: 22px;
  }

  .service-category,
  .service-category.reverse {
    gap: 40px;
    padding: 66px 0;
  }

  .category-visual {
    height: 500px;
  }

  .service-items li {
    display: grid;
    gap: 3px;
  }

  .service-items small {
    text-align: left;
  }

  .family-services {
    gap: 28px;
    margin-top: 66px;
    padding: 32px 20px;
  }

  .family-grid {
    grid-template-columns: 1fr;
  }

  .family-grid section {
    padding: 25px;
  }

  .service-cta-shell {
    gap: 30px;
    padding: 34px 20px;
  }

  .service-cta-actions {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Informations légales */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .78rem;
}
.footer-legal a { text-underline-offset: 4px; }
.footer-legal a:hover,
.footer-legal a[aria-current="page"] { color: var(--gold-light); }
.legal-page { padding: clamp(40px, 7vw, 90px) 0; background: var(--cream); }
.legal-container { max-width: 860px; }
.legal-breadcrumb { margin-bottom: 36px; color: var(--muted); font-size: .85rem; }
.legal-page h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.08; }
.legal-intro { color: var(--muted); font-size: 1.1rem; margin: 24px 0; }
.legal-notice { padding: 20px 24px; border-left: 3px solid var(--gold); background: var(--paper); }
.legal-content section { padding-top: 34px; margin-top: 34px; border-top: 1px solid var(--line); }
.legal-content h2 { font-size: clamp(1.65rem, 4vw, 2.2rem); line-height: 1.2; }
.legal-content p, .legal-content li { max-width: 75ch; }
.legal-content li + li { margin-top: 8px; }
.legal-content a { text-underline-offset: 3px; }
