/* ═══════════════════════════════════
   Variables & Reset
═══════════════════════════════════ */
:root {
  --rose:       #9B5E78;
  --rose-dk:    #7A4560;
  --rose-lt:    #C49AAF;
  --beige:      #C4A882;
  --beige-lt:   #EDE0D0;
  --cream:      #FAF7F4;
  --cream-dk:   #F0E8E0;
  --dark:       #1E1410;
  --text:       #3D2B22;
  --text-lt:    #7A6255;
  --white:      #FFFFFF;
  --nav-h:      70px;
  --radius:     10px;
  --radius-lg:  20px;
  --shadow:     0 2px 16px rgba(30,20,16,.10);
  --shadow-lg:  0 8px 40px rgba(30,20,16,.16);
  --ease:       .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ═══════════════════════════════════
   Typo
═══════════════════════════════════ */
h1,h2,h3,h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .75rem;
}

/* ═══════════════════════════════════
   Layout
═══════════════════════════════════ */
.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}
.section        { padding: 88px 0; }
.section--cream { background: var(--cream); }
.section--beige { background: var(--cream-dk); }

/* ═══════════════════════════════════
   Buttons
═══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ease);
}
.btn--rose {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  box-shadow: 0 4px 16px rgba(155,94,120,.38);
}
.btn--rose:hover  { background: var(--rose-dk); border-color: var(--rose-dk); transform: translateY(-2px); }
.btn--ghost       { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn--outline     { background: transparent; color: var(--rose); border-color: var(--rose); }
.btn--outline:hover { background: var(--rose); color: var(--white); transform: translateY(-2px); }

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999;
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.solid {
  background: rgba(250,247,244,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 18px rgba(30,20,16,.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Georgia', serif;
}
.nav__logo-mark {
  width: 38px; height: 38px;
  background: var(--rose);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav__logo-text {
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 700;
  white-space: nowrap;
}
.nav__logo-sub {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-lt);
  display: block;
  font-family: sans-serif;
  margin-top: -2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav__links a::after {
  content:'';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: width var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--rose); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--rose);
  white-space: nowrap;
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  flex-direction: column;
  gap: .25rem;
  animation: slideIn .25s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .8rem .75rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--ease);
}
.mobile-menu a:hover { background: var(--cream-dk); color: var(--rose); }
.mobile-menu .mob-phone {
  margin-top: .5rem;
  padding: .9rem .75rem;
  background: var(--rose);
  color: var(--white) !important;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../20240518_101709.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,5,3,.55) 0%,
    rgba(20,10,6,.45) 50%,
    rgba(10,5,3,.70) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  max-width: 700px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero__title em {
  font-style: normal;
  color: var(--beige-lt);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 2.25rem;
  max-width: 500px;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.hero__chip {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll::before {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════
   SECTION: SERVICES RAPIDES
═══════════════════════════════════ */
.services-strip {
  padding: 0;
  position: relative;
  z-index: 2;
}

.services-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.strip-item {
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid var(--cream-dk);
  transition: background var(--ease);
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--cream); }
.strip-item__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.strip-item h4 {
  font-size: .9rem;
  margin-bottom: .1rem;
  color: var(--dark);
}
.strip-item p {
  font-size: .78rem;
  color: var(--text-lt);
  line-height: 1.4;
}

/* ═══════════════════════════════════
   SECTION: À PROPOS
═══════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .75rem;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.about-photo:hover img { transform: scale(1.04); }

.about-photo--tall {
  grid-row: span 2;
  height: 420px;
}
.about-photo--short { height: 200px; }

.about-text h2 { margin-bottom: 1rem; }
.about-text p   { color: var(--text-lt); margin-bottom: 1.25rem; font-size: .97rem; }

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.75rem 0;
}
.about-pill {
  background: var(--cream-dk);
  border: 1px solid rgba(155,94,120,.18);
  color: var(--rose);
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem .9rem;
  border-radius: 50px;
}

/* ═══════════════════════════════════
   SECTION: UNIVERS / PRODUITS
═══════════════════════════════════ */
.univers-intro { text-align: center; max-width: 580px; margin: 0 auto 3.5rem; }
.univers-intro p { color: var(--text-lt); margin-top: .6rem; }

.univers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.univers-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease);
}
.univers-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.univers-card__img {
  height: 220px;
  overflow: hidden;
}
.univers-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.univers-card:hover .univers-card__img img { transform: scale(1.06); }

.univers-card__body {
  padding: 1.5rem;
}
.univers-card__body h3 { margin-bottom: .4rem; }
.univers-card__body p  { font-size: .87rem; color: var(--text-lt); line-height: 1.6; }

