:root {
  --sage-900: #2f3d35;
  --sage-800: #3f5147;
  --sage-700: #53675b;
  --sage-500: #82917b;
  --sage-300: #b8c3ae;
  --sage-200: #d6dece;
  --sage-100: #eef2e9;

  --wood-900: #563c2b;
  --wood-700: #7a563b;
  --wood-500: #a67a55;
  --wood-300: #d4b28d;

  --stone: #f4f1e8;
  --cream: #fffdf7;

  --text: #263229;
  --text-soft: #6d766e;
  --line: rgba(47, 61, 53, 0.13);

  --shadow-lg: 0 30px 70px rgba(47, 61, 53, 0.14);
  --shadow-md: 0 18px 42px rgba(47, 61, 53, 0.10);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --safe-bottom: env(safe-area-inset-bottom, 0px);
}


/* =========================================================
   BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;

  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;

  background:
    radial-gradient(circle at 8% 0%, rgba(184, 195, 174, 0.58), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(212, 178, 141, 0.34), transparent 24rem),
    linear-gradient(180deg, #f5f7ef 0%, #ecefe4 42%, #fbfaf5 100%);
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-family: var(--font-display);
}

.hidden {
  display: none !important;
}


/* =========================================================
   STRUCTURE
   ========================================================= */

.app {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 110px;
}


/* =========================================================
   HEADER
   ========================================================= */

.topbar {
  position: sticky;
  top: 10px;
  z-index: 50;

  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;

  margin: 18px auto 16px;
  padding: 14px 22px 15px 26px;

  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 999px;

  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 14px 38px rgba(47, 61, 53, 0.09);
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  display: grid;
  text-align: center;
  color: #3d3a39;
  line-height: 1;
  user-select: none;
}

.brand-logo span {
  font-size: clamp(1.30rem, 2vw, 1.70rem);
  font-weight: 600;
  letter-spacing: 0.22em;
}

.brand-logo small {
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: rgba(61, 58, 57, 0.82);
}

.desktop-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.35vw, 34px);
}

.desktop-nav a {
  padding: 6px 0;

  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;

  color: #151313;
  border-bottom: 1px solid transparent;

  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}

.desktop-nav a:hover {
  color: var(--sage-800);
  border-bottom-color: var(--sage-700);
}

.top-actions {
  min-width: 210px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
}

.pill,
.lang-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  font-weight: 700;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.pill {
  padding: 0 20px;

  color: var(--cream);
  background: #3d3a39;

  font-size: 1.03rem;
}

.lang-btn {
  min-width: 42px;
  padding: 0 10px;

  border: 0;
  background: transparent;
  color: #151313;

  font-size: 1.04rem;
}

.pill:hover,
.lang-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;

  width: 100%;
  min-height: 560px;

  margin-bottom: 18px;
  padding: 58px 58px 54px;

  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 40px;

  color: var(--cream);

  background:
    linear-gradient(135deg, rgba(47, 61, 53, 0.88), rgba(63, 81, 71, 0.76)),
    radial-gradient(circle at 86% 20%, rgba(212, 178, 141, 0.38), transparent 24rem),
    linear-gradient(135deg, var(--sage-800), var(--sage-500));

  box-shadow: var(--shadow-lg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 16px;

  border: 1px solid rgba(255, 253, 247, 0.20);
  border-radius: 30px;

  pointer-events: none;
}

.garden-lines {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -64px;

  height: 210px;
  opacity: 0.22;

  background:
    radial-gradient(ellipse at 50% 100%, transparent 0 44%, rgba(255, 253, 247, 0.22) 45% 45.5%, transparent 46%),
    radial-gradient(ellipse at 50% 100%, transparent 0 58%, rgba(255, 253, 247, 0.16) 59% 59.5%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, transparent 0 72%, rgba(255, 253, 247, 0.13) 73% 73.5%, transparent 74%);
}

