:root {
  --ink: #241722;
  --plum: #4c203e;
  --wine: #6d2855;
  --lilac: #d8c6d9;
  --blush: #f3e9ef;
  --ivory: #fbf8f5;
  --line: rgba(36, 23, 34, 0.16);
  --display: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --sans: "Poppins", "Segoe UI", Arial, sans-serif;
}

body[data-page="home"] {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
}

body[data-page="home"] *,
body[data-page="home"] *::before,
body[data-page="home"] *::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

body[data-page="home"] a {
  color: inherit;
  text-decoration: none;
}

body[data-page="home"] img {
  display: block;
  max-width: 100%;
}
.gm-image-load {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gm-image-load.is-loaded { opacity: 1; }

body[data-page="home"] button,
body[data-page="home"] input,
body[data-page="home"] select {
  font: inherit;
}

.functional-media-hooks,
.functional-home-hooks {
  display: none !important;
}

.announcement {
  position: relative;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 48px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement p { margin: 0; }
.announcement span { color: #ddb9d0; }
.announcement button {
  position: absolute;
  right: 20px;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}
.announcement.is-hidden { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 245, 0.94);
  backdrop-filter: blur(16px);
}

.site-header .brand { justify-self: start; }
.site-header .brand-logo {
  width: 152px;
  height: auto;
  filter: none;
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 40px);
  font-size: 11px;
}

.site-header .nav a { position: relative; white-space: nowrap; }
.site-header .nav a,
.site-header .header-actions a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.site-header .nav a:not(.button)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--wine);
  transition: right 0.3s;
}
.site-header .nav a:not(.button):hover::after { right: 0; }
.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(36, 23, 34, 0.07);
}
.site-header .nav-extra { display: none; }
.site-header .header-cta { display: inline-flex; }
.site-header .topbar-end { justify-self: end; }
.site-header .header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.site-header .logout-btn {
  border: 0;
  background: transparent;
  color: var(--wine);
  font-size: 11px;
  cursor: pointer;
}
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  gap: 32px;
  padding: 0 26px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(0.985); }
