/*
Theme Name: Les Adresses Beauté & Bien-être
Theme URI: https://adresses-beaute-bien-etre.david-emediaconnect.chatgpt.site
Author: eMedia Connect
Description: Thème officiel du guide Les Adresses Beauté & Bien-être.
Version: 1.2.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: adresses-beaute
*/

:root {
  --font-geist: "Inter";
  --font-editorial: "Cormorant Garamond";
  --ivory: #f7f4f0;
  --paper: #fdfbf8;
  --ink: #4f4945;
  --plum: #74675f;
  --plum-deep: #60554f;
  --rose: #c9b8aa;
  --rose-deep: #8c7466;
  --violet: #88786f;
  --blush: #eee8e2;
  --sage: #bbb2aa;
  --eucalyptus: #9b8f86;
  --eucalyptus-deep: #71665f;
  --line: #e5ddd6;
  --muted: #746c67;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-geist), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

.home-page,
.landing-page,
.profile-page {
  min-height: 100vh;
}

/* Pictogrammes beauté */
.beauty-pictogram {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
}

.beauty-pictogram__main {
  position: relative;
  z-index: 1;
}

.beauty-pictogram__accent {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  padding: 2px;
  border-radius: 50%;
}

.beauty-pictogram--hair .beauty-pictogram__main {
  transform: rotate(-8deg);
}

/* Accueil — même structure que le modèle Travaux */
.home-page {
  background: var(--paper);
}

.home-hero {
  position: relative;
  min-height: 408px;
  overflow: hidden;
  color: var(--ink);
}

.home-hero__image,
.landing-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-hero__image {
  object-position: 64% 48%;
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 244, 239, 0.95) 0%, rgba(246, 241, 236, 0.84) 44%, rgba(246, 241, 236, 0.1) 78%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 126px 0 90px;
}

.home-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--rose-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--plum-deep);
  font-size: clamp(2.55rem, 5vw, 4rem);
  font-weight: 470;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.home-hero__content > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.guides-section {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 88px;
}

.guides-heading {
  min-height: 52px;
  margin-bottom: 25px;
  padding-bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.guides-heading h2 {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--plum-deep);
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.guides-heading h2::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--rose), var(--eucalyptus));
  border-radius: 99px;
}

.guides-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.guide-card {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px 12px 0 0;
}

.guide-card__image-link {
  display: block;
  aspect-ratio: 1.75 / 1;
  overflow: hidden;
  background: var(--blush);
}

.guide-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 350ms ease;
}

.guide-card:first-child .guide-card__image {
  object-position: 67% center;
}

.guide-card:hover .guide-card__image {
  transform: scale(1.025);
}

.guide-card__body {
  padding: 25px 19px 27px;
}

.guide-card__zone {
  margin: 0 0 16px;
  color: var(--rose-deep);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 0;
  color: var(--plum);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.3;
}

.guide-card__body > p:not(.guide-card__zone) {
  min-height: 44px;
  margin: 15px 0 18px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.guide-card__link {
  color: var(--rose-deep);
  font-size: 0.8rem;
  font-weight: 720;
}

/* Bandeau de la landing */
.feature-bar {
  position: relative;
  z-index: 2;
  background: #faf7f3;
  color: #2c241f;
  border-bottom: 1px solid #e7dfd9;
}

.feature-bar__inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  min-width: 0;
  min-height: 220px;
  padding: 30px 24px 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.feature-item + .feature-item {
  border-left: 1px solid #e7dfd9;
}

.feature-icon-frame {
  position: relative;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f4ebe4, #ede0d7);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(118, 85, 75, 0.055);
}

.feature-icon-frame::before,
.feature-icon-frame::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1.25px solid #a36f86;
  border-radius: 50%;
  clip-path: polygon(0 0, 54% 0, 54% 12%, 100% 12%, 100% 100%, 43% 100%, 43% 88%, 0 88%);
}

.feature-icon-frame::after {
  inset: -3px;
  border-width: 0.8px;
  opacity: 0.3;
  transform: rotate(19deg);
}