.hero-grid {
  position: relative;
  z-index: 2;

  min-height: 420px;

  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 440px);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 14px;

  color: var(--wood-300);

  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.58;
}

.hero h1,
h1 {
  max-width: 620px;
  margin-bottom: 20px;

  font-size: clamp(58px, 6vw, 92px);
  font-weight: 600;
  line-height: 0.90;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 600px;
  margin-bottom: 28px;

  color: rgba(255, 253, 247, 0.84);

  font-size: 1.12rem;
  line-height: 1.58;
}

.hero-actions,
.actions,
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-note {
  margin-top: 22px;
}


/* =========================================================
   BOUTONS
   ========================================================= */

.btn,
.mini-link {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border-radius: 999px;

  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.012em;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.btn {
  padding: 14px 18px;
  border: 0;
}

.btn:hover,
.mini-link:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--cream);
  background: #3d3a39;
  box-shadow: 0 16px 36px rgba(61, 58, 57, 0.20);
}

.btn-secondary {
  color: var(--cream);
  background: rgba(255, 253, 247, 0.12);
  border: 1px solid rgba(255, 253, 247, 0.28);
}

.btn-light {
  color: var(--sage-900);
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid var(--line);
}

.btn-soft {
  color: var(--sage-900);
  background: linear-gradient(180deg, var(--sage-100), #e5ebde);
  border: 1px solid rgba(83, 103, 91, 0.12);
}

.mini-link {
  min-height: 40px;
  padding: 0 14px;

  color: rgba(255, 253, 247, 0.90);

  background: rgba(255, 253, 247, 0.11);
  border: 1px solid rgba(255, 253, 247, 0.22);
}


/* =========================================================
   PHOTO HÔTEL
   ========================================================= */

.hotel-photo-card {
  width: 100%;
  max-width: 440px;
  justify-self: end;

  overflow: hidden;
  padding: 16px;

  border: 1px solid rgba(255, 253, 247, 0.24);
  border-radius: 30px;

  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.18), rgba(255, 253, 247, 0.10));

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 24px 52px rgba(19, 30, 24, 0.18);
}

.hotel-photo-frame {
  position: relative;
  overflow: hidden;

  width: 100%;
  min-height: 330px;

  border: 1px solid rgba(255, 253, 247, 0.20);
  border-radius: 22px;

  background:
    linear-gradient(135deg, rgba(238, 242, 233, 0.26), rgba(212, 178, 141, 0.14)),
    linear-gradient(145deg, rgba(255, 253, 247, 0.12), rgba(255, 253, 247, 0.04));
}

.hotel-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
}

.hotel-photo-frame.has-image .photo-placeholder {
  display: none;
}

.photo-placeholder {
  position: absolute;
  inset: 0;

  display: grid;
  place-content: center;
  gap: 8px;

  padding: 26px;
  text-align: center;

  color: rgba(255, 253, 247, 0.86);

  background:
    linear-gradient(145deg, rgba(47, 61, 53, 0.38), rgba(47, 61, 53, 0.18));
}