.button span { transition: transform 0.25s ease; }
.button:hover span { transform: translate(3px, -2px); }
.button--small { min-height: 40px; padding: 0 18px; }
.button--outline { border-color: var(--ink); }
.button--outline:hover { background: var(--ink); color: #fff; }
.button--primary { background: var(--plum); color: #fff !important; }
.button--primary {
  box-shadow: 0 12px 28px rgba(76, 32, 62, 0.16);
}
.button--primary:hover {
  background: var(--wine);
  box-shadow: 0 18px 36px rgba(76, 32, 62, 0.24);
}
.button--light { width: 100%; max-width: 280px; background: var(--ivory); color: var(--plum); }

.eyebrow {
  margin: 0 0 24px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

body[data-page="home"] h1,
body[data-page="home"] h2,
.manifesto__text {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
body[data-page="home"] h1 { font-size: clamp(52px, 6.5vw, 102px); }
body[data-page="home"] h2 { font-size: clamp(42px, 5vw, 72px); }
body[data-page="home"] em {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: max(800px, calc(100svh - 92px));
  overflow: hidden;
  background: var(--ivory);
}

body.audience-femme .hero {
  background: #eee3e9;
}

body.audience-femme .hero__visual,
body.audience-femme .hero__picture {
  background: #eee3e9;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: clamp(46px, 5.5vw, 88px) 6vw 46px;
}
.hero__content.is-visible .eyebrow { animation: hero-copy-in .65s .05s both; }
.hero__content.is-visible h1 { animation: hero-copy-in .8s .14s both; }
.hero__content.is-visible .hero__intro { animation: hero-copy-in .8s .26s both; }
.hero__content.is-visible .gender-switch { animation: hero-copy-in .7s .34s both; }
.hero__content.is-visible .hero__actions { animation: hero-copy-in .7s .42s both; }

.hero__intro {
  max-width: 500px;
  margin: 32px 0 18px;
  color: #63535f;
  font-size: 15px;
  line-height: 1.8;
}

.gender-switch {
  display: flex;
  margin-bottom: 22px;
  border: 1px solid rgba(36, 23, 34, 0.08);
}
.gender-switch button {
  min-width: 100px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: #9a8c95;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 9px;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}

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

body.audience-homme .gn-hero .gn-hero-title,
body.audience-homme .gn-hero .hero__intro,
body.audience-homme .gn-hero .hero__proof p {
  color: var(--ink);
}

body.audience-homme .home-services-section .service-grid {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.hero-men-tags {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

body.audience-homme .hero-men-tags:not([hidden]) {
  display: flex;
}
.gender-switch button.active {
  background: #fff;
  color: var(--plum);
  box-shadow: 0 8px 24px rgba(36,23,34,.08);
}

.hero__actions { display: flex; align-items: center; gap: 32px; }
.text-link {
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
}
.text-link span { margin-left: 12px; }

.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 34px;
}
.hero__proof p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
  line-height: 1.55;
}
.avatars { display: flex; }
.avatars i {
  width: 29px;
  height: 29px;
  margin-left: -8px;
  border: 2px solid var(--ivory);
  border-radius: 50% !important;
  background: linear-gradient(135deg, #d5aabe, #6d2855);
}
.avatars i:first-child { margin-left: 0; background: linear-gradient(135deg, #bd8aa3, #3c2637); }
.avatars i:last-child { background: linear-gradient(135deg, #e1cdd8, #8b4f73); }

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 740px;
  overflow: hidden;
  background: #ebe2de;
}
.hero__picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero__picture img,
.hero__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 44% center;
  animation: hero-image-breathe 14s cubic-bezier(.2,.7,.2,1) both;
}

body.audience-femme .hero__picture {
  display: grid;
  place-items: center;
  background: #eee3e9;
}

body.audience-femme .hero__picture img {
  object-fit: contain;
  object-position: center;
  animation: none;
}

.hero-mood-line {
  position: absolute;
  z-index: 4;
  bottom: 0;
  right: clamp(18px, 3vw, 42px);
  left: auto;
  width: max-content;
  max-width: calc(100% - 36px);
  margin: 0;
  color: #fffaf7;
  background: linear-gradient(110deg, #fffaf7 8%, #e8bfd2 38%, #a95d86 62%, #fffaf7 92%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(28px, 3.7vw, 58px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.05em;
  pointer-events: none;
  text-shadow: 0 8px 36px rgba(39, 27, 35, 0.16);
  text-align: left;
  white-space: nowrap;
  animation: hero-mood-reveal .8s ease-out both, hero-mood-gradient 7s ease-in-out .8s infinite;
}

@keyframes hero-mood-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-mood-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(76, 32, 62, 0.06), transparent 50%);
}

body.audience-femme .hero__visual::after {
  display: none;
}
.hero__badge {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 152px;
  height: 152px;
  padding: 18px;
  background: rgba(251, 248, 245, 0.92);
  backdrop-filter: blur(10px);
}
.hero__badge span { font-size: 9px; letter-spacing: 0.15em; }
.hero__badge p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.15;
}
.hero__side {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.25em;
}

.quick-booking {
  position: absolute;
  z-index: 8;
  top: clamp(44px, 5vh, 84px);
  left: clamp(20px, 2.5vw, 56px);
  width: min(510px, calc(100% - 40px));
  pointer-events: auto;
}

@media (min-width: 1200px) {
  .quick-booking {
    width: min(530px, calc(100% - 48px));
  }

  .booking-card__heading h2 {
    font-size: 28px !important;
  }
}

@media (min-width: 1440px) {
  .quick-booking {
    top: clamp(48px, 5.5vh, 92px);
    left: clamp(28px, 3vw, 64px);
    width: min(550px, calc(100% - 56px));
  }
}

.booking__form,
.booking__form.booking__form--quick,
.booking__form.home-search-card {
  position: relative;
  display: block !important;
  grid-template-columns: none !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(145deg, rgba(251, 248, 245, 0.82), rgba(225, 204, 220, 0.62));
  box-shadow: 0 18px 46px rgba(39, 18, 33, 0.17);
  color: var(--ink);
  backdrop-filter: blur(14px) saturate(1.06);
}
.booking__form::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(109, 40, 85, 0.14);
  pointer-events: none;
}
.booking-card__heading { position: relative; margin: 0 0 12px; }
.booking-card__heading .eyebrow {
  margin-bottom: 8px;
  color: #a34e80;
  font-size: 7px;
}
.booking-card__heading h2 {
  display: block;
  width: 100%;
  max-width: none !important;
  font-size: 27px !important;
  line-height: 1.02 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}
.booking-card__fields {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1.08fr;
  width: 100%;
  border: 1px solid var(--line);
}
.booking__form label { display: block; min-width: 0; padding: 12px 12px 10px; }
.booking__form label + label { border-left: 1px solid var(--line); }
.booking__form label span {
  display: block;
  margin-bottom: 5px;
  color: #786974;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 7px;
  font-weight: 600;
}
.booking__form input,
.booking__form select {
  width: 100%;
  min-width: 0;
  min-height: 24px;
  padding: 0;
  overflow: hidden;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--plum);
  text-overflow: ellipsis;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}
.booking__form label {
  transition: background .25s ease, box-shadow .25s ease;
}
.booking__form label:focus-within {
  background: rgba(255,255,255,.68);
  box-shadow: inset 0 -2px 0 var(--wine);
}
.booking__form .button {
  position: relative;
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  padding-inline: 16px;
  font-size: 9px;
}

.section { padding: 120px clamp(20px, 6vw, 90px); }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  align-items: end;
  gap: 10vw;
  max-width: 1440px;
  margin: 0 auto 64px;
}
.section-heading > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: #6f606a;
  font-size: 14px;
  line-height: 1.8;
}

.services { background: var(--ivory); }
.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  max-width: 1440px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  overflow: hidden;
  background: var(--blush);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(36, 23, 34, 0.12);
}
.service-card__image {
  height: 62%;
  min-height: 360px;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.88);
  transition: transform 0.6s;
}
.service-card:hover .service-card__image { transform: scale(1.025); }
.crop-one { background-image: url("/assets/brand/prototype-source/glamme-service-makeup-marocaine.png"); background-position: center 28%; }
.crop-two { background-image: url("/assets/brand/prototype-source/glamme-service-coiffure-marocaine.png"); background-position: center 28%; }
.crop-three { background-image: url("/assets/brand/prototype-source/glamme-service-nails.png"); background-position: center 24%; }
.service-card__number {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  font-size: 9px;
}
.service-card__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 28px;
}
.service-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -0.04em;
}
.service-card__content > p:not(.eyebrow) {
  max-width: 310px;
  color: #675661;
  font-size: 12px;
  line-height: 1.7;
}
.service-card__content a {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
}
.service-card--dark { background: var(--plum); color: #fff; }
.service-card--dark h3,
.service-card--dark a { color: #fff; }
.service-card--dark .service-card__content > p { color: #d7c8d2; }

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-ribbon > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 96px;
  gap: 16px;
  padding: 24px clamp(20px, 3vw, 46px);
  border-right: 1px solid var(--line);
}
.trust-ribbon > div:last-child { border-right: 0; }
.trust-ribbon span { color: var(--wine); font-size: 9px; letter-spacing: 0.12em; }
.trust-ribbon strong {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.experience {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 820px;
  background: #eee3e9;
}
.experience__image {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.experience__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.18);
  filter: saturate(.7) contrast(1.03);
  box-shadow: none;
}
.experience__image > p {
  position: absolute;
  bottom: 32px;
  left: 36px;
  margin: 0;
  color: #fff;
  mix-blend-mode: overlay;
  font-size: clamp(30px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.85;
}
.experience__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 125px);
}
.experience ol { margin: 54px 0 42px; padding: 0; list-style: none; }
.experience li {
  display: grid;
  grid-template-columns: 54px 1fr;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}
.experience li:last-child { border-bottom: 1px solid var(--line); }
.experience li > span { font-size: 9px; }
.experience h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: 500;
}
.experience li p { margin: 0; color: #6c5c67; font-size: 12px; line-height: 1.6; }
.experience .button { align-self: flex-start; }

.manifesto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 610px;
  text-align: center;
}
.manifesto__text { font-size: clamp(44px, 7vw, 100px); }
.manifesto__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 740px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: left;
}
.manifesto__footer p { max-width: 450px; margin: 0; font-size: 12px; line-height: 1.7; }
.manifesto__footer span { color: var(--wine); font-size: 30px; }