/* ═══════════════════════════════════
   SECTION: GALERIE PHOTOS
═══════════════════════════════════ */
.gallery-intro { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.gallery-intro p { color: var(--text-lt); margin-top: .6rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: .75rem;
}

.gal {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
}
.gal:hover img { transform: scale(1.06); filter: brightness(1.05); }

.gal--wide  { grid-column: span 2; }
.gal--tall  { grid-row: span 2; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn .25s ease;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.lightbox__close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--ease);
  background: none;
  border: none;
  font-family: sans-serif;
}
.lightbox__close:hover { color: var(--beige-lt); transform: scale(1.2); }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════
   SECTION: HORAIRES & CONTACT
═══════════════════════════════════ */
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-box__header {
  background: var(--rose);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
}
.info-box__header span { font-size: 1.3rem; }

.info-box__body { padding: 1.75rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid var(--cream-dk);
  font-size: .9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text); }
.hours-row .time { font-weight: 600; color: var(--rose); }
.hours-row .closed { color: var(--text-lt); font-weight: 400; font-style: italic; }

.contact-rows { display: flex; flex-direction: column; gap: 1rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: .92rem;
  transition: var(--ease);
}
.contact-row:hover { background: var(--cream-dk); }
.contact-row__ico {
  width: 40px; height: 40px;
  background: var(--rose);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-row a { color: var(--rose); font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }

/* ═══════════════════════════════════
   SECTION: CTA
═══════════════════════════════════ */
.cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding: 5rem 2rem;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background-image: url('../20240518_102018.jpg');
  background-size: cover;
  background-position: center;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,69,96,.88), rgba(30,20,16,.80));
}
.cta__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta__content h2, .cta__content p { color: var(--white); }
.cta__content h2 { margin-bottom: .75rem; }
.cta__content p  { opacity: .88; margin-bottom: 2rem; font-size: 1.05rem; }
.cta__buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand p {
  font-size: .86rem;
  line-height: 1.7;
  margin-top: .75rem;
  max-width: 270px;
}
.footer__brand .phone-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  color: var(--beige-lt);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--ease);
}
.footer__brand .phone-link:hover { color: var(--white); }

.footer__col-title {
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .55rem; }
.footer__links a {
  font-size: .86rem;
  color: rgba(255,255,255,.6);
  transition: var(--ease);
}
.footer__links a:hover { color: var(--beige-lt); padding-left: 4px; }

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ═══════════════════════════════════
   PAGES INTERNES
═══════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 64px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream-dk), var(--beige-lt));
  z-index: 0;
}
.page-hero__content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-lt);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--rose); }

/* ═══════════════════════════════════
   PAGE BOUTIQUE — MAP
═══════════════════════════════════ */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  height: 460px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.loc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.loc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.loc-card__icon {
  width: 44px; height: 44px;
  background: var(--rose);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.loc-card__label { font-size: .72rem; color: var(--text-lt); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .15rem; }
.loc-card__val   { font-size: .93rem; font-weight: 600; color: var(--dark); }

/* Direction cards */
.dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.dir-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.dir-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dir-card__icon { font-size: 2.2rem; margin-bottom: .9rem; }
.dir-card h3    { margin-bottom: .35rem; font-size: 1rem; }
.dir-card p     { font-size: .85rem; color: var(--text-lt); line-height: 1.6; }

/* Exterior photo boutique page */
.boutique-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.boutique-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}
.boutique-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ═══════════════════════════════════
   PAGE CONTACT — FORMULAIRE
═══════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 4rem;
  align-items: start;
}

.contact-sidebar h2 { margin-bottom: .75rem; }
.contact-sidebar > p { color: var(--text-lt); margin-bottom: 2rem; font-size: .95rem; }

.sinfo-list { display: flex; flex-direction: column; gap: 1rem; }
.sinfo {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.sinfo:hover { transform: translateX(4px); }
.sinfo__ico {
  width: 42px; height: 42px;
  background: var(--rose);
  color: var(--white);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sinfo__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-lt); margin-bottom: .15rem; }
.sinfo__val   { font-size: .92rem; font-weight: 600; color: var(--dark); }
.sinfo__val a { color: var(--rose); }

