/* Hospitalité Retrouvée — navigation partagée */
.hr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.hr-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 0 32px; height: 72px;
}
.hr-nav-brand {
  display: flex; flex-direction: column; line-height: 1.2;
  text-decoration: none; flex-shrink: 0;
}
.hr-nav-brand strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.01em;
  transition: color 0.3s;
}
.hr-nav-brand span {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.03em;
  transition: color 0.3s;
}
.hr-nav-menu {
  display: flex; align-items: center; gap: 28px;
}
.hr-nav-menu a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
  text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.hr-nav-menu a.is-active { font-weight: 600; }
.hr-nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.hr-nav-cta:hover { transform: translateY(-1px); }

/* Thème sombre (hero photo) */
.hr-nav--dark { background: transparent; }
.hr-nav--dark .hr-nav-brand strong { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.hr-nav--dark .hr-nav-brand span { color: rgba(255,255,255,0.65); }
.hr-nav--dark .hr-nav-menu a { color: rgba(255,255,255,0.88); text-shadow: 0 1px 8px rgba(0,0,0,0.35); }
.hr-nav--dark .hr-nav-menu a:hover,
.hr-nav--dark .hr-nav-menu a.is-active { color: #fff; }
.hr-nav--dark .hr-nav-cta { background: #b8954a; color: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.hr-nav--dark .hr-nav-cta:hover { background: #d4b76a; }
.hr-nav--dark .hr-nav-toggle span { background: #fff; }
.hr-nav--dark.is-scrolled {
  background: rgba(246,243,237,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26,26,24,0.08);
  border-bottom: 1px solid rgba(26,26,24,0.06);
}
.hr-nav--dark.is-scrolled .hr-nav-brand strong { color: #1a1a18; text-shadow: none; }
.hr-nav--dark.is-scrolled .hr-nav-brand span { color: #4d6b5a; }
.hr-nav--dark.is-scrolled .hr-nav-menu a { color: #4a4843; text-shadow: none; }
.hr-nav--dark.is-scrolled .hr-nav-menu a:hover,
.hr-nav--dark.is-scrolled .hr-nav-menu a.is-active { color: #1a1a18; }
.hr-nav--dark.is-scrolled .hr-nav-toggle span { background: #1a1a18; }

/* Thème clair (pages intérieures) */
.hr-nav--light {
  background: rgba(246,243,237,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,26,24,0.08);
}
.hr-nav--light .hr-nav-brand strong { color: #1a1a18; }
.hr-nav--light .hr-nav-brand span { color: #4d6b5a; }
.hr-nav--light .hr-nav-menu a { color: #4a4843; }
.hr-nav--light .hr-nav-menu a:hover,
.hr-nav--light .hr-nav-menu a.is-active { color: #4d6b5a; }
.hr-nav--light .hr-nav-cta { background: #b8954a; color: #fff; }
.hr-nav--light .hr-nav-cta:hover { background: #a07f3f; }
.hr-nav--light .hr-nav-toggle span { background: #1a1a18; }

/* Hamburger */
.hr-nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.hr-nav-toggle span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hr-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hr-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hr-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hr-nav-backdrop {
  display: none; position: fixed; inset: 0; z-index: -1;
  background: rgba(26,26,24,0.45); opacity: 0;
  transition: opacity 0.3s; pointer-events: none;
}
.hr-nav-backdrop.is-open {
  display: block; opacity: 1; pointer-events: auto;
}

@media (max-width: 900px) {
  .hr-nav-inner { padding: 0 20px; height: 64px; padding-top: env(safe-area-inset-top, 0); }
  .hr-nav-toggle { display: flex; }
  .hr-nav-menu {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 88vw);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: calc(72px + env(safe-area-inset-top, 0)) 28px 32px;
    background: #f6f3ed; box-shadow: -8px 0 40px rgba(26,26,24,0.12);
    transform: translateX(100%); transition: transform 0.35s ease;
    z-index: 301; overflow-y: auto;
  }
  .hr-nav-menu.is-open { transform: translateX(0); }
  .hr-nav-menu a {
    width: 100%; padding: 14px 0; color: #1a1a18 !important;
    text-shadow: none !important; border-bottom: 1px solid rgba(26,26,24,0.06);
  }
  .hr-nav-menu a.is-active { color: #4d6b5a !important; }
  .hr-nav-menu .hr-nav-cta {
    margin-top: 20px; width: 100%; padding: 14px 20px;
    color: #fff !important; border: none;
  }
  .hr-nav--dark.is-scrolled .hr-nav-menu,
  .hr-nav--dark .hr-nav-menu { background: #f6f3ed; }
}

/* Espace sous nav fixe */
.has-hr-nav { padding-top: 72px; }
@media (max-width: 900px) { .has-hr-nav { padding-top: 64px; } }