.commitments {
  background: #eee3e9;
}
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.commitment-grid article {
  min-height: 300px;
  padding: 42px;
  border-right: 1px solid var(--line);
  transition: background 0.35s ease, transform 0.35s ease;
}
.commitment-grid article:last-child { border-right: 0; }
.commitment-grid article:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-5px);
}
.commitment-grid span {
  display: block;
  margin-bottom: 60px;
  color: var(--wine);
  font-size: 9px;
  letter-spacing: 0.15em;
}
.commitment-grid h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.commitment-grid p {
  max-width: 330px;
  margin: 0;
  color: #6f606a;
  font-size: 12px;
  line-height: 1.75;
}

.esalon-discovery {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 820px;
  background: var(--plum);
  color: #fff;
}
.esalon-discovery__copy {
  align-self: center;
  padding: clamp(80px, 8vw, 130px);
}
.esalon-discovery__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.2vw, 78px);
}
.esalon-discovery__copy h2 em { color: #deb4ce; }
.esalon-discovery__copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 30px 0;
  color: #dacbd5;
  font-size: 14px;
  line-height: 1.85;
}
.esalon-discovery__copy ul {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.esalon-discovery__copy li {
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  color: #f0e8ed;
  font-size: 12px;
}
.esalon-discovery__copy li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.esalon-discovery__copy li span {
  display: inline-block;
  width: 44px;
  color: #deb4ce;
  font-size: 9px;
}
.esalon-discovery__copy .button--light {
  border-color: #fff;
  background: #fff;
  color: var(--plum) !important;
  opacity: 1;
}
.esalon-discovery__copy .button--light:hover {
  background: #eadde5;
  color: var(--ink) !important;
}
.esalon-discovery__visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: linear-gradient(145deg, #cbb7c7, #eadde5);
}
.esalon-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(251,248,245,.96);
  background: #fff;
  box-shadow: 0 35px 90px rgba(36,23,34,.2);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.esalon-shot:hover { transform: translateY(-8px) rotate(0deg); }
.esalon-shot img { width: 100%; height: 100%; object-fit: cover; }
.esalon-shot figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 12px;
  background: rgba(251,248,245,.9);
  color: var(--ink);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.esalon-shot--main {
  top: 9%;
  left: 8%;
  width: 54%;
  height: 70%;
  transform: rotate(-2deg);
}
.esalon-shot--small {
  right: 7%;
  bottom: 8%;
  width: 39%;
  height: 51%;
  transform: rotate(2.5deg);
}
.esalon-discovery__badge {
  position: absolute;
  top: 12%;
  right: 6%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 190px;
  padding: 22px;
  background: rgba(76,32,62,.9);
  backdrop-filter: blur(14px);
}
.esalon-discovery__badge strong {
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}
.esalon-discovery__badge span {
  margin-top: 10px;
  color: #decbd7;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-reviews { background: #fff; }
.home-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.home-review-grid .review-card {
  min-height: 290px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: none;
}
.home-review-grid .review-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.home-review-grid .review-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--plum);
  color: #fff;
  border-radius: 50% !important;
}
.home-review-grid .review-card-head strong,
.home-review-grid .review-card-head span { display: block; }
.home-review-grid .review-card-head strong { font-size: 12px; }
.home-review-grid .review-meta { margin-top: 4px; color: #857680; font-size: 9px; }
.home-review-grid .review-rating-row {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 22px;
  color: var(--wine);
  font-size: 9px;
}
.home-review-grid .review-card > p {
  margin: 0;
  color: #5f4f5a;
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.55;
}

.professionals { background: #f7eef3; }
.professional-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}
.professional-grid .pro-result-row,
.professional-grid .gn-pro-card {
  overflow: hidden;
  border: 1px solid rgba(36, 23, 34, 0.12);
  background: #fff;
  box-shadow: none;
}
.professional-grid img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}
.professional-grid .gn-pro-info,
.professional-grid .pro-result-body { padding: 24px; }
.professional-grid h3 { margin: 0 0 8px; font-size: 24px; font-weight: 400; }
.professional-grid p { color: #6f606a; font-size: 12px; line-height: 1.65; }
.professional-grid a,
.professional-grid button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--wine);
  background: transparent;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
}