.contact-quote {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(155,94,120,.08), rgba(196,168,130,.1));
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  font-style: italic;
  font-size: .9rem;
  color: var(--text-lt);
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}
.form-card h2 { margin-bottom: .4rem; }
.form-card > p { font-size: .87rem; color: var(--text-lt); margin-bottom: 2rem; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.fgrp { margin-bottom: 1.35rem; }

label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .35rem;
}
label .req { color: var(--rose); }

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid var(--cream-dk);
  border-radius: var(--radius);
  font-size: .93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: var(--ease);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(155,94,120,.1);
}
input::placeholder, textarea::placeholder { color: var(--text-lt); }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6255' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea { height: 130px; resize: vertical; }

.fhint { font-size: .76rem; color: var(--text-lt); margin-top: .3rem; }

.rgpd-wrap {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: var(--cream-dk);
  padding: .9rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.rgpd-wrap input[type=checkbox] {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--rose);
  flex-shrink: 0;
}
.rgpd-wrap label { font-size: .79rem; font-weight: 400; color: var(--text-lt); cursor: pointer; margin: 0; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-note { font-size: .78rem; color: var(--text-lt); }

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success__ico {
  width: 70px; height: 70px;
  background: rgba(155,94,120,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 1.25rem;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
details.faq {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow);
  cursor: pointer;
}
details.faq summary {
  font-weight: 600;
  font-size: .93rem;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq summary::after {
  content: '+';
  color: var(--rose);
  font-size: 1.3rem;
  font-weight: 300;
  transition: var(--ease);
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { margin-top: .75rem; font-size: .88rem; color: var(--text-lt); line-height: 1.7; }

/* ═══════════════════════════════════
   SECTION: AVIS GOOGLE
═══════════════════════════════════ */
.reviews-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.reviews-score {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.reviews-score__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: .75rem;
}
.reviews-score__note {
  font-size: 3.5rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.reviews-score__count {
  font-size: .82rem;
  color: var(--text-lt);
  margin-top: .2rem;
}
.reviews-score__sub {
  font-size: .82rem;
  color: var(--text-lt);
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--cream-dk);
  padding-top: .9rem;
}
.reviews-score__actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.reviews-score__actions .btn { justify-content: center; }

.stars-row {
  display: flex;
  gap: 2px;
}
.star {
  font-size: 1.3rem;
  line-height: 1;
}
.star.full { color: #F4B942; }
.star.half {
  color: #F4B942;
  opacity: .5;
}
.stars-row--sm .star { font-size: 1rem; }

.reviews-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
  border-left: 3px solid #F4B942;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .85rem;
}
.review-card__avatar {
  width: 42px; height: 42px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-card__header strong {
  display: block;
  font-size: .9rem;
  color: var(--dark);
}
.review-card__google {
  width: 44px;
  height: auto;
  margin-left: auto;
  opacity: .55;
  flex-shrink: 0;
}
.review-card > p {
  font-size: .88rem;
  color: var(--text-lt);
  line-height: 1.65;
  font-style: italic;
}

.review-card__avatar-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Skeleton loader pendant le chargement des avis */
.review-skeleton {
  background: var(--white);
  border-radius: var(--radius);
  height: 120px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.review-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196,168,130,.18) 50%,
    transparent 100%
  );
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

.reviews-disclaimer {
  text-align: center;
  font-size: .76rem;
  color: var(--text-lt);
  margin-top: .5rem;
}
.reviews-disclaimer a { color: var(--rose); }

@media (max-width: 860px) {
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-score  { max-width: 400px; margin: 0 auto; }
}

/* ═══════════════════════════════════
   Animations
═══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1000px) {
  .services-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid           { grid-template-columns: 1fr; gap: 3rem; }
  .about-photos         { max-width: 480px; margin: 0 auto; }
  .univers-grid         { grid-template-columns: repeat(2, 1fr); }
  .infos-grid           { grid-template-columns: 1fr; }
  .contact-layout       { grid-template-columns: 1fr; gap: 2.5rem; }
  .boutique-split       { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid         { grid-template-columns: 1fr 1fr; }
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gal--wide, .gal--tall { grid-column: auto; grid-row: auto; }
  .gal { height: 200px; }
}

@media (max-width: 700px) {
  .section { padding: 60px 0; }
  .nav__links, .nav__phone { display: none; }
  .burger { display: flex; }
  .services-strip__grid { grid-template-columns: 1fr 1fr; }
  .univers-grid   { grid-template-columns: 1fr; }
  .about-photos   { grid-template-columns: 1fr; }
  .about-photo--tall  { height: 260px; grid-row: auto; }
  .about-photo--short { height: 200px; }
  .footer__grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .frow           { grid-template-columns: 1fr; }
  .form-card      { padding: 1.75rem 1.25rem; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-strip__grid { grid-template-columns: 1fr; }
  .hero__chips { display: none; }
  .map-wrap { height: 300px; }
}
