/* ═══════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════ */
:root {
  /* Palette */
  --or:      #C9A84C;
  --or-l:    #E8D49A;
  --or-ll:   #FAF5E8;
  --or-lll:  #FDFAF2;
  --sable:   #F6F1EA;
  --sable-d: #EAE0D0;
  --brun:    #1C1710;
  --brun-2:  #2E2518;
  --brun-m:  #7A5C30;
  --brun-l:  #B8967A;
  --beige:   #D4C4A8;
  --blanc:   #FDFAF5;
  --rl:      #FBF0EF;
  --vert:    #4A6741;
  --vert-l:  #EAF1E6;

  /* Typo */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', 'Helvetica Neue', sans-serif;

  /* Layout */
  --max:  1140px;
  --r:    3px;
  --rl2:  6px;
  --sh:   0 4px 24px rgba(28,23,16,.08);
  --sh2:  0 12px 48px rgba(28,23,16,.14);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); background: var(--blanc); color: var(--brun); font-size: 16px; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--sans); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: var(--brun);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav.solid { background: var(--brun); }

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--blanc);
  letter-spacing: .06em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--or); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  color: rgba(253,250,245,.55);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r);
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blanc); }
.nav-links a.active { color: var(--or); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-cta {
  background: var(--or);
  color: var(--brun) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 9px 20px !important;
  border-radius: var(--r);
  transition: background .2s, transform .1s !important;
}
.nav-cta:hover { background: #B8942A !important; transform: translateY(-1px); }

.lang-tog { display: flex; align-items: center; gap: 3px; }
.lbtn {
  background: none; border: none;
  font-size: 11px; font-weight: 400; letter-spacing: .15em;
  color: rgba(253,250,245,.3);
  padding: 4px 5px;
  transition: color .2s;
}
.lbtn:hover, .lbtn.on { color: var(--or); font-weight: 500; }
.lsep { color: rgba(253,250,245,.15); font-size: 10px; }

/* Mobile nav */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(253,250,245,.7);
  transition: all .3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--brun-2);
  padding: 20px 0 28px;
  z-index: 199;
  border-top: 1px solid rgba(253,250,245,.06);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  color: rgba(253,250,245,.6);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px 32px;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--blanc); }

