:root {
  --black: #0b0b0c;
  --black-soft: #131314;
  --cream: #f6f2ec;
  --cream-deep: #ece5da;
  --gold: #c9975a;
  --gold-light: #e0bd8c;
  --ink: #1b1b1c;
  --muted-dark: #b8b2a8;
  --muted-light: #6b675f;
  --radius: 14px;
  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }

.btn-primary {
  background: var(--gold);
  color: #17120c;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(0,0,0,.25);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-large { padding: 18px 34px; font-size: 1.15rem; font-weight: 600; }

/* ---------- Bloc fixe : bandeau + menu ---------- */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* ---------- Bandeau de fermeture ---------- */
.closure-banner {
  background: #8f2f2f;
  color: var(--cream);
  text-align: center;
  padding: 13px 20px;
  font-size: .92rem;
  line-height: 1.5;
}
.closure-banner strong { color: #fff; font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: relative; /* ancre le menu mobile déroulant */
  background: rgba(11,11,12,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: .02em;
  white-space: nowrap;
}
.logo svg { width: 28px; height: 28px; color: var(--gold); flex: none; }
.logo em { font-style: normal; color: var(--gold); }

.main-nav {
  display: flex;
  gap: clamp(14px, 1.8vw, 26px);
  margin-left: auto;
  font-size: .9rem;
  white-space: nowrap;
}
.main-nav a {
  color: var(--muted-dark);
  text-decoration: none;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--gold); }

.header-call {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 18px;
  font-size: .88rem;
  white-space: nowrap;
  flex: none;
}
.header-call:hover { background: var(--gold); color: #17120c; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: 12px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--cream);
  padding: clamp(90px, 14vw, 160px) 0 clamp(80px, 12vw, 130px);
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,151,90,.18), transparent 60%),
    radial-gradient(ellipse at 15% 90%, rgba(201,151,90,.10), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.017) 0 2px, transparent 2px 7px);
}

.hero-inner { position: relative; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  color: var(--gold);
  margin-bottom: 1.6em;
}

.hero h1 { margin-bottom: .35em; }

.hero-sub {
  max-width: 620px;
  margin: 0 auto 2em;
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border: 1px solid rgba(201,151,90,.45);
  border-radius: 999px;
  font-size: .9rem;
  text-decoration: none;
  color: var(--cream);
  background: rgba(201,151,90,.08);
  transition: background .2s ease;
}
.rating-badge:hover { background: rgba(201,151,90,.18); }
.rating-badge strong { font-weight: 600; }

.rating-badge-alt {
  color: var(--ink);
  background: #fff;
  border-color: rgba(0,0,0,.12);
  margin-bottom: 40px;
}

.stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-hint { font-size: .85rem; color: var(--muted-dark); }

/* ---------- USP strip ---------- */
.usp {
  background: var(--black-soft);
  color: var(--cream);
  padding: 54px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 38px;
  text-align: center;
}

.usp-item svg { width: 30px; height: 30px; fill: var(--gold); color: var(--gold); margin-bottom: 12px; }
.usp-item h3 { font-size: 1.05rem; margin-bottom: .4em; }
.usp-item p { color: var(--muted-dark); font-size: .92rem; margin: 0; }

/* ---------- Sections ---------- */
/* --hauteur-fixe est mesurée en JS : le bandeau de fermeture change la hauteur du bloc fixe */
.section { padding: clamp(70px, 10vw, 120px) 0; scroll-margin-top: calc(var(--hauteur-fixe, 74px) + 12px); }

.section-light { background: var(--cream); color: var(--ink); }
.section-dark { background: var(--black); color: var(--cream); }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .7rem;
  color: var(--gold);
  margin-bottom: 1.1em;
}

.section-intro {
  max-width: 640px;
  color: var(--muted-light);
  margin-bottom: 3em;
}
.section-dark .section-intro { color: var(--muted-dark); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.service-card svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: 16px; }
.service-card p { color: var(--muted-light); font-size: .94rem; margin: 0; }

.service-card.is-blue {
  background: #1b3a5c;
  border-color: transparent;
  color: var(--cream);
}
.service-card.is-blue svg { color: var(--gold-light); }
.service-card.is-blue p { color: rgba(246, 242, 236, .78); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gallery-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(201,151,90,.22);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(201,151,90,.07), rgba(255,255,255,.02)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 9px);
  overflow: hidden;
}
.gallery-tile svg { width: 40px; height: 40px; color: var(--gold); opacity: .85; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-bottom: 44px;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.review-card p { font-size: .95rem; color: var(--muted-light); margin: 12px 0 0; }

.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.review-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  overflow: hidden;
  background: #1b3a5c;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}

.review-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author { font-weight: 500; color: var(--ink) !important; margin: 0 !important; font-size: .92rem !important; }
.review-date { margin: 0 !important; font-size: .78rem !important; color: var(--muted-light); }

/* ---------- City pills ---------- */
.city-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.city-pills span {
  padding: 8px 18px;
  border: 1px solid rgba(201,151,90,.3);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--muted-dark);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-card h2 { margin-bottom: 1em; }

.contact-details { list-style: none; padding: 0; margin: 32px 0; }
.contact-details li { margin-bottom: 18px; font-size: .95rem; color: var(--muted-light); }
.contact-details strong { color: var(--ink); font-weight: 500; }

.hours-table { width: 100%; border-collapse: collapse; font-size: .92rem; margin-bottom: 26px; }
.hours-table td { padding: 9px 12px; border-bottom: 1px solid rgba(0,0,0,.07); color: var(--muted-light); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 500; }
.hours-table tr td:first-child { border-left: 3px solid transparent; }

.jour-ouvert { background: rgba(45, 138, 82, .09); }
.jour-ouvert td:first-child { border-left-color: #2d8a52; }
.jour-ouvert td:last-child { color: #1f6b3d; }

.jour-reduit { background: rgba(198, 124, 26, .11); }
.jour-reduit td:first-child { border-left-color: #c67c1a; }
.jour-reduit td:last-child { color: #8f5709; }

.jour-ferme { background: rgba(178, 58, 58, .09); }
.jour-ferme td:first-child { border-left-color: #b23a3a; }
.jour-ferme td:last-child { color: #8f2f2f; }

.link-arrow { color: var(--gold); text-decoration: none; font-size: .9rem; font-weight: 500; }
.link-arrow:hover { text-decoration: underline; }

.contact-map {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}
.contact-map iframe { display: block; height: 100%; min-height: 420px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--muted-dark);
  padding: 46px 0;
  text-align: center;
  font-size: .9rem;
}
.site-footer strong { color: var(--cream); font-weight: 500; }
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.copyright { font-size: .8rem; opacity: .6; margin: 18px 0 0; }

/* ---------- Mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: var(--gold);
  color: #17120c;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 -6px 20px rgba(0,0,0,.2);
}
.mobile-call-bar svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map, .contact-map iframe { min-height: 320px; }
}

@media (max-width: 1000px) {
  .nav-toggle { display: flex; margin-left: auto; margin-right: -8px; }
  .header-call { display: none; }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 340px; }
  .main-nav a { padding: 15px 24px; border-top: 1px solid rgba(255,255,255,.05); }

  .mobile-call-bar { display: flex; }
  body { padding-bottom: 62px; }

  /* le bloc fixe occupe de la place sur un petit écran : bandeau plus compact */
  .closure-banner { padding: 10px 16px; font-size: .84rem; line-height: 1.4; }
}
