/* ==========================================================================
   THE HUBSTAY — Système de design (site statique Vercel, sans build)
   Identité reprise du site Squarespace thehubstay.com :
     - Bleu de marque #003F8F · Beige #F4EFE3 · Blanc
     - Titres / logo : Anton (condensé, fort, capitales)
     - Corps : Epilogue
   Le HTML est généré par scripts/build.mjs (source unique header/footer).
   ========================================================================== */

/* 1. Tokens --------------------------------------------------------------- */
:root {
  --blue: #003f8f;
  --blue-dark: #002f6c;
  --blue-deep: #001f47;
  --beige: #f4efe3;
  --beige-2: #ece4d2;
  --cream: #f4efe3;
  --line: #e2d9c6;
  --white: #ffffff;
  --ink: #1c2433;
  --ink-soft: #46505f;
  --ink-mute: #5a626e; /* assombri pour contraste AA sur fond beige (>=4.5:1) */
  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --body: "Epilogue", "Helvetica Neue", Arial, system-ui, sans-serif;
  --shadow: 0 18px 40px -22px rgba(0, 31, 71, 0.45);
  --shadow-soft: 0 12px 30px -20px rgba(0, 31, 71, 0.4);
  --shadow-cta: 0 10px 28px rgba(0, 0, 0, 0.25);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.04;
  margin: 0 0 0.4em;
  color: var(--blue);
}
h3, h4 { font-family: var(--body); font-weight: 700; line-height: 1.2; margin: 0 0 0.5em; color: var(--ink); }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--blue); }
img { max-width: 100%; display: block; }
strong { color: var(--ink); }

/* 1b. Accessibilité (WCAG 2.2) ------------------------------------------- */
/* Lien d'évitement : caché jusqu'au focus clavier */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--blue);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 0; }

/* Cible du lien d'évitement : pas de contour persistant sur <main> */
main:focus { outline: none; }

/* Focus clavier visible et contrasté (>=3:1) sur tous les éléments interactifs */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Sur fonds bleus/sombres, contour clair pour rester visible */
.home-hero a:focus-visible,
.cta-band a:focus-visible,
.site-footer a:focus-visible,
.btn-cream:focus-visible,
.btn-light:focus-visible {
  outline-color: var(--white);
}

/* Les ancres ne sont pas masquées par le header sticky (2.4.11) */
:target { scroll-margin-top: 92px; }
main { scroll-margin-top: 92px; }