@media (max-width: 860px) {
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ═══════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r);
  transition: all .2s;
  white-space: nowrap;
}
.btn-or   { background: var(--or); color: var(--brun); }
.btn-or:hover { background: #B8942A; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.3); }
.btn-dark { background: var(--brun); color: var(--blanc); }
.btn-dark:hover { background: var(--brun-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid rgba(253,250,245,.35); color: var(--blanc); }
.btn-ghost:hover { border-color: var(--or); color: var(--or); }
.btn-outline { background: transparent; border: 1px solid var(--sable-d); color: var(--brun-m); }
.btn-outline:hover { border-color: var(--or); color: var(--brun); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 10px; }

/* ═══════════════════════════════════════════
   MISE EN PAGE
═══════════════════════════════════════════ */
.wrap  { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.wrap-sm { max-width: 780px; margin: 0 auto; padding: 0 32px; }
.sec  { padding: 96px 0; }
.sec-sm { padding: 64px 0; }
@media (max-width: 640px) { .wrap, .wrap-sm { padding: 0 20px; } .sec { padding: 64px 0; } }

.tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tag::before { content: ''; width: 28px; height: 1px; background: var(--or); flex-shrink: 0; }
.tag.dark::before { background: rgba(201,168,76,.5); }
.tag.dark { color: rgba(201,168,76,.7); }
.tag.center { justify-content: center; }
.tag.center::before { display: none; }

h1.serif { font-family: var(--serif); font-weight: 400; font-size: 64px; line-height: 1.05; }
h2.serif { font-family: var(--serif); font-weight: 400; font-size: 46px; line-height: 1.1; }
h3.serif { font-family: var(--serif); font-weight: 400; font-size: 32px; line-height: 1.15; }
h4.serif { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.2; }
@media (max-width: 640px) {
  h1.serif { font-size: 38px; }
  h2.serif { font-size: 32px; }
  h3.serif { font-size: 26px; }
}

.or-line { width: 44px; height: 1.5px; background: var(--or); margin: 18px 0; }
.or-line.c { margin: 18px auto; }

.lead { font-size: 17px; font-weight: 300; color: var(--brun-m); line-height: 1.9; }
.body-text { font-size: 15px; font-weight: 300; color: var(--brun-m); line-height: 1.85; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,23,16,.1) 0%,
    rgba(28,23,16,.3) 40%,
    rgba(28,23,16,.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 48px 96px;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--or); }
.hero-title { color: var(--blanc); margin-bottom: 12px; }
.hero-title em { font-style: italic; color: var(--or-l); }
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(253,250,245,.65);
  max-width: 520px;
  line-height: 1.9;
  margin: 18px 0 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(253,250,245,.3);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollline 1.8s ease-in-out infinite;
}
@keyframes scrollline { 0%,100%{opacity:.3;transform:scaleY(.5);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

@media (max-width: 680px) {
  .hero-content { padding: 0 24px 72px; }
  .hero-scroll { display: none; }
}

/* ═══════════════════════════════════════════
   BANDEAU CHIFFRES
═══════════════════════════════════════════ */
.strip {
  background: var(--brun);
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 28px 0;
}
.strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 32px;
  border-right: 1px solid rgba(253,250,245,.07);
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,250,245,.5);
}
.strip-item:last-child { border-right: none; }
.strip-item strong { color: var(--or); font-weight: 500; font-size: 15px; }
.strip-ico { font-size: 18px; opacity: .65; }
@media (max-width: 680px) { .strip-item { border: none; padding: 6px 16px; font-size: 12px; } }

/* ═══════════════════════════════════════════
   CARDS LOGEMENTS (listing)
═══════════════════════════════════════════ */
.prop-card {
  background: var(--blanc);
  border-radius: var(--rl2);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: box-shadow .3s, transform .3s;
}
.prop-card:hover { box-shadow: var(--sh2); transform: translateY(-4px); }

.prop-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.prop-card-img img { width:100%;height:100%;object-fit:cover;transition:transform .5s; }
.prop-card:hover .prop-card-img img { transform: scale(1.05); }

.prop-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r);
}
.prop-badge-or { background: var(--or); color: var(--brun); }
.prop-badge-dark { background: rgba(28,23,16,.7); color: rgba(253,250,245,.8); }

.prop-note {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(28,23,16,.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--r);
  padding: 6px 10px;
  text-align: center;
}
.prop-note .stars { color: var(--or); font-size: 11px; letter-spacing: 2px; }
.prop-note .n { font-family: var(--serif); font-size: 18px; color: var(--blanc); font-weight: 400; line-height: 1; }