.photo-placeholder span {
  justify-self: center;

  width: fit-content;
  padding: 8px 12px;

  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-placeholder strong {
  font-size: 1.45rem;
}

.photo-placeholder small {
  max-width: 260px;
  color: rgba(255, 253, 247, 0.72);
  line-height: 1.45;
}

.hotel-photo-caption {
  display: grid;
  gap: 8px;

  margin-top: 16px;
  padding-top: 16px;

  border-top: 1px solid rgba(255, 253, 247, 0.18);
}

.hotel-photo-caption strong {
  font-size: 1.55rem;
  color: var(--cream);
}


/* =========================================================
   PANELS
   ========================================================= */

.panel {
  width: 100%;

  margin: 0 0 22px;
  padding: 40px;

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 36px;

  background: rgba(255, 253, 247, 0.88);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: var(--shadow-md);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;

  margin-bottom: 22px;
}

.section-head .eyebrow {
  color: var(--sage-700);
}

.section-head h2 {
  margin-bottom: 0;

  color: var(--sage-900);

  font-size: clamp(2.3rem, 4.35vw, 4rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-head p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 0;

  color: var(--text-soft);
  line-height: 1.68;
}


/* =========================================================
   RECHERCHE / ONGLETS
   ========================================================= */

.search-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;

  margin-bottom: 24px;
}

.search-box {
  min-height: 58px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 0 18px;

  border: 1px solid var(--line);
  border-radius: 999px;

  background: rgba(255, 253, 247, 0.86);
}

.search-box input {
  width: 100%;

  border: 0;
  outline: 0;

  color: var(--text);
  background: transparent;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab {
  padding: 10px 14px;

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--text-soft);
  background: rgba(255, 253, 247, 0.82);

  font-weight: 700;
}

.tab.active {
  color: var(--cream);
  background: linear-gradient(135deg, var(--sage-700), var(--sage-800));
}


/* =========================================================
   SERVICES
   ========================================================= */

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

  margin-top: 18px;
}

.service-card {
  min-height: 170px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;

  padding: 24px;

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;

  background: rgba(255, 253, 247, 0.90);

  box-shadow: var(--shadow-md);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(47, 61, 53, 0.13);
}

.service-card h3 {
  margin: 0 0 12px;

  color: var(--sage-900);

  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.service-card p {
  margin-bottom: 0;

  color: var(--text-soft);

  font-size: 1.08rem;
  line-height: 1.45;
}

.service-card .open {
  margin-top: 18px;

  color: var(--wood-700);

  font-size: 1rem;
  font-weight: 700;
}

.service-card .icon,
.quick-card .emoji,
.shortcut-icon,
.detail-icon,
.service-modal-icon {
  display: none !important;
}

.empty {
  padding: 30px;

  text-align: center;
  color: var(--text-soft);

  border: 1px dashed rgba(47, 61, 53, 0.22);
  border-radius: 24px;

  background: rgba(255, 253, 247, 0.68);
}


/* =========================================================
   GUIDE LOCAL
   ========================================================= */

.local-panel {
  overflow: hidden;
}

.local-section-head {
  margin-bottom: 24px;
}

.local-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.local-feature-card {
  position: relative;
  min-height: 380px;

  overflow: hidden;

  border-radius: 28px;
  background: #26382f;

  box-shadow: 0 22px 60px rgba(27, 39, 32, 0.18);
}

.local-feature-image {
  position: absolute;
  inset: 0;
}

.local-feature-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.local-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(28, 42, 34, 0.88) 0%,
      rgba(28, 42, 34, 0.62) 45%,
      rgba(28, 42, 34, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(28, 42, 34, 0.28),
      rgba(28, 42, 34, 0.08)
    );
}

.local-feature-content {
  position: relative;
  z-index: 2;

  max-width: 520px;
  padding: 42px;

  color: #fff;
}

.local-feature-content .eyebrow {
  color: #d8c090;
}

.local-feature-content h3 {
  margin: 12px 0 16px;

  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.local-feature-content p {
  max-width: 460px;

  color: rgba(255, 255, 255, 0.90);

  font-size: 1.04rem;
  line-height: 1.60;
}

.local-feature-content .actions {
  margin-top: 24px;
}

.local-list,
.local-image-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.local-list-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 14px;

  min-height: 118px;
  padding: 12px;

  overflow: hidden;

  border: 1px solid rgba(58, 74, 62, 0.10);
  border-radius: 22px;

  color: inherit;
  background: rgba(255, 252, 246, 0.92);

  box-shadow: 0 12px 28px rgba(27, 39, 32, 0.08);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.local-list-link {
  cursor: pointer;
}

.local-list-link:hover {
  transform: translateY(-3px);
  border-color: rgba(58, 74, 62, 0.22);
  box-shadow: 0 20px 42px rgba(27, 39, 32, 0.14);
}

.local-list-link:focus-visible {
  outline: 2px solid var(--sage-500);
  outline-offset: 4px;
}

.local-list-thumbnail {
  width: 120px;
  height: 100px;

  overflow: hidden;

  border-radius: 16px;
  background: #dfe8dc;
}

.local-list-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.30s ease;
}