.feature-item__copy h2 {
  margin: 0;
  color: #302824;
  font-size: clamp(0.98rem, 1.35vw, 1.22rem);
  font-weight: 670;
  letter-spacing: -0.018em;
  line-height: 1.18;
}

.feature-item__copy p {
  max-width: 230px;
  margin: 9px auto 0;
  color: #6d625c;
  font-size: clamp(0.76rem, 0.94vw, 0.9rem);
  font-weight: 400;
  line-height: 1.48;
}

.feature-icon {
  width: 51px;
  height: 51px;
  color: #59463e;
}

.feature-icon .beauty-pictogram__main {
  width: 39px;
  height: 39px;
}

.feature-icon .beauty-pictogram__accent {
  width: 18px;
  height: 18px;
  color: #755769;
  background: transparent;
}

/* Hero de landing */
.landing-page {
  background: #fbf7f4;
}

.landing-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #241b17;
}

.landing-hero__image {
  object-position: 69% center;
  filter: saturate(0.91) contrast(0.97) brightness(1.01);
}

.landing-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 245, 240, 0.985) 0%, rgba(249, 245, 240, 0.91) 32%, rgba(249, 245, 240, 0.5) 54%, rgba(249, 245, 240, 0.02) 78%),
    linear-gradient(180deg, rgba(249, 245, 240, 0.02) 64%, rgba(249, 245, 240, 0.56) 100%);
}

.landing-hero__content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: 62px;
}