.prop-body { padding: 28px 28px 32px; }
.prop-loc {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 8px;
}
.prop-name { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 10px; }
.prop-name em { font-style: italic; }
.prop-desc { font-size: 14px; color: var(--brun-m); font-weight: 300; line-height: 1.8; margin-bottom: 18px; }
.prop-metas {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.prop-meta {
  font-size: 12px;
  color: var(--brun-l);
  display: flex;
  align-items: center;
  gap: 5px;
}
.prop-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--sable-d);
}
.prop-price-main { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.prop-price-sub { font-size: 13px; color: var(--brun-l); font-weight: 300; }

/* HERO CARD (grande card pour Myria) */
.prop-card-hero {
  background: var(--blanc);
  border-radius: var(--rl2);
  overflow: hidden;
  box-shadow: var(--sh);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 480px;
  transition: box-shadow .3s;
}
.prop-card-hero:hover { box-shadow: var(--sh2); }
.prop-card-hero .prop-card-img { height: 100%; min-height: 400px; }
.prop-card-hero .prop-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.prop-card-hero .prop-name { font-size: 38px; margin-bottom: 12px; }
.prop-card-hero .prop-desc { font-size: 15px; margin-bottom: 22px; }
@media (max-width: 860px) {
  .prop-card-hero { grid-template-columns: 1fr; }
  .prop-card-hero .prop-card-img { min-height: 260px; }
  .prop-card-hero .prop-body { padding: 28px 24px; }
  .prop-card-hero .prop-name { font-size: 28px; }
}

/* ═══════════════════════════════════════════
   CALENDRIER
═══════════════════════════════════════════ */
.cal-nav { display:flex;align-items:center;justify-content:space-between;margin-bottom:14px; }
.cal-btn {
  background: none;
  border: 1px solid var(--sable-d);
  width: 34px; height: 34px;
  border-radius: var(--r);
  font-size: 18px; color: var(--brun);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  line-height: 1;
}
.cal-btn:hover { background: var(--sable-d); }
.cal-lbl { font-family: var(--serif); font-size: 18px; font-weight: 400; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-dh {
  text-align: center;
  font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brun-l);
  padding: 4px 0 9px;
}
.cal-d {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 400;
  cursor: pointer; border-radius: var(--r);
  transition: background .1s;
  user-select: none;
  position: relative;
  overflow: hidden;
}
/* Libre */
.cal-d:hover:not(.bk):not(.past):not(.em) { background: var(--sable-d); }
/* Vide / hors mois */
.cal-d.em,.cal-d.past { cursor: default; }
.cal-d.past { color: var(--sable-d); }
/* Entièrement réservé */
.cal-d.bk {
  background: var(--rl);
  color: #CCA8A4;
  cursor: not-allowed;
  text-decoration: line-through;
}
/* ── Demi-cases à la Smoobu ── */
/* ci = check-in ce soir : moitié droite réservée, moitié gauche libre */
.cal-d.ci {
  background: linear-gradient(to right, transparent 50%, var(--rl) 50%);
  border-radius: 0;
  cursor: pointer;
}
.cal-d.ci:hover { background: linear-gradient(to right, var(--sable-d) 50%, var(--rl) 50%); }
/* co = check-out ce matin : moitié gauche réservée, moitié droite libre */
.cal-d.co {
  background: linear-gradient(to left, transparent 50%, var(--rl) 50%);
  border-radius: 0;
  cursor: pointer;
}
.cal-d.co:hover { background: linear-gradient(to left, var(--sable-d) 50%, var(--rl) 50%); }
/* Sélection */
.cal-d.ss { background: var(--brun) !important; color: var(--blanc) !important; font-weight: 500; cursor:pointer; }
.cal-d.sr { background: var(--sable-d) !important; }
/* Aujourd'hui */
.cal-d.td::after { content:''; position:absolute; bottom:3px; left:50%; transform:translateX(-50%); width:4px;height:4px;background:var(--or);border-radius:50%; }
/* Légende */
.cal-legend { display:flex;gap:16px;margin-top:12px;flex-wrap:wrap; }
.cal-leg { display:flex;align-items:center;gap:6px;font-size:11px;color:var(--brun-l); }
.cal-leg-dot { width:10px;height:10px;border-radius:var(--r);flex-shrink:0; }
.cal-status { margin-top:9px;font-size:12px;color:var(--brun-l);min-height:16px;font-style:italic; }
.cal-status.ok { color:#4A7A40;font-style:normal; }
.cal-status.err { color:#A63A2B;font-style:normal; }

/* ═══════════════════════════════════════════
   BOOKING BOX
═══════════════════════════════════════════ */
.bk-box {
  background: var(--blanc);
  border: 1px solid var(--sable-d);
  border-radius: var(--rl2);
  padding: 32px;
  position: sticky;
  top: 84px;
  box-shadow: var(--sh);
}
.bk-price { margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--sable-d); }
.bk-price-main { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--brun); }
.bk-price-sub { font-size: 13px; color: var(--brun-l); font-weight: 300; }
.bk-direct { font-size: 12px; color: var(--or); margin-top: 4px; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.frow.full { grid-template-columns: 1fr; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--brun-l); }
.fg input, .fg select, .fg textarea {
  background: var(--sable);
  border: 1px solid var(--sable-d);
  color: var(--brun);
  padding: 10px 13px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  border-radius: var(--r);
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--or);
  background: var(--blanc);
}
.fg input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .5; }
.fg textarea { resize: vertical; min-height: 90px; }