.local-list-link:hover .local-list-thumbnail img {
  transform: scale(1.05);
}

.local-list-thumbnail-empty {
  background:
    linear-gradient(135deg, var(--sage-100), var(--sage-200));
}

.local-list-content {
  min-width: 0;
}

.local-list-content h3 {
  margin: 0 0 7px;

  color: var(--sage-900);

  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
}

.local-list-content p {
  margin: 0;

  color: #5d695f;

  font-size: 0.98rem;
  line-height: 1.45;
}


/* =========================================================
   CONTACT
   ========================================================= */

#contact {
  scroll-margin-top: 110px;
}

.contact-panel {
  margin-top: 28px;
}

.contact-intro {
  max-width: 680px;
  margin: 14px 0 0;

  color: rgba(45, 59, 49, 0.78);

  font-size: 1.15rem;
  line-height: 1.65;
}

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

  margin-top: 28px;
}

.contact-card {
  min-height: 165px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 24px;

  border: 1px solid rgba(70, 88, 73, 0.14);
  border-radius: 24px;

  color: #2d3b31;
  background: rgba(255, 252, 247, 0.90);

  box-shadow: 0 12px 28px rgba(52, 67, 55, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(70, 88, 73, 0.30);
  box-shadow: 0 16px 34px rgba(52, 67, 55, 0.10);
}

.contact-card:focus-visible {
  outline: 2px solid var(--sage-500);
  outline-offset: 4px;
}

.contact-card-label {
  margin-bottom: 12px;

  color: var(--sage-500);

  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.45rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-card small {
  margin-top: 10px;

  color: rgba(45, 59, 49, 0.68);

  font-size: 1rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  width: 100%;

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;

  padding: 26px 8px 10px;

  color: var(--text-soft);

  font-size: 1.02rem;
  line-height: 1.58;
}


/* =========================================================
   NAVIGATION MOBILE
   ========================================================= */

.mobile-nav {
  display: none;

  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + var(--safe-bottom));
  z-index: 70;

  grid-template-columns: repeat(4, 1fr);
  gap: 4px;

  padding: 8px;

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;

  background: rgba(251, 250, 245, 0.92);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 18px 42px rgba(47, 61, 53, 0.18);
}

.mobile-nav a {
  display: grid;
  place-items: center;
  gap: 2px;

  padding: 8px 4px;

  border-radius: 18px;

  color: var(--text-soft);

  font-size: 0.78rem;
  font-weight: 700;
}

.mobile-nav a.active {
  color: var(--sage-900);
  background: linear-gradient(145deg, var(--sage-200), var(--sage-300));
}

.mobile-nav span {
  font-size: 1.12rem;
}

.mobile-nav em {
  font-style: normal;
}


/* =========================================================
   POP-UP SERVICES
   Le script possède aussi une sécurité de styles intégrée.
   Ces règles assurent un rendu cohérent dès le chargement.
   ========================================================= */

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 18px;
}

.service-modal.is-open {
  display: flex;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(21, 28, 23, 0.58);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-modal-dialog {
  position: relative;
  z-index: 1;

  width: min(760px, 100%);
  max-height: 86vh;
  overflow: auto;

  padding: clamp(22px, 4vw, 38px);

  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;

  background: rgba(255, 253, 247, 0.98);

  box-shadow: 0 34px 90px rgba(21, 28, 23, 0.28);
}

.service-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(47, 61, 53, 0.14);
  border-radius: 50%;

  color: var(--sage-900);
  background: var(--cream);

  font-size: 1.4rem;
  line-height: 1;
}