.pro-invitation {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 720px;
  background: var(--plum);
  color: #fff;
}
.pro-invitation__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 7vw, 120px);
}
.pro-invitation__copy h2 { font-size: clamp(42px, 5vw, 72px); }
.pro-invitation__copy h2 em { color: #dbadca; }
.pro-invitation__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 34px;
  color: #dacbd5;
  line-height: 1.8;
}
.pro-invitation__copy .button--light {
  align-self: flex-start;
  border-color: #fff;
  background: #fff;
  color: var(--plum);
  opacity: 1;
}
.pro-invitation__copy .button--light:hover {
  background: #eadde5;
  color: var(--ink);
}
.pro-invitation__gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 14px;
  padding: 44px 44px 44px 0;
}
.pro-invitation__gallery img { width: 100%; height: 100%; object-fit: cover; }

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 560px;
  justify-content: center;
  text-align: center;
}
.final-cta > p:not(.eyebrow) { max-width: 560px; margin: 26px auto; color: #6f606a; }

.prototype-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr auto;
  align-items: center;
  gap: 30px;
  padding: 60px clamp(20px, 6vw, 90px);
  background: var(--ink);
  color: #fff;
}
.footer-wordmark {
  display: inline-flex;
  align-items: flex-start;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -.04em;
  text-transform: none;
}
.footer-wordmark span { color: #d9a6c3; }
.footer-wordmark i {
  margin: 0 0 0 3px;
  color: #d9a6c3;
  font-size: 11px;
  font-style: normal;
}
.prototype-footer p,
.prototype-footer a {
  color: #bbaeb7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
}
.prototype-footer > div { display: flex; justify-content: center; gap: 30px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(30px) scale(.99);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Services must never depend on JavaScript to remain readable. */
.service-grid [data-reveal] {
  opacity: 1;
  transform: none;
  animation: service-card-enter .7s cubic-bezier(.2,.7,.2,1) both;
}
.service-grid [data-reveal]:nth-child(2) { animation-delay: 90ms; }
.service-grid [data-reveal]:nth-child(3) { animation-delay: 180ms; }

@keyframes service-card-enter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.service-grid [data-reveal]:nth-child(2),
.professional-grid [data-reveal]:nth-child(2),
.home-review-grid [data-reveal]:nth-child(2) { transition-delay: 100ms; }

.service-grid [data-reveal]:nth-child(3),
.professional-grid [data-reveal]:nth-child(3),
.home-review-grid [data-reveal]:nth-child(3) { transition-delay: 200ms; }

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes hero-image-breathe {
  0% { opacity: 0; }
  9% { opacity: 1; }
  100% { opacity: 1; }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-header .nav { gap: 20px; }
  .hero { grid-template-columns: 46% 54%; }
  .quick-booking { top: 30px; left: 24px; width: calc(100% - 48px); }
  .service-card { min-height: 540px; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 72px; }
  .site-header .nav,
  .site-header .topbar-end { display: none; }
  .site-header .nav.is-open {
    position: fixed;
    inset: 72px 12px auto;
    z-index: 140;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 14px;
    border: 1px solid var(--line);
    background: rgba(251, 248, 245, .98);
    box-shadow: 0 18px 50px rgba(36, 23, 34, .14);
    backdrop-filter: blur(18px);
    font-size: 14px;
  }
  .site-header .nav.is-open a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0 4px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    color: var(--ink);
  }
  .site-header .nav.is-open a:last-child { border-bottom: 0; }
  .site-header .nav.is-open a::after { display: none; }
  .site-header .nav.is-open .nav-extra { display: block; }
  .menu-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 10px 5px;
    border: 0;
    background: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .menu-toggle span { width: 100%; height: 1px; background: var(--ink); }
  .site-header.is-nav-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .site-header.is-nav-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; }
  .hero__content { min-height: 640px; padding: 82px 8vw 50px; }
  .hero__visual {
    width: 100vw;
    min-height: max(860px, 100svh);
    margin-inline: calc(50% - 50vw);
    background: #ebe2de;
  }
  .hero__picture img,
  .hero__visual > img {
    width: 100%;
    max-width: none;
  }
  .quick-booking { top: auto; bottom: 32px; left: 32px; width: min(500px, calc(100% - 64px)); }
  .hero__badge { right: 28px; left: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 440px; }
  .experience { grid-template-columns: 1fr; }
  .experience__image { min-height: 650px; }
  .professional-grid { grid-template-columns: 1fr 1fr; }
  .trust-ribbon { grid-template-columns: 1fr 1fr; }
  .trust-ribbon > div:nth-child(2) { border-right: 0; }
  .trust-ribbon > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .commitment-grid { grid-template-columns: 1fr; }
  .commitment-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .commitment-grid article:last-child { border-bottom: 0; }
  .commitment-grid span { margin-bottom: 30px; }
  .esalon-discovery { grid-template-columns: 1fr; }
  .esalon-discovery__visual { min-height: 700px; }
  .home-review-grid { grid-template-columns: 1fr 1fr; }
  .pro-invitation { grid-template-columns: 1fr; }
  .pro-invitation__gallery { min-height: 600px; padding: 0 28px 28px; }
  .prototype-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .announcement { min-height: 42px; padding: 0 44px 0 15px; text-align: center; line-height: 1.45; }
  .site-header { min-height: 68px; padding-inline: 18px; }
  .site-header .brand-logo { width: 126px; }
  .hero__content { min-height: 600px; padding-top: 68px; }
  .hero__intro { font-size: 14px; }
  .gender-switch button { min-height: 44px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero__visual { min-height: 780px; }
  .hero__visual > img { object-position: 63% center; }
  .quick-booking { bottom: 18px; left: 14px; width: calc(100% - 24px); }
  .booking__form.booking__form--quick,
  .booking__form.home-search-card { padding: 18px; }
  .booking-card__fields { grid-template-columns: 1fr 1fr; }
  .booking__form label:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); border-left: 0; }
  .hero__badge { display: none; }
  .section { padding: 84px 20px; }
  .section-heading { margin-bottom: 38px; }
  .service-grid,
  .professional-grid { grid-template-columns: 1fr; }
  .trust-ribbon { grid-template-columns: 1fr; }
  .trust-ribbon > div {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-ribbon > div:last-child { border-bottom: 0; }
  .service-card,
  .service-card:last-child { grid-column: auto; min-height: 520px; }
  .service-card__image { min-height: 310px; }
  .experience__image { min-height: 520px; }
  .experience__content { padding: 80px 24px; }
  .manifesto__footer { flex-direction: column; gap: 20px; text-align: center; }
  .esalon-discovery__copy { padding: 80px 24px; }
  .esalon-discovery__visual { min-height: 590px; }
  .esalon-shot--main { top: 7%; left: 5%; width: 66%; height: 66%; }
  .esalon-shot--small { right: 4%; bottom: 7%; width: 48%; height: 47%; }
  .esalon-discovery__badge { top: 5%; right: 4%; width: 150px; padding: 16px; }
  .home-review-grid { grid-template-columns: 1fr; }
  .pro-invitation__copy { padding: 80px 24px; }
  .pro-invitation__gallery { grid-template-columns: 1fr; min-height: 760px; padding: 0 18px 18px; }
  .prototype-footer { grid-template-columns: 1fr; text-align: left; }
  .prototype-footer > div { flex-wrap: wrap; justify-content: flex-start; gap: 18px; }
}