/* Respect de prefers-reduced-motion (2.3.3) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 2. Utilitaires ---------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-top: 1.5em; }
.prose h2:first-child { margin-top: 0; }

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--blue);
  background: transparent;
  margin: 0 0 0.9em;
}
.pill {
  font-family: var(--body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--blue);
  background: rgba(0, 63, 143, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.9em;
  min-height: 44px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-blue:active { transform: translateY(0); box-shadow: none; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0); }
.btn-cream { background: var(--cream); color: var(--blue); border-color: var(--cream); box-shadow: var(--shadow-cta); }
.btn-cream:hover { background: var(--white); color: var(--blue); border-color: var(--white); transform: translateY(-2px); }
.btn-cream:active { transform: translateY(0); box-shadow: none; }
.btn-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.6); }
.btn-light:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.btn-light:active { transform: translateY(0); }
.btn-lg { padding: 1.05em 2.6em; font-size: 1rem; min-width: 240px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.center .btn-row, .btn-row.center { justify-content: center; }

/* 3. En-tête / navigation ------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--beige);
  border-bottom: 1px solid rgba(0, 31, 71, 0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 78px; }
.brand {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.primary-nav a:hover { opacity: 0.65; }
.primary-nav a[aria-current="page"] { border-bottom: 2px solid var(--blue); padding-bottom: 3px; }
.primary-nav a.nav-book {
  background: var(--blue);
  color: var(--white);
  padding: 0.6em 1.3em;
  border-radius: 999px;
  font-weight: 700;
}
.primary-nav a.nav-book:hover { background: var(--blue-dark); opacity: 1; }
.primary-nav a.nav-book[aria-current="page"] { border-bottom: 0; padding-bottom: 0.6em; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--blue); margin: 5px 0; transition: 0.2s; }

/* 4. Hero accueil --------------------------------------------------------- */
.home-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 90px;
  color: var(--white);
  background-color: var(--blue-deep);
  /* L'image /images/hero-home.jpg s'affiche dès qu'elle est ajoutée ;
     sinon le dégradé bleu sert de repli premium. */
  background-image:
    linear-gradient(rgba(2, 16, 40, 0.5), rgba(2, 16, 40, 0.62)),
    linear-gradient(160deg, #013a82 0%, #001b41 100%),
    url("/images/hero-home.jpg");
  background-size: cover, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-hero .container { max-width: 880px; }
.hero-title { font-family: var(--display); color: var(--white); font-size: clamp(3.2rem, 11vw, 7rem); letter-spacing: 0.04em; margin: 0 0 0.05em; line-height: 0.98; }
.hero-line { font-family: var(--display); color: var(--white); font-size: clamp(1.4rem, 4.5vw, 2.6rem); letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 0.2em; }
.hero-strong { font-family: var(--body); color: rgba(255, 255, 255, 0.92); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: clamp(0.85rem, 2vw, 1.05rem); margin: 0 0 1.6em; }
.hero-text { max-width: 640px; margin: 0 auto 2em; }
.hero-text p { color: rgba(255, 255, 255, 0.92); font-size: clamp(1rem, 2.2vw, 1.15rem); margin: 0 0 0.5em; }

/* Hero de page intérieure */
.page-hero { padding: 84px 0 60px; background: var(--beige); border-bottom: 1px solid var(--line); }
.page-hero .container { max-width: 820px; }
.page-hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
.page-hero .lead { font-size: 1.08rem; color: var(--ink-soft); }
.breadcrumb { font-family: var(--body); font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink-mute); margin-bottom: 1.3em; text-transform: uppercase; }
.breadcrumb a { text-decoration: none; color: var(--blue); }

/* 5. Sections ------------------------------------------------------------- */
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.section-beige { background: var(--beige); }
.section-blue { background: var(--blue); color: var(--white); }
.section-head { max-width: 680px; margin: 0 auto 68px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); }
.section-head p { font-size: 1.05rem; }
.divider { height: 1px; background: var(--line); border: 0; }

.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.aside { background: var(--beige); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.aside h3 { color: var(--blue); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.value h3 { font-size: 1.2rem; margin-top: 0.3em; }
.value p { font-size: 0.96rem; margin: 0; }

/* 6. Cartes adresses ------------------------------------------------------ */
.stays { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; width: 100%; }
.stay-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.stay-card:hover .btn-blue { background: var(--blue-dark); border-color: var(--blue-dark); }
.stay-media {
  aspect-ratio: 4 / 3;
  background-color: var(--blue-deep);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.stay-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stay-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,31,71,0.05) 0%, rgba(0,31,71,0.55) 100%); }