.landing-hero h1 {
  max-width: 530px;
  margin: 0;
  color: #241b17;
  font-family: var(--font-editorial), Georgia, "Times New Roman", serif;
  font-size: clamp(3.55rem, 5.35vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -0.044em;
  line-height: 0.88;
}

.landing-hero h1 span {
  display: block;
}

.landing-hero__location {
  margin: 20px 0 0;
  color: #9a6079;
  font-family: var(--font-editorial), Georgia, "Times New Roman", serif;
  font-size: clamp(2.95rem, 4.8vw, 4.65rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.landing-hero__ornament {
  width: 88px;
  height: 14px;
  margin: 17px 0 22px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.landing-hero__ornament::before {
  content: "";
  width: 55px;
  height: 2px;
  background: #a26b82;
  border-radius: 99px;
}

.landing-hero__ornament span {
  width: 5px;
  height: 5px;
  background: #a26b82;
  border-radius: 50%;
}

.landing-hero__intro {
  max-width: 360px;
  margin: 0;
  color: #514944;
  font-size: clamp(0.89rem, 1.12vw, 1rem);
  line-height: 1.62;
}

.landing-hero__button {
  width: fit-content;
  min-width: 194px;
  min-height: 68px;
  margin-top: 26px;
  padding: 12px 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fffdfb;
  background: linear-gradient(135deg, #95687b, #9d607c);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(77, 47, 59, 0.16);
  font-size: 0.93rem;
  font-weight: 650;
  letter-spacing: 0.004em;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.landing-hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(77, 47, 59, 0.22);
}

.landing-hero__button svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  stroke-width: 1.45;
}

.landing-hero__organic {
  position: absolute;
  z-index: 2;
  right: -11%;
  bottom: -119px;
  width: 70%;
  height: 220px;
  background: rgba(249, 245, 240, 0.95);
  border-radius: 63% 0 0 0 / 100% 0 0 0;
  transform: rotate(-2deg);
}

.landing-hero__foliage {
  position: absolute;
  z-index: 4;
  right: 5.5%;
  bottom: 17px;
  width: 112px;
  height: 112px;
  color: #a46f86;
  opacity: 0.66;
  transform: rotate(-16deg);
}

.landing-hero__foliage svg {
  width: 92px;
  height: 92px;
  stroke-width: 1.15;
}

.landing-hero__foliage span {
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 7px;
  height: 7px;
  background: #9e5577;
  border-radius: 50%;
}

.landing-hero__foliage span + span {
  left: 22px;
  bottom: 11px;
  width: 4px;
  height: 4px;
}

.landing-introduction {
  width: min(700px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 65px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.88;
}

.landing-introduction p {
  margin: 0;
}

.landing-introduction p + p {
  margin-top: 19px;
}

.landing-introduction__lead {
  position: relative;
  color: var(--plum);
  font-weight: 690;
}

.landing-introduction__lead::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  width: 7px;
  background: linear-gradient(180deg, var(--rose), var(--eucalyptus));
}

.directory-title {
  width: calc(100% - 48px);
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.directory-title__line {
  height: 1px;
  background: var(--line);
}

.directory-title__center {
  display: flex;
  align-items: center;
  gap: 14px;
}

.directory-title__divider {
  width: 2px;
  height: 45px;
  background: var(--rose);
}

.directory-title h2 {
  margin: 0;
  color: var(--plum);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 740;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.directory-title__icon {
  width: 48px;
  height: 48px;
  color: var(--rose-deep);
}

.directory-title__icon .beauty-pictogram__main {
  width: 36px;
  height: 36px;
}

.directory-title__icon .beauty-pictogram__accent {
  width: 17px;
  height: 17px;
  color: var(--plum-deep);
  background: var(--rose);
}

/* Cartes éditoriales des landings */
.listing {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 86px;
}

.listing-card {
  position: relative;
  padding: 46px clamp(18px, 3.7vw, 44px) 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.listing-card + .listing-card {
  margin-top: 64px;
  border-top: 1px solid #e9e2dd;
}

.listing-card__image-link {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--blush);
  border-radius: 31px;
  box-shadow: 0 5px 20px rgba(96, 85, 79, 0.055);
}

.listing-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 350ms ease;
}

.listing-card__image--maison-lunea {
  object-position: 68% center;
}

.listing-card__image-link:hover .listing-card__image {
  transform: scale(1.02);
}

.listing-card__content {
  width: min(790px, 100%);
  padding: 45px 0 0;
  text-align: center;
}

.listing-specialty {
  width: fit-content;
  min-height: 72px;
  margin: 0 auto;
  padding: 11px 31px 11px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--plum);
  background: rgba(255, 253, 250, 0.82);
  border: 2px solid rgba(130, 113, 104, 0.72);
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 620;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.listing-specialty__icon {
  width: 41px;
  height: 41px;
  color: var(--rose-deep);
}

.listing-specialty__icon .beauty-pictogram__main {
  width: 32px;
  height: 32px;
}

.listing-specialty__icon .beauty-pictogram__accent {
  width: 16px;
  height: 16px;
  color: var(--plum-deep);
  background: #ead7d6;
}

.listing-location,
.profile-location-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 730;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.listing-location {
  margin: 28px auto 0;
  padding: 11px 20px;
  color: #9a6079;
  background: rgba(255, 253, 250, 0.78);
  border: 1px solid rgba(183, 153, 165, 0.42);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.listing-location svg {
  width: 18px;
  height: 18px;
}

.profile-location-pill svg {
  width: 16px;
  height: 16px;
}

.listing-card h3 {
  margin: 29px 0 0;
  color: var(--plum);
  font-weight: 400;
}

.listing-card h3 strong,
.listing-card h3 span {
  display: block;
}

.listing-card h3 strong {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  color: #5a4d47;
  font-family: var(--font-editorial), Georgia, "Times New Roman", serif;
  font-size: clamp(3.45rem, 6vw, 5.05rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.listing-card h3 strong::after {
  content: "";
  width: 82px;
  height: 3px;
  margin: 18px auto 0;
  display: block;
  background: linear-gradient(90deg, transparent, #e0bfba 20%, #e0bfba 80%, transparent);
  border-radius: 99px;
}

.listing-card h3 span {
  max-width: 760px;
  margin: 19px auto 0;
  color: #655852;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 380;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.listing-card__excerpt {
  width: min(680px, 82%);
  margin: 28px auto 0;
  color: #655852;
  font-size: 1rem;
  line-height: 1.62;
  text-align: left;
}

.listing-card__excerpt p {
  margin: 0;
}

.listing-card__excerpt p + p {
  margin-top: 8px;
}

.listing-card__more {
  width: fit-content;
  margin: 25px auto 0;
  padding: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #9b627b;
  border-bottom: 1px solid currentColor;
  font-size: 0.95rem;
  font-weight: 720;
  transition: gap 180ms ease, color 180ms ease;
}

.listing-card__more:hover {
  gap: 30px;
  color: #7f4e65;
}

.listing-card__more svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.45;
}

.listing-highlights {
  width: min(900px, 95%);
  min-height: 136px;
  margin: 39px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  list-style: none;
  background: rgba(255, 253, 250, 0.58);
  border: 1px solid #e9e2dd;
  border-radius: 26px;
}

.listing-highlights li {
  min-width: 0;
  padding: 22px 14px 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #5a4f49;
  text-align: center;
}

.listing-highlights li + li {
  border-left: 1px solid #e9e2dd;
}

.listing-highlights svg {
  width: 40px;
  height: 40px;
  color: #9b746d;
  stroke-width: 1.35;
}

.listing-highlights li:nth-child(2) svg {
  color: #7f776d;
}

.listing-highlights li:nth-child(3) svg,
.listing-highlights li:nth-child(4) svg {
  color: #c18f8f;
}

.listing-highlights span {
  max-width: 130px;
  font-size: 0.82rem;
  font-weight: 670;
  line-height: 1.25;
}

/* Fiches professionnelles — ordre identique au modèle */
.profile-page {
  padding: 33px 24px 74px;
  background: var(--ivory);
}

.profile-shell {
  width: min(1150px, 100%);
  margin: 0 auto;
}

.profile-hero {
  width: 100%;
  aspect-ratio: 2.52 / 1;
  overflow: hidden;
  background: var(--blush);
  border-radius: 25px;
  box-shadow: 0 10px 26px rgba(96, 85, 79, 0.08);
}

.profile-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.profile-hero__image--maison-lunea {
  object-position: 68% center;
}

.profile-heading {
  width: min(1000px, 100%);
  margin: 46px auto 0;
  text-align: center;
}

.profile-specialty-pill {
  width: fit-content;
  min-height: 54px;
  margin: 0 auto;
  padding: 8px 22px 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  background: rgba(253, 251, 248, 0.7);
  border: 2px solid var(--eucalyptus);
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 700;
}

.profile-specialty-pill__icon {
  width: 34px;
  height: 34px;
  color: var(--rose-deep);
}

.profile-specialty-pill__icon .beauty-pictogram__main {
  width: 27px;
  height: 27px;
}

.profile-specialty-pill__icon .beauty-pictogram__accent {
  width: 13px;
  height: 13px;
  color: var(--plum-deep);
  background: var(--rose);
}

.profile-location-pill {
  margin: 17px auto 0;
  padding: 8px 14px;
  color: var(--violet);
  background: rgba(253, 251, 248, 0.7);
  border: 1px solid rgba(136, 120, 111, 0.4);
}

.profile-heading h1 {
  margin: 25px 0 0;
  color: var(--plum);
  font-size: clamp(2.45rem, 4.5vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.profile-heading h1 strong,
.profile-heading h1 span {
  display: block;
}

.profile-heading h1 strong {
  font-weight: 740;
}

.profile-heading h1 span {
  margin-top: 3px;
}

.profile-actions {
  width: min(970px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.profile-actions a {
  min-height: 59px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--plum);
  background: transparent;
  border: 1.5px solid var(--eucalyptus);
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 720;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.profile-actions a:hover {
  color: var(--plum-deep);
  background: var(--blush);
  transform: translateY(-2px);
}

.profile-actions svg {
  width: 20px;
  height: 20px;
  color: var(--rose-deep);
}

.profile-actions a:hover svg {
  color: var(--rose-deep);
}

.profile-gallery {
  width: min(1070px, 100%);
  margin: 53px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.profile-gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  appearance: none;
  background: var(--blush);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 11px 24px rgba(96, 85, 79, 0.1);
  cursor: zoom-in;
}

.profile-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.profile-gallery__item:hover img,
.profile-gallery__item:focus-visible img {
  transform: scale(1.025);
}

.profile-gallery__item:focus-visible {
  outline: 3px solid rgba(201, 184, 170, 0.72);
  outline-offset: 4px;
}

.profile-gallery__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(136, 120, 111, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(96, 85, 79, 0.18);
}

.profile-gallery__zoom svg {
  width: 18px;
  height: 18px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  min-height: 100dvh;
  padding: max(34px, env(safe-area-inset-top)) max(34px, env(safe-area-inset-right)) max(34px, env(safe-area-inset-bottom)) max(34px, env(safe-area-inset-left));
  display: grid;
  place-items: center;
  background: rgba(60, 54, 50, 0.92);
  backdrop-filter: blur(7px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.not-found {
  min-height: 70vh;
  padding: 96px 24px;
  text-align: center;
}

.not-found h1 {
  font-family: var(--font-editorial), Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.gallery-lightbox__stage {
  position: relative;
  width: min(1160px, 92vw);
  height: min(840px, 84dvh);
  display: grid;
  place-items: center;
}

.gallery-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(136, 120, 111, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  cursor: pointer;
}

.gallery-lightbox__close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 48px;
  height: 48px;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
}

.gallery-lightbox__nav--previous {
  left: 15px;
}

.gallery-lightbox__nav--next {
  right: 15px;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  background: var(--rose-deep);
  outline: 3px solid rgba(255, 255, 255, 0.68);
  outline-offset: 3px;
}

.gallery-lightbox__close svg,
.gallery-lightbox__nav svg {
  width: 25px;
  height: 25px;
}

.gallery-lightbox__counter {
  position: absolute;
  bottom: -28px;
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
}

.profile-story {
  width: min(780px, calc(100% - 40px));
  margin: 85px auto 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.9;
}

.profile-story p {
  margin: 0;
}

.profile-story p + p {
  margin-top: 27px;
}

.profile-story p:first-child::first-line {
  color: var(--plum-deep);
  font-weight: 680;
}

.know-how {
  width: min(1070px, 100%);
  margin: 76px auto 0;
  padding: 47px 43px 43px;
  background: rgba(253, 251, 248, 0.92);
  border: 1.5px solid var(--eucalyptus);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(96, 85, 79, 0.07);
}

.know-how__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
}

.know-how__icon {
  width: 65px;
  height: 65px;
  color: var(--rose-deep);
}

.know-how__icon .beauty-pictogram__main {
  width: 51px;
  height: 51px;
}

.know-how__icon .beauty-pictogram__accent {
  width: 23px;
  height: 23px;
  color: var(--plum-deep);
  background: var(--rose);
}

.know-how__heading h2 {
  margin: 0;
  color: var(--plum-deep);
  font-size: 1.65rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.know-how__heading p {
  width: fit-content;
  margin: 8px auto 0;
  color: var(--eucalyptus-deep);
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.know-how__services {
  margin-top: 33px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.know-how__services > div {
  min-height: 74px;
  padding: 13px 27px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  text-align: left;
}

.know-how__services > div + div {
  border-left: 1px solid rgba(155, 143, 134, 0.42);
}

.know-how__service-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--eucalyptus-deep);
}

.know-how__service-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.65;
}

.know-how__services p {
  margin: 0;
  color: var(--plum);
  font-size: 1rem;
  line-height: 1.45;
}

.practical {
  width: min(960px, 100%);
  margin: 62px auto 0;
}

.practical > h2 {
  position: relative;
  margin: 0 0 34px;
  padding-bottom: 18px;
  color: var(--plum);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.practical > h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70px;
  height: 1px;
  background: var(--eucalyptus);
  transform: translateX(-50%);
}

.practical-table {
  border-top: 0;
}

.practical-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: 295px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(155, 143, 134, 0.55);
}

.practical-label {
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  color: var(--eucalyptus-deep);
}

.practical-label svg {
  width: 26px;
  height: 26px;
}

.practical-label strong {
  font-size: 0.77rem;
  font-weight: 740;
  line-height: 1.3;
  text-transform: uppercase;
}

.practical-row > p,
.practical-row > a {
  margin: 0;
  padding: 16px 12px;
  color: var(--plum);
  font-size: 0.92rem;
  line-height: 1.55;
}

.practical-row > a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.practical-row > p span {
  display: block;
}

.social-map {
  width: min(1070px, 100%);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
}

.social-card,
.map-card {
  overflow: hidden;
  background: var(--paper);
  border: 1.5px solid var(--eucalyptus);
  border-radius: 15px;
}

.social-card {
  min-height: 288px;
  padding: 32px 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.social-card h2 {
  margin: 0;
  color: var(--plum-deep);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.15;
}

.social-card__links {
  margin-top: 22px;
  display: flex;
  gap: 14px;
}

.social-card__links a {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  color: var(--plum-deep);
  background: linear-gradient(145deg, #eadfd6, #d9ccc2);
  border-radius: 15px;
}

.social-card__links a:nth-child(2) {
  background: #e5dfda;
}

.social-card__links svg {
  width: 27px;
  height: 27px;
}

.map-card {
  padding: 9px;
}

.map-card iframe {
  width: 100%;
  height: 218px;
  display: block;
  border: 0;
  border-radius: 9px;
}

.map-card > a {
  min-height: 42px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  border: 1.5px solid var(--eucalyptus);
  border-radius: 7px;
  font-size: 0.79rem;
  font-weight: 720;
}

a:focus-visible {
  outline: 3px solid rgba(201, 184, 170, 0.72);
  outline-offset: 4px;
}

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

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

  .feature-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #e7dfd9;
  }

  .feature-item:nth-child(4) {
    border-top: 1px solid #e7dfd9;
  }

  .listing-card {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: 450px;
  }

  .home-hero__image {
    object-position: 70% center;
  }

  .home-hero__shade {
    background: linear-gradient(90deg, rgba(248, 244, 239, 0.97), rgba(246, 241, 236, 0.72));
  }

  .home-hero__content {
    width: calc(100% - 38px);
    padding: 126px 0 72px;
  }

  .home-hero__eyebrow {
    max-width: 300px;
    font-size: 0.66rem;
    line-height: 1.55;
  }

  .home-hero h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .home-hero__content > p:last-child {
    font-size: 0.92rem;
  }

  .guides-section {
    width: calc(100% - 32px);
    padding: 52px 0 62px;
  }

  .guides-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .guides-heading > p {
    padding-left: 18px;
    line-height: 1.5;
  }

  .guides-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .guide-card__body > p:not(.guide-card__zone) {
    min-height: 0;
  }

  .feature-bar__inner {
    min-height: 0;
  }

  .feature-item {
    min-height: 151px;
    padding: 16px 9px 15px;
    gap: 10px;
  }

  .feature-icon-frame {
    width: 59px;
    height: 59px;
  }

  .feature-icon-frame::before {
    inset: -5px;
    border-width: 1px;
  }

  .feature-icon-frame::after {
    inset: -3px;
  }

  .feature-item__copy h2 {
    font-size: clamp(0.84rem, 3.85vw, 0.98rem);
    line-height: 1.15;
  }

  .feature-item__copy p {
    max-width: 175px;
    margin-top: 7px;
    font-size: clamp(0.67rem, 2.9vw, 0.76rem);
    line-height: 1.38;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon .beauty-pictogram__main {
    width: 31px;
    height: 31px;
  }

  .feature-icon .beauty-pictogram__accent {
    width: 15px;
    height: 15px;
  }

  .landing-hero {
    min-height: clamp(480px, 115vw, 540px);
  }

  .landing-hero__image {
    object-position: 68% center;
  }

  .landing-hero__shade {
    background:
      linear-gradient(90deg, rgba(249, 245, 240, 0.985) 0%, rgba(249, 245, 240, 0.86) 47%, rgba(249, 245, 240, 0.15) 84%),
      linear-gradient(180deg, rgba(249, 245, 240, 0.02) 62%, rgba(249, 245, 240, 0.64) 100%);
  }

  .landing-hero__content {
    width: calc(100% - 42px);
    padding-top: 36px;
  }

  .landing-hero h1 {
    max-width: 310px;
    font-size: clamp(2.38rem, 10.8vw, 2.9rem);
    letter-spacing: -0.044em;
    line-height: 0.89;
  }

  .landing-hero__location {
    max-width: 345px;
    margin-top: 13px;
    font-size: clamp(2.02rem, 9.2vw, 2.55rem);
    line-height: 0.98;
  }

  .landing-hero__ornament {
    width: 78px;
    height: 13px;
    margin: 12px 0 16px;
  }

  .landing-hero__ornament::before {
    width: 47px;
    height: 2px;
  }

  .landing-hero__ornament span {
    width: 5px;
    height: 5px;
  }

  .landing-hero__intro {
    max-width: 245px;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .landing-hero__button {
    min-width: 180px;
    min-height: 63px;
    margin-top: 20px;
    padding: 10px 17px;
    gap: 11px;
    border-radius: 8px;
    font-size: 0.87rem;
  }

  .landing-hero__button svg {
    width: 25px;
    height: 25px;
  }

  .landing-hero__organic {
    right: -31%;
    bottom: -75px;
    width: 116%;
    height: 154px;
  }

  .landing-hero__foliage {
    right: 3%;
    bottom: 6px;
    width: 73px;
    height: 73px;
  }

  .landing-hero__foliage svg {
    width: 62px;
    height: 62px;
  }

  .landing-hero__foliage span {
    left: 2px;
    bottom: 3px;
    width: 5px;
    height: 5px;
  }

  .landing-hero__foliage span + span {
    left: 14px;
    bottom: 7px;
    width: 3px;
    height: 3px;
  }

  .landing-introduction {
    width: calc(100% - 42px);
    padding: 42px 0 51px;
    font-size: 0.91rem;
    line-height: 1.82;
  }

  .landing-introduction__lead::before {
    display: none;
  }

  .directory-title {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .directory-title__line {
    width: 100%;
  }

  .directory-title__center {
    justify-content: center;
    gap: 10px;
  }

  .directory-title__divider {
    height: 38px;
  }

  .directory-title h2 {
    max-width: 235px;
    font-size: 1.04rem;
    line-height: 1.3;
  }

  .directory-title__icon {
    width: 42px;
    height: 42px;
  }

  .directory-title__icon .beauty-pictogram__main {
    width: 31px;
    height: 31px;
  }

  .listing {
    width: calc(100% - 28px);
    padding-bottom: 54px;
  }

  .listing-card {
    padding: 12px 12px 30px;
  }

  .listing-card + .listing-card {
    margin-top: 42px;
  }

  .listing-card__image-link {
    aspect-ratio: 16 / 9;
    border-radius: 23px;
  }

  .listing-card__content {
    padding: 26px 8px 0;
  }

  .listing-specialty,
  .listing-location {
    margin-right: auto;
    margin-left: auto;
  }

  .listing-specialty {
    max-width: 100%;
    min-height: 53px;
    padding: 8px 19px 8px 13px;
    gap: 11px;
    border-width: 1.25px;
    font-size: 0.73rem;
    letter-spacing: 0.16em;
    line-height: 1.25;
  }

  .listing-specialty__icon {
    width: 33px;
    height: 33px;
  }

  .listing-specialty__icon .beauty-pictogram__main {
    width: 26px;
    height: 26px;
  }

  .listing-specialty__icon .beauty-pictogram__accent {
    width: 13px;
    height: 13px;
  }

  .listing-location {
    margin-top: 16px;
    padding: 9px 16px;
    font-size: 0.63rem;
  }

  .listing-card h3 {
    margin-top: 24px;
  }

  .listing-card h3 strong {
    font-size: clamp(2.15rem, 10.2vw, 2.55rem);
    line-height: 1;
  }

  .listing-card h3 strong::after {
    width: 58px;
    height: 2px;
    margin-top: 13px;
  }

  .listing-card h3 span {
    margin-top: 12px;
    font-size: clamp(1.32rem, 6.1vw, 1.56rem);
    line-height: 1.4;
  }

  .listing-card__excerpt {
    margin-top: 23px;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .listing-card__more {
    margin-top: 23px;
    gap: 20px;
    font-size: 0.88rem;
  }

  .listing-highlights {
    min-height: 98px;
    margin-top: 20px;
    border-radius: 20px;
  }

  .listing-highlights li {
    padding: 16px 4px 14px;
    gap: 8px;
  }

  .listing-highlights svg {
    width: 30px;
    height: 30px;
  }

  .listing-highlights span {
    max-width: 76px;
    font-size: clamp(0.58rem, 2.65vw, 0.68rem);
    line-height: 1.2;
  }

  .profile-page {
    padding: 20px 16px 55px;
  }

  .profile-hero {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .profile-hero__image--maison-lunea {
    object-position: 68% center;
  }

  .profile-heading {
    margin-top: 31px;
  }

  .profile-specialty-pill {
    min-height: 48px;
    padding: 6px 18px 6px 12px;
    font-size: 0.84rem;
  }

  .profile-location-pill {
    margin-top: 14px;
    font-size: 0.63rem;
  }

  .profile-heading h1 {
    margin-top: 20px;
    font-size: 2.08rem;
    line-height: 1.09;
  }

  .profile-actions {
    margin-top: 27px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .profile-actions a {
    min-height: 65px;
    padding: 9px 5px;
    flex-direction: column;
    gap: 5px;
    font-size: 0.7rem;
  }

  .profile-actions svg {
    width: 18px;
    height: 18px;
  }

  .profile-gallery {
    margin-top: 36px;
    gap: 8px;
  }

  .profile-gallery__item {
    border-radius: 10px;
    box-shadow: 0 7px 17px rgba(96, 85, 79, 0.08);
  }

  .profile-gallery__zoom {
    right: 7px;
    bottom: 7px;
    width: 31px;
    height: 31px;
  }

  .profile-gallery__zoom svg {
    width: 15px;
    height: 15px;
  }

  .gallery-lightbox {
    padding: max(58px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(48px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  }

  .gallery-lightbox__stage {
    width: 100%;
    height: min(76dvh, 680px);
  }

  .gallery-lightbox__image {
    border-radius: 9px;
  }

  .gallery-lightbox__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .gallery-lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .gallery-lightbox__nav--previous {
    left: 7px;
  }

  .gallery-lightbox__nav--next {
    right: 7px;
  }

  .profile-story {
    width: calc(100% - 24px);
    margin-top: 49px;
    font-size: 0.92rem;
    line-height: 1.82;
  }

  .know-how {
    margin-top: 50px;
    padding: 31px 20px 23px;
    border-radius: 15px;
  }

  .know-how__heading {
    gap: 10px;
  }

  .know-how__icon {
    width: 49px;
    height: 49px;
  }

  .know-how__icon .beauty-pictogram__main {
    width: 38px;
    height: 38px;
  }

  .know-how__icon .beauty-pictogram__accent {
    width: 18px;
    height: 18px;
  }

  .know-how__heading h2 {
    font-size: 1.35rem;
  }

  .know-how__services {
    width: min(100%, 330px);
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: 1fr;
  }

  .know-how__services > div {
    min-height: 60px;
    padding: 11px 10px;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 14px;
  }

  .know-how__services > div + div {
    border-top: 1px solid rgba(155, 143, 134, 0.42);
    border-left: 0;
  }

  .know-how__services p {
    font-size: 0.94rem;
  }

  .practical {
    margin-top: 50px;
  }

  .practical > h2 {
    margin-bottom: 20px;
    font-size: 1.35rem;
  }

  .practical-row {
    min-height: 0;
    padding: 15px 6px;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .practical-label {
    padding: 3px 5px;
    grid-template-columns: 32px 1fr;
    gap: 8px;
  }

  .practical-label svg {
    width: 22px;
    height: 22px;
  }

  .practical-row > p,
  .practical-row > a {
    padding: 6px 5px 2px 45px;
    font-size: 0.88rem;
  }

  .social-map {
    margin-top: 46px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .social-card {
    min-height: 190px;
  }

  .social-card h2 {
    font-size: 1.55rem;
  }

  .map-card iframe {
    height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