/* Réservation rapide : notification flottante non bloquante */
body.is-booking-notification-open {
  overflow: auto;
}

.quick-booking.booking-notification,
.quick-booking.booking-notification.is-open {
  position: fixed;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 1200;
  display: block;
  width: min(540px, calc(100vw - 48px));
  padding: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translate(-50%, calc(-50% + 18px));
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.quick-booking.booking-notification.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.booking-notification__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  width: 100%;
  max-height: calc(100svh - 48px);
  margin: 0;
  padding: clamp(28px, 4vw, 40px);
  overflow: auto;
  border: 1px solid rgba(67, 43, 58, .16);
  background: rgba(251, 248, 246, .18);
  box-shadow: 0 24px 70px rgba(36, 23, 34, .18);
  backdrop-filter: blur(2px) saturate(103%);
  -webkit-backdrop-filter: blur(2px) saturate(103%);
  transform: none;
}

.booking-notification.is-open .booking-notification__panel {
  animation: booking-card-enter .58s cubic-bezier(.2,.75,.2,1) both;
}

.booking-notification.is-open .booking-notification__intro,
.booking-notification.is-open .booking-card__fields,
.booking-notification.is-open .booking__form .button {
  animation: booking-content-enter .52s ease-out both;
}

.booking-notification.is-open .booking-card__fields { animation-delay: 90ms; }
.booking-notification.is-open .booking__form .button { animation-delay: 160ms; }