.stay-media .stay-tag {
  position: relative; z-index: 1;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  font-size: 1.3rem;
  padding: 18px 22px;
}
.stay-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.stay-body h3 { font-size: 1.35rem; color: var(--blue); }
.stay-body .place { font-style: italic; color: var(--ink-mute); margin: -0.2em 0 1em; }
.stay-body ul { list-style: none; padding: 0; margin: 0 0 1.5em; }
.stay-body li { position: relative; padding: 7px 0 7px 24px; font-size: 0.95rem; color: var(--ink-soft); border-bottom: 1px solid var(--beige-2); }
.stay-body li::before { content: ""; position: absolute; left: 2px; top: 15px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.stay-body .card-cta { margin-top: auto; }

/* 7. Offres & tarifs ------------------------------------------------------ */
.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.offer { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; display: flex; flex-direction: column; }
.offer.featured { border-color: var(--blue-deep); background: var(--blue-deep); box-shadow: var(--shadow-soft); }
.offer.featured h3, .offer.featured .price, .offer.featured .duration, .offer.featured li { color: var(--white); }
.offer.featured .pill { color: var(--white); background: rgba(255,255,255,0.15); }
.offer.featured li::before { color: rgba(255,255,255,0.8); }
.offer h3 { color: var(--ink); }
.price { font-family: var(--display); font-size: 2rem; color: var(--blue); margin: 0.2em 0 0; letter-spacing: 0.02em; }
.price small { font-family: var(--body); font-size: 0.75rem; color: var(--ink-mute); font-weight: 600; }
.duration { font-size: 0.85rem; color: var(--ink-mute); margin-bottom: 1em; }
.offer ul, .check-list { list-style: none; padding: 0; margin: 0.4em 0 1.4em; }
.offer li, .check-list li { position: relative; padding: 7px 0 7px 26px; font-size: 0.95rem; color: var(--ink-soft); }
.offer li::before, .check-list li::before { content: "✓"; position: absolute; left: 0; top: 7px; color: var(--blue); font-weight: 800; }
.offer .offer-cta { margin-top: auto; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; list-style: none; padding: 0; margin: 1.3em 0 1.8em; }
.feature-grid li { position: relative; padding: 9px 0 9px 24px; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.feature-grid li::before { content: ""; position: absolute; left: 2px; top: 17px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

/* 8b. Galerie propriété --------------------------------------------------- */
.property-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.property-gallery .gallery-main { grid-column: span 2; }
.property-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.property-gallery figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.24s ease-out; }
.property-gallery figure:hover img { transform: scale(1.04); }
@media (max-width: 820px) { .property-gallery { grid-template-columns: 1fr 1fr; } .property-gallery .gallery-main { grid-column: span 2; } }
@media (max-width: 540px) { .property-gallery { grid-template-columns: 1fr; } .property-gallery .gallery-main { grid-column: span 1; } }

/* 8. Bandeau CTA ---------------------------------------------------------- */
.cta-band { background: var(--blue); color: var(--white); border-radius: var(--radius-lg); padding: 64px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: auto -90px -130px auto; width: 380px; height: 380px; background: rgba(255, 255, 255, 0.06); border-radius: 50%; }
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.5rem); }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 640px; margin: 0 auto 1.4em; }
.cta-band .btn-row { justify-content: center; position: relative; z-index: 1; }
.chips { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 22px 0 30px; position: relative; z-index: 1; }
.chips span { background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2); padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; color: var(--white); }