.service-modal-head {
  display: flex;
  align-items: center;

  margin-bottom: 18px;
  padding-right: 54px;
}

.service-modal-title {
  margin: 0;

  color: var(--sage-900);

  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.service-modal-summary {
  margin: 0 0 24px;

  color: var(--text-soft);

  font-size: 1.06rem;
  line-height: 1.65;
}

.service-modal-content {
  color: #445046;

  font-size: 1.06rem;
  line-height: 1.70;
}

.service-modal-content h3 {
  margin: 24px 0 8px;

  color: var(--sage-900);

  font-size: 1.28rem;
  font-weight: 600;
}

.service-modal-content p {
  margin: 0 0 12px;
}

.service-modal-content ul {
  margin: 8px 0 16px;
  padding-left: 20px;
}

.service-modal-content li {
  margin: 8px 0;
}

.rate-intro {
  margin: 0 0 20px !important;
  color: var(--text-soft);
}

.rate-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.45;
}

.rate-table th,
.rate-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.rate-table thead th {
  color: var(--cream);
  background: var(--sage-900);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate-table tbody tr:last-child th,
.rate-table tbody tr:last-child td {
  border-bottom: 0;
}

.rate-table tbody tr:nth-child(even) {
  background: var(--sage-100);
}

.rate-table tbody th {
  width: 27%;
  color: var(--sage-900);
  font-size: 1.12rem;
  font-weight: 700;
}

.rate-table .rate-price {
  width: 24%;
  color: var(--wood-900);
  font-size: 1.08rem;
  font-weight: 700;
  white-space: nowrap;
}

.rate-table .rate-rooms {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.rate-services {
  margin-top: 26px;
}

.rate-services h3 {
  margin-bottom: 12px;
}

.rate-service-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
}

.rate-service-table tbody th {
  width: auto;
}

.rate-service-table .rate-price {
  width: 42%;
  text-align: right;
}

@media (max-width: 620px) {
  .rate-table-wrap {
    overflow: visible;
  }

  .rate-table,
  .rate-table tbody,
  .rate-table tr,
  .rate-table th,
  .rate-table td {
    display: block;
    width: 100%;
  }

  .rate-table thead {
    display: none;
  }

  .rate-table tbody tr {
    padding: 15px 16px;
    border-bottom: 1px solid var(--line);
  }

  .rate-table tbody tr:last-child {
    border-bottom: 0;
  }

  .rate-table th,
  .rate-table td {
    padding: 0;
    border: 0;
  }

  .rate-table td {
    margin-top: 8px;
  }

  .rate-table [data-label]::before {
    content: attr(data-label) " · ";
    color: var(--text-soft);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .rate-table tbody th {
    font-size: 1.15rem;
  }

  .rate-table .rate-price {
    white-space: normal;
  }

  .rate-service-table .rate-price {
    text-align: left;
  }
}

.service-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 26px;
}


/* =========================================================
   CARTE DU BAR — PLEIN ÉCRAN
   ========================================================= */

.bar-menu-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;

  display: none;
  align-items: flex-start;
  justify-content: center;

  overflow-y: auto;
  overscroll-behavior: contain;

  padding: 30px;
}

.bar-menu-modal.is-open {
  display: flex;
}