@keyframes booking-card-enter {
  from { opacity: 0; transform: translateY(24px) scale(.965); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes booking-content-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-notification__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(67, 43, 58, .16);
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}

.booking-notification__intro .eyebrow {
  margin-bottom: 14px;
  color: #a34478;
  white-space: nowrap;
}

body[data-page="home"] .booking-notification__intro h2 {
  margin: 0;
  font-size: clamp(42px, 3.4vw, 52px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.055em;
}

.booking-notification__intro h2 em {
  display: inline-block;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  white-space: nowrap;
}

.booking-notification__intro > p:last-child {
  max-width: none;
  margin: 14px 0 0;
  color: #6c5c67;
  font-size: 13px;
  line-height: 1.75;
}

.booking-notification .home-search-card {
  align-self: start;
  margin: 0 !important;
  padding: 0 !important;
  border: 0;
  background: transparent !important;
}

.booking-notification .home-search-card::before {
  display: none;
}

.booking-notification .booking-card__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(67, 43, 58, .18);
  background: rgba(251, 248, 246, .94);
}

.booking-notification .booking__form label,
.booking-notification .booking__form label:last-child {
  width: 100%;
  margin-inline: 0;
  min-height: 65px;
  padding: 14px 18px 12px;
  border: 0;
  border-bottom: 1px solid rgba(67, 43, 58, .16);
  background: transparent;
}

.booking-notification .booking__form label:last-child {
  border-bottom: 0;
}

.booking-notification .booking__form label + label {
  border-left: 0;
}

.booking-notification .booking__form input,
.booking-notification .booking__form select {
  min-height: 30px;
  font-size: 13px;
}

.booking-notification .booking__form .button {
  width: 100%;
  margin: 0;
  min-height: 54px;
}

@media (max-width: 900px) {
  .booking-notification__panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .quick-booking.booking-notification,
  .quick-booking.booking-notification.is-open {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: calc(100vw - 24px);
    padding: 0;
  }

  .booking-notification__panel {
    max-height: calc(100svh - 24px);
    padding: 26px 20px 20px;
  }

  .booking-notification .booking-card__fields {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; filter: none; transform: none; transition: none; }
  .hero__visual > img { animation: none; }
  .service-card,
  .commitment-grid article,
  .button span { transition: none; }
  .gm-image-load { opacity: 1; transition: none; }
  .hero-mood-line { animation: none; }
  .booking-notification.is-open .booking-notification__panel,
  .booking-notification.is-open .booking-notification__intro,
  .booking-notification.is-open .booking-card__fields,
  .booking-notification.is-open .booking__form .button { animation: none; }
}

/* Notification de connexion — même composition que la réservation rapide */
.home-login-notification {
  width: min(720px, calc(100vw - 32px));
  max-width: none;
  padding: 10px;
  border: 1px solid rgba(92, 42, 68, .2);
  border-radius: 0;
  background: rgba(247, 238, 242, .78);
  box-shadow: 0 28px 90px rgba(42, 24, 35, .22);
  backdrop-filter: blur(18px);
}
.home-login-notification::backdrop {
  background: rgba(48, 31, 42, .28);
  backdrop-filter: blur(8px);
}
.home-login-notification__frame {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(92, 42, 68, .14);
  background: rgba(255, 250, 248, .9);
}
.home-login-notification .booking-notification__close { top: 14px; right: 14px; }
.home-login-notification .eyebrow { margin: 0; color: #a24b72; }
body[data-page="home"] .home-login-notification h2 {
  margin: 0;
  color: #2d2028;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: .98;
}
.home-login-notification h2 em { color: #7a2858; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.home-login-notification__frame > p:not(.eyebrow) { max-width: 540px; margin: 0; color: #75676f; line-height: 1.65; }
.home-login-notification .popup-form { display: grid; grid-template-columns: 1fr auto; gap: 0; padding: 8px 0 0; }
.home-login-notification .popup-form label { display: grid; gap: 7px; }
.home-login-notification .popup-form label span { color: #8b7b83; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.home-login-notification .popup-form input { min-height: 54px; border: 1px solid #d9cbd1; border-right: 0; border-radius: 0; background: #fffdfb; }
.home-login-notification .popup-form .button { min-width: 190px; min-height: 54px; align-self: end; }
.home-login-notification__link { justify-self: start; color: #652344; font-size: .72rem; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }
@media (max-width: 600px) {
  .home-login-notification .popup-form { grid-template-columns: 1fr; gap: 10px; }
  .home-login-notification .popup-form input { border-right: 1px solid #d9cbd1; }
  .home-login-notification .popup-form .button { width: 100%; }
}

@media (max-width: 600px) {
  .hero-mood-line {
    bottom: 0;
    right: 18px;
    left: auto;
    width: max-content;
    max-width: calc(100% - 36px);
    font-size: clamp(30px, 9vw, 48px);
  }
}