.price-recap {
  background: var(--sable);
  border-radius: var(--r);
  padding: 15px 16px;
  margin: 14px 0;
  font-size: 13px;
}
.pr-row { display: flex; justify-content: space-between; padding: 3px 0; color: var(--brun-m); }
.pr-row.tot {
  border-top: 1px solid var(--sable-d);
  margin-top: 8px; padding-top: 10px;
  font-size: 15px; font-weight: 500; color: var(--brun);
}

/* UPSELLS */
.upsells-title { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--brun-l); margin-bottom: 9px; }
.upsell {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--sable-d);
  border-radius: var(--r);
  margin-bottom: 6px;
  cursor: pointer;
  transition: all .15s;
  background: var(--blanc);
}
.upsell:hover { border-color: var(--or-l); }
.upsell.on { border-color: var(--or); background: var(--or-lll); }
.upsell input[type="checkbox"] { accent-color: var(--or); width:15px;height:15px;cursor:pointer;flex-shrink:0; }
.upsell-lbl { flex:1; font-size:13px; color:var(--brun); }
.upsell-ico { font-size:17px; }
.upsell-px { font-size:13px;font-weight:500;color:var(--brun-m);white-space:nowrap; }

/* ═══════════════════════════════════════════
   PAGE LOGEMENT (détail)
═══════════════════════════════════════════ */
.page-hero {
  background: var(--brun);
  padding: 120px 32px 52px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg { position:absolute;inset:0;background-size:cover;background-position:center;opacity:.22; }
.page-hero-inner { position:relative;z-index:1;max-width:var(--max);margin:0 auto; }
.breadcrumb { display:flex;align-items:center;gap:8px;font-size:12px;color:rgba(253,250,245,.35);margin-bottom:20px; }
.breadcrumb a { color:rgba(253,250,245,.35);transition:color .2s; }
.breadcrumb a:hover { color:var(--or); }
.breadcrumb .s { opacity:.25; }
.page-hero-top { display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:20px; }
.page-hero-meta { display:flex;align-items:center;gap:10px;font-size:13px;color:rgba(253,250,245,.5);flex-wrap:wrap;margin-top:10px; }
.phmeta-sep { opacity:.2; }

.note-badge {
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--r);
  padding: 10px 18px;
  text-align: center;
  white-space: nowrap;
}
.note-badge .stars { color:var(--or);letter-spacing:2px;font-size:12px; }
.note-badge .n { font-family:var(--serif);font-size:26px;font-weight:400;color:var(--blanc);line-height:1; }
.note-badge .av { font-size:11px;color:rgba(253,250,245,.4); }

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 3px;
  border-radius: var(--rl2);
  overflow: hidden;
  margin-bottom: 48px;
}
.gallery img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.gallery img:hover { transform:scale(1.04); }
.gallery img:first-child { grid-row:span 2; }
@media (max-width:640px) {
  .gallery { grid-template-columns:1fr;grid-template-rows:220px 160px 160px; }
  .gallery img:first-child { grid-row:span 1; }
}

/* Détail */
.detail-layout { display:grid;grid-template-columns:1fr 380px;gap:52px;align-items:start; }
@media (max-width:960px) { .detail-layout { grid-template-columns:1fr; } .bk-box { position:static;order:-1; } }

.ds { margin-bottom:44px;padding-bottom:44px;border-bottom:1px solid var(--sable-d); }
.ds:last-child { border-bottom:none; }
.ds h2 { font-family:var(--serif);font-size:28px;font-weight:400;margin-bottom:18px; }

.highlights { display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:24px; }
@media (max-width:560px) { .highlights { grid-template-columns:1fr; } }
.hl {
  display:flex;align-items:flex-start;gap:12px;
  padding:15px 16px;
  background:var(--blanc);
  border:1px solid var(--sable-d);
  border-radius:var(--rl2);
}
.hl.gold { border-color:var(--or-l);background:var(--or-lll); }
.hl-ico { font-size:22px;flex-shrink:0; }
.hl-title { font-size:13px;font-weight:500;margin-bottom:3px; }
.hl-text { font-size:12px;color:var(--brun-m);font-weight:300;line-height:1.5; }