.bar-menu-backdrop {
  position: fixed;
  inset: 0;

  background: rgba(20, 25, 22, 0.80);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bar-menu-container {
  position: relative;
  z-index: 1;

  width: min(1500px, 100%);
  min-width: 0;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 28px;

  background: #f4f3ef;

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.bar-menu-top {
  position: sticky;
  top: 0;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 18px 24px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bar-menu-eyebrow {
  display: block;
  margin-bottom: 2px;

  color: var(--sage-500);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bar-menu-top h2 {
  margin: 0;

  color: var(--sage-700);

  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 0.95;
}

.bar-menu-close {
  flex: 0 0 auto;

  width: 46px;
  height: 46px;

  border: 0;
  border-radius: 50%;

  color: white;
  background: var(--sage-500);

  font-size: 30px;
  line-height: 1;

  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.bar-menu-close:hover {
  transform: scale(1.04);
  background: var(--sage-700);
}

.bar-menu-images {
  display: flex;
  flex-direction: column;
  gap: 28px;

  padding: 28px;
}

.bar-menu-images img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 18px;

  background: white;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   RESPONSIVE — TABLETTE
   ========================================================= */

@media (max-width: 980px) {

  .app {
    width: min(100% - 28px, 760px);
  }

  .desktop-nav {
    display: none;
  }

  .top-actions {
    min-width: auto;
  }

  .hero {
    padding: 38px 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hotel-photo-card {
    max-width: 100%;
    justify-self: start;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-experience {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mobile-nav {
    display: grid;
  }

  .footer {
    padding-bottom: 92px;
  }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .app {
    width: 100%;
    padding: 0 12px 90px;
  }

  .topbar {
    top: 8px;
    margin-top: 10px;
    padding: 10px 12px;
  }

  .brand-logo span {
    font-size: 1.10rem;
    letter-spacing: 0.20em;
  }

  .brand-logo small {
    margin-top: 5px;
    font-size: 0.55rem;
    letter-spacing: 0.28em;
  }

  .pill {
    width: 42px;
    min-width: 42px;
    padding: 0;

    overflow: hidden;

    font-size: 0;
  }

  .pill::before {
    content: "☎";
    font-size: 1rem;
  }

  .lang-btn {
    min-width: 38px;
    padding: 0 6px;
  }

  .hero {
    min-height: auto;
    padding: 30px 20px 34px;
    border-radius: 30px;
  }

  .hero::before {
    inset: 10px;
    border-radius: 22px;
  }

  .hero h1,
  h1 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .lead {
    font-size: 1rem;
  }

  .hotel-photo-card {
    padding: 12px;
  }

  .hotel-photo-frame,
  .hotel-photo-frame img {
    min-height: 250px;
  }

  .panel {
    padding: 26px 18px;
    border-radius: 30px;
  }

  .section-head {
    display: grid;
  }

  .search-wrap {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 150px;
  }

  .local-feature-card {
    min-height: 420px;
  }

  .local-feature-card::after {
    background:
      linear-gradient(
        0deg,
        rgba(28, 42, 34, 0.94) 0%,
        rgba(28, 42, 34, 0.70) 58%,
        rgba(28, 42, 34, 0.18) 100%
      );
  }

  .local-feature-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 26px 22px;
  }

  .local-feature-content h3 {
    font-size: 38px;
  }

  .local-list-item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .local-list-thumbnail {
    width: 96px;
    height: 96px;
    border-radius: 15px;
  }

  .local-list-content h3 {
    font-size: 1.30rem;
  }

  .local-list-content p {
    font-size: 0.90rem;
  }

  .contact-card {
    min-height: 130px;
  }

  .service-modal {
    align-items: flex-end;
    padding: 0;
  }

  .service-modal-dialog {
    width: 100%;
    max-height: 88vh;

    padding: 24px 20px 26px;

    border-radius: 24px 24px 0 0;
  }

  .service-modal-title {
    font-size: 2.25rem;
  }

  .bar-menu-modal {
    padding: 0;
  }

  .bar-menu-container {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .bar-menu-top {
    padding:
      calc(12px + env(safe-area-inset-top, 0px))
      14px
      12px;
  }

  .bar-menu-eyebrow {
    font-size: 0.62rem;
  }

  .bar-menu-top h2 {
    font-size: 2rem;
  }

  .bar-menu-close {
    width: 42px;
    height: 42px;
    font-size: 27px;
  }

  .bar-menu-images {
    gap: 14px;
    padding: 12px 10px calc(22px + var(--safe-bottom));
  }

  .bar-menu-images img {
    border-radius: 10px;
  }
}
