/* ===== Variables ===== */
:root {
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #96724a;
  --noir: #1a1a1a;
  --noir-soft: #2c2c2c;
  --ivory: #f5f0ea;
  --ivory-dark: #ebe3d8;
  --cream: #faf7f2;
  --text: #3a3632;
  --text-light: #6e6862;
  --text-muted: #9e9690;
  --white: #ffffff;

  --font-display: 'Cormorant', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --nav-h: 80px;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.4s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}

.nav.scrolled .nav-logo {
  filter: brightness(0);
}

.nav.scrolled .nav-brand { color: var(--noir); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.nav-link:hover { color: var(--white); }

.nav.scrolled .nav-link { color: var(--text-light); }
.nav.scrolled .nav-link:hover { color: var(--noir); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 400;
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease), top 0.35s var(--ease), background 0.3s;
}

.nav.scrolled .nav-toggle span { background: var(--noir); }

.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { top: 14px; }

.nav-toggle.active span:first-child { top: 9px; transform: rotate(45deg); background: var(--noir); }
.nav-toggle.active span:last-child { top: 9px; transform: rotate(-45deg); background: var(--noir); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
}

.mobile-menu.active { pointer-events: auto; }

.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 242, 0.97);
  opacity: 0;
  transition: opacity 0.4s;
}

.mobile-menu.active::before { opacity: 1; }

.mobile-menu-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--noir);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
}

.mobile-menu.active .mobile-link { opacity: 1; transform: translateY(0); }
.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.3s; }

.mobile-link:hover { color: var(--gold); }

.mobile-link-cta {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: 16px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 6px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--noir);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 30% 45%, rgba(184,149,106,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 70% at 70% 55%, rgba(184,149,106,0.08) 0%, transparent 60%);
}

.hero-logo-bg {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140vw;
  max-width: none;
  height: auto;
  opacity: 0.07;
  filter: blur(2px) brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(350deg) brightness(0.85);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  animation: heroFade 1s var(--ease) 0.2s both;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-location {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--gold);
  padding: 16px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,149,106,0.25);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.3s, border-color 0.3s;
}

.btn-outline:hover {
  color: var(--white);
  border-color: var(--gold);
}

/* ===== Section shared ===== */
.section {
  padding: clamp(80px, 10vw, 120px) 0;
}

.section-warm { background: var(--ivory); }

.section-dark {
  background: var(--noir);
  color: var(--ivory);
}

.section-label {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--noir);
  margin-bottom: 24px;
}

.section-title.light { color: var(--white); }

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== Image placeholders ===== */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, var(--ivory-dark) 0%, var(--ivory) 60%, var(--cream) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold);
  border-radius: 8px;
}

.img-placeholder span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
}

.img-placeholder-sm {
  min-height: 180px;
}

/* ===== Hero background image ===== */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-img + .hero-overlay {
  background: rgba(26, 26, 26, 0.55);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-wrapper .img-placeholder {
  height: 100%;
  border-radius: 0;
}

.about-image-accent {
  display: none;
}

.about-text .section-title { text-align: left; }

/* ===== About tabs ===== */
.about-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.about-tab {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 10px 24px 12px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.about-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-tab:hover {
  color: var(--noir);
}

.about-tab.active {
  color: var(--gold);
}

.about-tab.active::after {
  transform: scaleX(1);
}

/* ===== About panels ===== */
.about-panel {
  display: none;
  animation: panelFadeIn 0.4s ease;
}

.about-panel.active {
  display: block;
}

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

.about-panel > p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-panel strong {
  font-weight: 500;
  color: var(--text);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.value h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 4px;
}

.value p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Prestations ===== */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.prestation {
  background: var(--cream);
  border-radius: 10px;
  padding: 0;
  border: 1px solid rgba(184,149,106,0.08);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.prestation-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.prestation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transition: transform 0.5s var(--ease);
}

.prestation:hover .prestation-img img {
  transform: scale(1.05);
}

.prestation-img .img-placeholder-sm {
  border-radius: 0;
}

.prestation-body {
  padding: clamp(24px, 3vw, 32px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prestation:hover {
  border-color: rgba(184,149,106,0.2);
  box-shadow: 0 4px 24px rgba(184,149,106,0.08);
  transform: translateY(-2px);
}

.prestation-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 10px;
}

.prestation-body > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}

.prestation-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.prestation-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.prestation-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.prestation-special {
  background: linear-gradient(145deg, var(--cream) 0%, rgba(184,149,106,0.06) 100%);
  border-color: rgba(184,149,106,0.15);
}

.prestations-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== Galerie ===== */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.galerie-item {
  border-radius: 10px;
  overflow: hidden;
}

.galerie-item-tall {
  grid-row: span 2;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.galerie-item:hover img {
  transform: scale(1.04);
}

.galerie-item .img-placeholder {
  height: 100%;
  border-radius: 0;
  transition: transform 0.5s var(--ease);
}

.galerie-item:hover .img-placeholder {
  transform: scale(1.04);
}

.galerie-insta {
  text-align: center;
  margin-top: 40px;
}

.galerie-insta p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-dark);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold-light);
  transition: color 0.3s, gap 0.3s;
}