/* Amenities */
.am-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:8px;margin-bottom:20px; }
.am-item {
  display:flex;align-items:center;gap:9px;
  background:var(--sable);
  border:1px solid var(--sable-d);
  padding:11px 13px;
  border-radius:var(--r);
  font-size:13px;color:var(--brun-m);
}
.am-item.star { border-color:var(--or-l);background:var(--or-lll);color:var(--brun);font-weight:500; }
.am-ico { font-size:17px;flex-shrink:0;width:22px;text-align:center; }
.am-cat { font-size:10px;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--brun-l);margin-bottom:10px;margin-top:18px; }

/* Avis */
.reviews-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:14px;margin-top:28px; }
.review-card { background:var(--blanc);border:1px solid var(--sable-d);border-radius:var(--rl2);padding:22px; }
.rc-stars { color:var(--or);font-size:12px;letter-spacing:2px;margin-bottom:9px; }
.rc-text { font-size:14px;color:var(--brun-m);font-weight:300;line-height:1.75;font-style:italic;margin-bottom:13px; }
.rc-author { font-size:12px;font-weight:500;color:var(--brun); }
.rc-date { font-size:11px;color:var(--brun-l);margin-top:2px; }

/* Localisation */
.loc-list { display:flex;flex-direction:column;gap:10px; }
.loc-item { display:flex;align-items:center;gap:12px;font-size:14px;color:var(--brun-m);font-weight:300; }
.loc-ico { font-size:19px;width:28px;text-align:center; }
.loc-item strong { color:var(--brun);font-weight:500; }

/* ═══════════════════════════════════════════
   AVIS (section homepage)
═══════════════════════════════════════════ */
.review-hp {
  background: var(--blanc);
  border: 1px solid var(--sable-d);
  border-radius: var(--rl2);
  padding: 28px;
}
.rhp-quote { font-size:22px;color:var(--or);font-family:var(--serif);margin-bottom:4px; }
.rhp-text { font-size:15px;color:var(--brun-m);font-weight:300;line-height:1.8;font-style:italic;margin-bottom:18px; }
.rhp-foot { display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px; }
.rhp-author { font-size:13px;font-weight:500;color:var(--brun); }
.rhp-stars { color:var(--or);font-size:12px;letter-spacing:2px; }

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:24px; }
.blog-card { background:var(--blanc);border-radius:var(--rl2);overflow:hidden;border:1px solid var(--sable-d);transition:box-shadow .3s,transform .3s; }
.blog-card:hover { box-shadow:var(--sh);transform:translateY(-3px); }
.blog-card-img { height:200px;overflow:hidden; }
.blog-card-img img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.blog-card:hover .blog-card-img img { transform:scale(1.04); }
.blog-card-body { padding:22px; }
.blog-cat { font-size:10px;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--or);margin-bottom:8px; }
.blog-title { font-family:var(--serif);font-size:20px;font-weight:400;margin-bottom:8px;line-height:1.25; }
.blog-excerpt { font-size:13px;color:var(--brun-m);font-weight:300;line-height:1.7;margin-bottom:14px; }
.blog-meta { font-size:11px;color:var(--brun-l); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-grid { display:grid;grid-template-columns:1fr 1fr;gap:3px;background:var(--sable-d);border:3px solid var(--sable-d);border-radius:var(--rl2);overflow:hidden; }
@media (max-width:720px) { .contact-grid { grid-template-columns:1fr; } }
.contact-pane { background:var(--blanc);padding:52px 44px; }
.contact-pane.dark { background:var(--brun-2); }
.ci-list { display:flex;flex-direction:column;gap:18px;margin-top:28px; }
.ci { display:flex;gap:16px; }
.ci-ico { font-size:20px;width:30px;flex-shrink:0;text-align:center;padding-top:2px; }
.ci-lbl { font-size:10px;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:var(--brun-l);margin-bottom:4px; }
.ci-val { font-size:15px;font-weight:300;color:var(--brun-m); }
.ci-val a { transition:color .2s; }
.ci-val a:hover { color:var(--or); }
/* Dark pane */
.contact-pane.dark .ci-lbl { color:rgba(253,250,245,.3); }
.contact-pane.dark .ci-val { color:rgba(253,250,245,.65); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background:var(--brun);padding:60px 0 28px; }
.footer-grid {
  max-width:var(--max);margin:0 auto;padding:0 32px;
  display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:40px;margin-bottom:48px;
}
@media (max-width:860px) { .footer-grid { grid-template-columns:1fr 1fr;gap:28px; } }
@media (max-width:480px) { .footer-grid { grid-template-columns:1fr; } }

.footer-logo { font-family:var(--serif);font-size:24px;color:var(--blanc);margin-bottom:12px; }
.footer-logo span { color:var(--or); }
.footer-desc { font-size:13px;font-weight:300;color:rgba(253,250,245,.4);line-height:1.8; }
.footer-col h4 { font-size:10px;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--or);margin-bottom:18px; }
.footer-col a,
.footer-col p { display:block;font-size:13px;font-weight:300;color:rgba(253,250,245,.45);margin-bottom:9px;transition:color .2s; }
.footer-col a:hover { color:var(--blanc); }
.footer-bottom {
  max-width:var(--max);margin:0 auto;padding:0 32px;
  border-top:1px solid rgba(253,250,245,.06);
  padding-top:24px;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:12px;
  font-size:11px;font-weight:300;color:rgba(253,250,245,.2);
}
.footer-bottom a { color:rgba(253,250,245,.28);transition:color .2s; }
.footer-bottom a:hover { color:var(--blanc); }