/* 9. FAQ ------------------------------------------------------------------ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 38px 18px 0; font-weight: 700; font-size: 1.05rem; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 16px; font-size: 1.5rem; color: var(--blue); }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 0 16px; margin: 0; }

/* 10. Contact ------------------------------------------------------------- */
.contact-envelope { background: var(--beige); min-height: calc(100vh - 72px); display: flex; align-items: center; padding: 60px 0; }
.contact-envelope-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; width: 100%; }
.contact-title { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink); text-transform: uppercase; line-height: 1.1; margin: 0 0 20px; }
.contact-email { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; font-size: 1rem; word-break: break-all; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label { font-size: 0.82rem; color: var(--ink-soft); }
.cf-field label span { color: var(--ink-mute); font-size: 0.78rem; }
.cf-field input, .cf-field textarea { background: transparent; border: none; border-bottom: 1px solid var(--ink-soft); border-radius: 0; padding: 8px 0; font-family: var(--body); font-size: 0.95rem; color: var(--ink); outline: none; resize: none; transition: border-color 0.18s; }
.cf-field input:focus, .cf-field textarea:focus { border-bottom-color: var(--blue); }
.cf-submit { align-self: flex-start; margin-top: 8px; }

/* 11. Note / disclaimer --------------------------------------------------- */
.note { background: var(--beige); border-left: 3px solid var(--blue); border-radius: 8px; padding: 20px 24px; font-size: 0.9rem; color: var(--ink-mute); margin: 1.6em 0; }
.note strong { color: var(--ink-soft); }
.draft-banner { background: #fff7e6; border: 1px solid #f0d9a8; color: #8a6d1f; border-radius: 8px; padding: 12px 18px; font-size: 0.85rem; margin-bottom: 1.6em; }

/* 12. Pied de page -------------------------------------------------------- */
.site-footer { background: var(--blue-deep); color: rgba(255, 255, 255, 0.82); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.site-footer .brand { color: var(--white); font-size: 1.5rem; display: inline-block; margin-bottom: 10px; }
.site-footer p { color: rgba(255, 255, 255, 0.72); max-width: 320px; }
.footer-col h4 { color: var(--white); font-family: var(--body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255, 255, 255, 0.82); text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.14); font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }

/* 13. Responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-envelope-inner { grid-template-columns: 1fr; gap: 40px; }
  .cf-row { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .stays, .offers, .feature-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--beige);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 22px;
    display: none;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 0; font-size: 1.1rem; }
  .primary-nav a[aria-current="page"] { border-bottom: 0; opacity: 0.7; }
  .primary-nav a.nav-book { text-align: center; margin-top: 8px; }
  .home-hero { min-height: 78vh; }
  .section { padding: 60px 0; }
  .cta-band { padding: 48px 26px; }
  .btn-lg { min-width: 0; width: 100%; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* 14. Subnav (tabs audit/session) ---------------------------------------- */
.subnav { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin: 1.4em 0 0; }
.subnav a { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); text-decoration: none; padding: 10px 0; margin-right: 28px; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.subnav a:hover { color: var(--blue); }
.subnav a[aria-current="page"] { color: var(--blue); border-bottom-color: var(--blue); }

/* Booking fallback ------------------------------------------------------ */
.booking-fallback { text-align: center; padding: 40px 24px; background: var(--beige); border-radius: var(--radius); margin-bottom: 16px; }
.booking-fallback p { margin: 0 0 16px; color: var(--ink-soft); }

/* 14b. Pied de page — liens légaux --------------------------------------- */
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 0.75rem; text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.75); }

/* 15. Bannière cookies ---------------------------------------------------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--blue-deep); color: rgba(255,255,255,0.9); z-index: 1000; transform: translateY(100%); transition: transform 0.3s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { max-width: var(--maxw); margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.cookie-inner p { margin: 0; font-size: 0.88rem; line-height: 1.5; }
.cookie-inner a { color: var(--cream); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-cookie-refuse { background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; font-size: 0.82rem; text-decoration: underline; padding: 6px 0; font-family: var(--body); }
.btn-cookie-refuse:hover { color: rgba(255,255,255,0.9); }
@media (max-width: 540px) { .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; } }

/* 16. Tableau comparatif ------------------------------------------------- */
.table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--beige-dark, #e8e0d0); }
.compare-table thead th { background: var(--blue); color: #fff; font-family: var(--body); font-weight: 700; }
.compare-table thead th:first-child { background: var(--blue-dark); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: rgba(244,239,227,0.5); }
.compare-table td:nth-child(2), .compare-table td:nth-child(3) { text-align: center; }
.compare-table td:nth-child(2) { font-weight: 600; }
.compare-table td:nth-child(3) { font-weight: 700; color: var(--blue); }

/* 17. Moteur de réservation Superhote ------------------------------------ */
.booking-wrapper { max-width: 1200px; margin: 0 auto; }
#bookingengine { display: block; width: 100%; height: 1100px; border: none; }
@media (max-width: 768px) { #bookingengine { height: 1300px; } }