.insta-link:hover { color: var(--gold); gap: 12px; }

/* ===== Avis ===== */
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.avis {
  background: var(--cream);
  border-radius: 10px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(184,149,106,0.08);
  transition: border-color 0.3s;
}

.avis:hover { border-color: rgba(184,149,106,0.2); }

.avis-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.avis p {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 24px;
}

.avis cite {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: normal;
  color: var(--noir);
}

/* ===== RDV ===== */
.rdv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.rdv-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 460px;
}

.rdv-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.rdv-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.rdv-feature svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 2px;
}

.rdv-feature h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.rdv-feature p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 72px);
  margin-bottom: 56px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-block h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 6px;
}

.contact-block p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
}

.map-inner {
  aspect-ratio: 4/3;
  background: var(--ivory);
  border-radius: 10px;
  border: 1px solid rgba(184,149,106,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-grid-svg {
  position: absolute;
  inset: 0;
}

.map-pin {
  position: relative;
  z-index: 1;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pulse {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.5); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

.map-label {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
  padding: 12px 24px;
  border: 1px solid rgba(184,149,106,0.18);
  border-radius: 8px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(184,149,106,0.04);
}

/* ===== Footer ===== */
.footer {
  background: var(--noir);
  padding: 48px 0 32px;
  color: rgba(255,255,255,0.35);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

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

.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.7;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}

/* ===== Reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Contact phone ===== */
.contact-phone {
  color: var(--text-light);
  transition: color 0.3s;
}
.contact-phone:hover {
  color: var(--gold);
}

/* ===== Footer legal ===== */
.footer-legal {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
  cursor: pointer;
}
.footer-legal:hover {
  color: rgba(255,255,255,0.5);
}

/* ===== Modal mentions légales ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--cream);
  border-radius: 12px;
  padding: 48px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}
.modal h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 28px;
}
.modal h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--noir);
  margin: 20px 0 6px;
}
.modal p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}
.modal-close:hover {
  color: var(--noir);
}

/* ===== Mobile sticky CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-cta.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  .back-to-top { bottom: 72px; }
  .footer { padding-bottom: 60px; }
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(184,149,106,0.3);
  background: rgba(250,247,242,0.9);
  backdrop-filter: blur(8px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--white);
}
.back-to-top:hover svg {
  stroke: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .prestations-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .rdv-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  /* Hero mobile */
  .hero { min-height: 85vh; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-subtitle { font-size: 0.8rem; letter-spacing: 0.2em; }
  .hero-tagline { font-size: 1.1rem; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; gap: 14px; width: 100%; padding: 0 20px; }
  .hero-actions .btn { width: 100%; text-align: center; padding: 18px 24px; font-size: 1rem; }
  .hero-actions .btn-outline { width: 100%; text-align: center; padding: 14px 24px; }
  .hero-location { font-size: 0.78rem; margin-top: 8px; }
  .hero-logo-bg { width: 200vw; }
  .nav-logo { height: 50px; }

  /* About mobile */
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 280px; margin: 0 auto 20px; }
  .about-text .section-title { text-align: center; font-size: 1.8rem; }
  .about-tabs { justify-content: center; }
  .about-tab { padding: 10px 18px; font-size: 0.82rem; }
  .about-panel > p { font-size: 0.95rem; }
  .about-values { grid-template-columns: 1fr; text-align: center; gap: 20px; }

  /* Sections mobile */
  .section { padding: clamp(56px, 8vw, 80px) 0; }
  .section-header { margin-bottom: clamp(32px, 5vw, 48px); }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .section-label { font-size: 0.78rem; }
  .section-desc { font-size: 0.95rem; }

  /* Prestations mobile */
  .prestation-img { height: 200px; }
  .prestation-body { padding: 20px; }
  .prestation-body h3 { font-size: 1.15rem; }
  .prestation-body p { font-size: 0.88rem; }

  /* Galerie mobile */
  .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 8px; }
  .galerie-item-tall { grid-row: span 1; }

  /* Avis mobile */
  .avis-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  /* RDV mobile */
  .rdv-desc { font-size: 0.95rem; }
  .rdv-left .btn { width: 100%; text-align: center; padding: 18px 24px; font-size: 1rem; }

  /* Contact mobile */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map iframe { min-height: 280px; }

  .socials { flex-wrap: wrap; }

  /* Modal mobile */
  .modal { padding: 32px 24px; }
  .modal h2 { font-size: 1.5rem; }

  /* Back to top mobile */
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }

  /* Footer mobile */
  .footer-nav { gap: 12px; }
  .footer-nav a { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-title { font-size: clamp(2.4rem, 14vw, 3.5rem); }
  .hero-content { padding: 0 16px; }

  .container { padding: 0 clamp(16px, 4vw, 24px); }

  .about-image { max-width: 220px; }
  .about-tab { padding: 8px 14px; font-size: 0.78rem; }

  .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 6px; }

  .prestation-img { height: 180px; }

  .footer-nav { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .footer-brand { font-size: 1.4rem; }
}