/* ═══════════════════════════════════════════
   TOAST & OVERLAY
═══════════════════════════════════════════ */
.toast {
  position:fixed;bottom:24px;right:24px;
  background:var(--brun);color:var(--blanc);
  padding:13px 20px;border-radius:var(--rl2);
  border-left:3px solid var(--or);
  font-size:14px;font-weight:300;
  box-shadow:var(--sh2);
  transform:translateY(100px);opacity:0;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  z-index:500;max-width:340px;pointer-events:none;
}
.toast.show { transform:translateY(0);opacity:1; }

.loader {
  position:fixed;inset:0;
  background:rgba(28,23,16,.6);
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  z-index:600;
  opacity:0;pointer-events:none;transition:opacity .3s;
}
.loader.show { opacity:1;pointer-events:all; }
.spinner {
  width:40px;height:40px;
  border:2px solid rgba(201,168,76,.25);
  border-top-color:var(--or);
  border-radius:50%;
  animation:spin .7s linear infinite;
  margin-bottom:14px;
}
@keyframes spin { to { transform:rotate(360deg); } }
.loader-txt { color:var(--blanc);font-size:14px;font-weight:300;letter-spacing:.08em; }

/* ═══════════════════════════════════════════
   UTILITAIRES
═══════════════════════════════════════════ */
.badge { display:inline-block;font-size:10px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;padding:4px 12px;border-radius:var(--r); }
.badge-or { background:var(--or-ll);color:var(--brun-m);border:1px solid var(--or-l); }
.badge-dark { background:rgba(253,250,245,.1);color:rgba(253,250,245,.6); }
/* ═══════════════════════════════════════════
   WIDGET SMOOBU
═══════════════════════════════════════════ */
.smoobu-wrap {
  border: 1px solid var(--sable-d);
  border-radius: var(--rl2);
  overflow: hidden;
  margin-bottom: 4px;
}
.smoobu-wrap .calendarWidget { font-family: var(--sans) !important; }
.smoobu-wrap table { width: 100% !important; }

.text-center { text-align:center; }
.mt-4 { margin-top:16px; }
.mt-8 { margin-top:32px; }
.mb-4 { margin-bottom:16px; }
.mb-8 { margin-bottom:32px; }
.gap-section { height:48px; }
