/* ═══════════════════════════════════════════════════════════
   HÔTEL CHÂTELET PÉTRUSSE — Feuille de style partagée
   Palette charte graphique : or champagne / noir chaud / crème
═══════════════════════════════════════════════════════════ */
:root {
  --or:         #C4A265;
  --or-clair:   #D4B883;
  --or-pale:    #EAD9B8;
  --noir:       #2C2624;
  --noir-mid:   #4A4240;
  --creme:      #FAF7F0;
  --creme-mid:  #F0E8D8;
  --blanc:      #FFFFFF;
  --gris:       #6E635A;
  --gris-clair: #F5F0E8;
  --erreur:     #B3433C;

  --f-titre:    'Cormorant Garamond', Georgia, serif;
  --f-sc:       'Cormorant Garamond', Georgia, serif;
  --f-corps:    'Cormorant Garamond', Georgia, serif;

  --nav-h:      64px;
  --section-pad: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  font-family: var(--f-corps);
  background: var(--blanc);
  color: var(--noir);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--noir); color: var(--blanc);
  padding: 14px 24px; font-family: var(--f-sc);
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.icon {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none;
  stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Layout ─────────────────────────────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.wrap--narrow { max-width: 860px; margin: 0 auto; padding: 0 40px; }

/* ── Typographie commune ────────────────────────────────── */
.label {
  font-family: var(--f-sc);
  font-size: .72rem; font-weight: 500; letter-spacing: .3em;
  text-transform: uppercase; color: var(--or);
  display: block; margin-bottom: 18px;
}
.h2 {
  font-family: var(--f-titre);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.1; letter-spacing: .01em;
  color: var(--noir);
}
#titre-contact { font-size: clamp(1.8rem, 2.6vw, 2.6rem); white-space: nowrap; }
.lead {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  font-weight: 300; color: var(--gris); line-height: 1.85;
}

/* ── Boutons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sc); font-size: .72rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  padding: 16px 38px; border: 1px solid currentColor;
  cursor: pointer; transition: all .3s ease; white-space: nowrap;
}
.btn--or { color: var(--or); border-color: var(--or); background: transparent; }
.btn--or:hover { background: var(--or); color: var(--blanc); }
.btn--plein { background: var(--or); color: var(--blanc); border-color: var(--or); }
.btn--plein:hover { background: var(--or-clair); border-color: var(--or-clair); }
.btn svg { width: 14px; height: 14px; transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }
.btn:active, .btn-hero-primaire:active { transform: scale(.97); }
.btn:disabled, .btn-hero-primaire:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 100;
}
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: flex-end; gap: 28px; }
.nav-inner--split { justify-content: space-between; }

.nav-back {
  font-family: var(--f-titre); font-size: .95rem; font-weight: 500;
  letter-spacing: .04em; transition: color .2s, opacity .2s;
}

.nav-cta {
  font-family: var(--f-titre) !important; font-size: 1.05rem !important; font-weight: 500;
  letter-spacing: .04em !important; padding: 8px 4px;
  text-transform: uppercase;
  transition: color .25s, opacity .25s !important;
}
.nav-cta::after { display: none !important; }

/* Contexte sombre (accueil, nav superposee a la photo) : texte blanc */
.nav-inner--home .nav-cta { color: var(--blanc) !important; }
.nav-inner--home .nav-cta:hover { color: var(--or-clair) !important; opacity: .9; }
.nav-inner--home .lang-switch button { color: rgba(255,255,255,.7); }
.nav-inner--home .lang-switch button:hover { color: var(--blanc); }
.nav-inner--home .lang-switch button.active { color: var(--or-clair); }

/* Contexte clair (contact, nav superposee au fond creme) : texte fonce */
.nav-inner--split .nav-back { color: var(--noir); }
.nav-inner--split .nav-back:hover { color: var(--or); }
.nav-inner--split .lang-switch button { color: var(--gris); }
.nav-inner--split .lang-switch button:hover { color: var(--noir); }
.nav-inner--split .lang-switch button.active { color: var(--or); }
.nav-inner--split .lang-switch span.lang-sep { color: rgba(44,38,36,.25); }

/* ── Logo en texte vectoriel (net à toute taille / tout écran) ── */
.logo-mark { display: flex; flex-direction: column; align-items: center; width: fit-content; line-height: 1; font-style: normal; }
.logo-mark .lm-nom {
  font-family: var(--f-titre); font-weight: 500; font-variant: small-caps;
  letter-spacing: .07em; color: var(--blanc); white-space: nowrap;
}
.logo-mark .lm-hotel-row { display: flex; align-items: center; gap: 14px; margin-top: .5em; }
.logo-mark .lm-line { display: none; }
.logo-mark .lm-hotel { font-family: var(--f-titre); font-weight: 500; letter-spacing: .34em; text-transform: uppercase; color: var(--blanc); white-space: nowrap; }
.logo-mark .lm-stars { color: var(--or); letter-spacing: .25em; margin-top: .5em; }

.logo-mark--hero { animation: fadeUp .9s .12s ease both; }
.logo-mark--hero .lm-nom   { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.logo-mark--hero .lm-hotel { font-size: clamp(1.38rem, 3.03vw, 2.37rem); }
.logo-mark--hero .lm-line  { width: 52px; }
.logo-mark--hero .lm-stars { font-size: .9rem; }

.logo-mark--footer .lm-nom   { font-size: 1.7rem; }
.logo-mark--footer .lm-hotel { font-size: .58rem; }
.logo-mark--footer .lm-line  { width: 40px; }
.logo-mark--footer .lm-stars { font-size: .68rem; }

/* ── Sélecteur de langue ─────────────────────────────────── */
.lang-switch { display: flex; align-items: center; gap: 2px; margin-right: 8px; }
.lang-switch button {
  font-family: var(--f-sc); font-size: .62rem; font-weight: 500; letter-spacing: .1em;
  color: rgba(255,255,255,.45); background: none; border: none; cursor: pointer;
  transition: color .2s; min-height: 32px; min-width: 32px; padding: 9px 10px;
}
.lang-switch button:hover { color: rgba(255,255,255,.85); }
.lang-switch button.active { color: var(--or-clair); }
.lang-switch button.active[aria-current] { text-decoration: underline; text-decoration-color: var(--or); text-underline-offset: 4px; }
.lang-switch span.lang-sep { color: rgba(255,255,255,.2); font-size: .6rem; }
.nav-drawer .lang-switch { margin: 8px 0 0; justify-content: center; gap: 6px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); }
.nav-drawer .lang-switch button { font-size: .72rem; padding: 8px 12px; }
.lang-switch--footer { margin: 22px 0 0; justify-content: flex-start; gap: 4px; }
.lang-switch--footer button { font-size: .68rem; padding: 6px 4px; }

/* ── Lang dropdown ───────────────────────────────────────── */
.lang-dropdown { position: relative; }
.lang-dropdown-btn {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font-family: var(--f-titre); font-size: 1.05rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--blanc); padding: 8px 4px;
  transition: color .25s;
}
.lang-dropdown-btn:hover { color: var(--or-clair); }
.lang-dropdown-btn svg { width: 9px; height: 6px; transition: transform .2s; }
.lang-dropdown-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.lang-dropdown-menu {
  display: none; position: absolute; right: 0; top: calc(100% + 4px);
  background: var(--noir); border: 1px solid rgba(196,162,101,.25);
  min-width: 70px; z-index: 200; list-style: none; padding: 4px 0;
}
.lang-dropdown-menu.open { display: block; }
.lang-dropdown-menu li button {
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: var(--f-titre); font-size: .9rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7); padding: 8px 18px; text-align: left;
  transition: color .2s, background .2s;
}
.lang-dropdown-menu li button:hover { color: var(--blanc); background: rgba(196,162,101,.1); }
.lang-dropdown-menu li button.active { color: var(--or-clair); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
#hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column; align-items: flex-start; overflow: hidden;
  background: var(--noir);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.hero-photo {
  position: absolute; inset: 0;
  background: url('../images/frontpage2.png') right calc(50% + 25px) / contain no-repeat;
  transition: transform 10s ease-out;
  filter: brightness(1.05) saturate(.95);
}
#hero.loaded .hero-photo { transform: scale(1); }
.hero-voile {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,17,15,.78) 0%, rgba(20,17,15,.4) 32%, rgba(20,17,15,.05) 55%);
}

.hero-contenu { position: relative; z-index: 3; width: 100%; padding: 11vh 6vw 0; color: var(--blanc); text-align: center; }
.hero-contenu-inner { max-width: 660px; margin: 0 auto; }

@media (min-width: 901px) {
  /* La page d'accueil tient dans la hauteur de l'ecran, sans defilement :
     le hero prend tout l'espace restant apres la barre de copyright. */
  body.page-accueil { display: flex; flex-direction: column; min-height: 100vh; }
  body.page-accueil #hero { height: auto; flex: 1 1 auto; min-height: 480px; }
  body.page-accueil footer { flex: 0 0 auto; }
  body.page-accueil .footer-bas { padding: 14px 0; }

  #hero { align-items: flex-start; }
  .hero-contenu {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 38vw; min-width: 300px;
    padding: 0;
  }
  /* La photo commence exactement ou le panneau de texte s'arrete,
     et remplit le reste en "cover" — plus de calcul independant
     (avant : "right/contain" pouvait finir a une largeur differente
     de 38vw selon l'ecran, decalant visuellement le "centre" du texte) */
  .hero-photo {
    left: max(38vw, 300px); right: 0;
    background-position: center calc(50% + 25px); background-size: contain;
    background-repeat: no-repeat;
  }
  .hero-contenu-inner {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, calc(-50% + 40px));
    width: 80%; text-align: center;
    display: flex; flex-direction: column; align-items: center;
  }

  .hero-text-block {
    display: flex; flex-direction: column; align-items: center;
    width: 100%; text-align: center;
    transform: translateY(-20%);
  }
  .hero-badge--big { display: flex; justify-content: center; max-width: 100%; margin-top: 60px; }

  /* Typo 100% proportionnelle — même rendu visuel sur 13" et 27" */
  .logo-mark--hero .lm-nom   { font-size: clamp(2.1rem, 2.8vw, 3.6rem); white-space: normal; word-break: break-word; }
.logo-mark--hero .lm-hotel { font-size: clamp(1.38rem, 1.85vw, 2.37rem); }
.logo-mark--hero .lm-stars { font-size: clamp(.7rem, 1vw, .9rem); }

.hero-meta-label { font-size: clamp(1.05rem, 1.2vw, 1.3rem); letter-spacing: .01em; }
.hero-accroche   { font-size: clamp(1.05rem, 1.2vw, 1.3rem); transform: translateY(-8%); }
  .hero-badge--big span { font-size: 1.045vw; white-space: normal; }
  .hero-meta { transform: translateY(-8%); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--or); color: var(--noir); border: none;
  box-shadow: 0 12px 32px rgba(0,0,0,.28); padding: 11px 22px;
  animation: fadeUp .8s .05s ease both;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--noir); border-radius: 50%; animation: pulse 2.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
.hero-badge span { font-family: var(--f-sc); font-weight: 600; font-size: .64rem; letter-spacing: .2em; color: var(--noir); }

.hero-badge--big {
  padding: 18px 34px;
  margin: 0 0 8px;
  gap: 16px;
  position: relative; z-index: 1;
}
.hero-badge--big .hero-badge-dot { width: 10px; height: 10px; }
.hero-badge--big span { font-size: .92rem; letter-spacing: .16em; font-style: italic; }

.hero-titre {
  font-family: var(--f-titre); font-weight: 300; font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05; letter-spacing: .005em; color: var(--blanc);
  margin: 26px 0 14px; text-shadow: 0 2px 24px rgba(0,0,0,.3);
  animation: fadeUp .9s .12s ease both;
}
.hero-titre em { font-style: normal; color: var(--or-clair); }

.hero-titre-logo { display: flex; justify-content: center; margin-bottom: 42px; }
@media (min-width: 901px) {
  .hero-titre-logo {
    justify-content: center; align-self: center;
    width: 100%; margin-bottom: clamp(20px, 4vh, 56px);
    transform: translateY(-135%);
  }
}


.hero-meta { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; margin-bottom: 8px; animation: fadeUp .9s .26s ease both; transform: translateY(40%); position: relative; z-index: 2; }
.hero-meta-label {
  font-family: var(--f-titre); font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 300; font-style: italic;
  line-height: 1.3; letter-spacing: .01em; color: rgba(255,255,255,.82); text-align: center;
  display: inline-block; transition: color .2s;
}
.hero-meta-label:hover { color: var(--or-clair); }
#lien-adresse-hero.hero-meta-label { margin-top: 25px; }

.hero-accroche {
  font-family: var(--f-titre); font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 300; font-style: italic;
  line-height: 1.3; color: rgba(255,255,255,.82); letter-spacing: .01em; margin-bottom: 8px;
  animation: fadeUp .9s .2s ease both; text-align: center;
}

.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; animation: fadeUp 1s .34s ease both; }
.btn-hero-primaire {
  display: inline-flex; align-items: center; gap: 16px;
  border: 1.5px solid rgba(212,184,131,.55); background: rgba(20,17,15,.55);
  backdrop-filter: blur(3px); color: var(--blanc);
  font-family: var(--f-sc); font-size: .92rem; font-weight: 500; letter-spacing: .16em;
  padding: 18px 34px; white-space: nowrap;
  transition: border-color .25s, background .25s, transform .25s;
}
.btn-hero-primaire:hover { border-color: var(--or); background: rgba(20,17,15,.72); transform: translateY(-2px); }
.btn-hero-primaire svg { width: 15px; height: 15px; stroke: var(--blanc); transition: transform .3s; }
.btn-hero-primaire:hover svg { transform: translateX(4px); }

@media (min-width: 640px) {
  .hero-cta { position: fixed; bottom: 45px; left: 40px; z-index: 50; }
}

/* ═══════════════════════════════════════════════════════
   PAGE CONTACT
═══════════════════════════════════════════════════════ */
#contact { padding: calc(var(--nav-h) + 64px) 0 var(--section-pad); background: var(--creme); }
.contact-inner { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; align-items: start; }

.contact-titre-ligne { width: 48px; height: 1px; background: var(--or); margin: 24px 0 20px; opacity: .6; }
@media (min-width: 901px) {
  .contact-titre-ligne { width: 100%; }
}

.contact-info-item { display: flex; gap: 18px; margin-bottom: 28px; }
.ci-icone {
  width: 42px; height: 42px; flex-shrink: 0; border: 1px solid var(--creme-mid);
  background: var(--blanc); display: flex; align-items: center; justify-content: center;
  color: var(--or); font-size: 1rem;
}
.ci-label { font-family: var(--f-sc); font-size: 13px; letter-spacing: .25em; color: var(--or); display: block; margin-bottom: 4px; }
.ci-val { font-size: .9rem; font-weight: 300; color: var(--noir); line-height: 1.5; }
.ci-val a { transition: color .2s; }
.ci-val a:hover { color: var(--or); }

.form-grille { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-champ { margin-bottom: 20px; }
.form-label { font-family: var(--f-sc); font-size: 13px; letter-spacing: .25em; color: var(--noir); display: block; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px; border: 1px solid var(--creme-mid); background: var(--gris-clair);
  font-family: var(--f-corps); font-size: .9rem; font-weight: 300; color: var(--noir);
  outline: none; transition: border-color .2s, background .2s; appearance: none;
  min-height: 48px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--or); background: var(--blanc); }
.form-textarea { height: 130px; resize: vertical; }
.form-fullwidth { grid-column: 1 / -1; }
.form-label .req { color: var(--or); margin-left: 3px; }
.form-help { display: block; margin-top: 6px; font-size: .76rem; color: var(--gris); font-weight: 300; }
.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid {
  border-color: var(--erreur); background: #FBF2F1;
}
.form-erreur {
  display: none; margin-top: 7px; font-size: .78rem; color: var(--erreur); font-weight: 400;
  align-items: center; gap: 6px;
}
.form-erreur.visible { display: flex; }
.form-erreur::before { content: '!'; display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px; border-radius: 50%; background: var(--erreur); color: var(--blanc);
  font-size: .65rem; font-weight: 700; flex-shrink: 0; }
#contact-ok, #contact-fail {
  display: none; margin-top: 18px; padding: 18px 24px; background: var(--blanc);
  border-left: 3px solid var(--or); font-size: .9rem; font-weight: 300; color: var(--noir-mid);
}
#contact-fail { border-left-color: var(--erreur); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer { background: var(--noir); }
.footer-corps { padding: 72px 0 40px; display: grid; grid-template-columns: 2fr 1fr; gap: 64px; }
.footer-desc { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.85; max-width: 320px; margin-top: 19px; }
.footer-col-titre {
  font-family: var(--f-sc); font-size: .65rem; letter-spacing: .3em; color: rgba(255,255,255,.3);
  display: block; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-liens li { margin-bottom: 12px; font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.6; }
.footer-liens a { color: inherit; transition: color .2s; }
.footer-liens a:hover { color: var(--or-clair); }
.footer-bas {
  border-top: 1px solid rgba(255,255,255,.05); padding: 24px 0;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-family: var(--f-sc); font-size: .58rem; letter-spacing: .18em; color: rgba(255,255,255,.22); }

/* ── Reveal ─────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.delay-2 { transition-delay: .15s; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-corps { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  /* Hero mobile — repense en flux normal (pas de flex/order/display:contents) :
     le DOM suit deja l'ordre visuel voulu (texte, photo, CTA), donc un simple
     empilement de blocs suffit et se comporte de facon previsible partout. */
  #hero {
    display: block;
    height: auto; min-height: 0;
    background: var(--noir);
  }

  /* Texte — bloc solide en haut, sous la nav fixe */
  .hero-contenu {
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 0;
  }

  /* Espacement precis entre chaque module de texte (logo, accroche, adresse, badge, photo) */
  .hero-titre-logo { margin-bottom: 75px; }
  .hero-accroche { margin-bottom: 15px; }
  .hero-meta { margin-bottom: 75px; }
  .hero-badge--big { margin-bottom: 75px; }

  /* Photo — encadree avec les memes marges laterales que le texte,
     entierement visible (pas de recadrage), hauteur fixe */
  /* Decalage horizontal de la photo mobile : UNE SEULE valeur a modifier ici,
     utilisee a la fois au repos et apres le chargement (regle #hero.loaded
     ci-dessous) grace a cette variable — evite d'oublier de mettre a jour
     les deux endroits en meme temps. */
  #hero { --hero-photo-shift: 0px; }
  .hero-photo {
    position: relative; inset: auto;
    margin: 0 6vw;
    transform: translateX(var(--hero-photo-shift));
    transition: none;
    height: 62vw; min-height: 220px; max-height: 380px;
    background-position: center center; background-size: contain;
    background-repeat: no-repeat;
  }
  /* L'effet de zoom "#hero.loaded" (scale) ne doit pas ecraser le decalage mobile */
  #hero.loaded .hero-photo { transform: translateX(var(--hero-photo-shift)); }
  .hero-voile { display: none; }

  /* Nav — fond opaque sur mobile : le voile de la photo est désactivé,
     donc "CONTACT" doit rester lisible et net au-dessus de tout, sans se
     mélanger visuellement au contenu qui défile en dessous */
  #nav { background: var(--noir); }

  /* CTA — juste sous la photo, dans le flux normal */
  .hero-cta {
    display: flex; justify-content: center;
    width: 100%; margin-top: 50px;
    padding: 0 6vw; background: none;
  }
  .hero-cta .btn-hero-primaire { padding: 14.7px 27.3px; font-size: .966rem; }

  .footer-logo-bloc .logo-mark--footer { margin: 0 auto; }
}
@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .wrap, .wrap--narrow { padding: 0 24px; }
  .nav-inner--home { width: 100%; justify-content: space-between; gap: 10px; }
  .nav-inner--home .lang-switch,
  .nav-inner--home .lang-dropdown { order: 1; margin-right: 0; }
  .nav-inner--home .nav-cta { order: 2; padding: 9px 16px; font-size: .92rem !important; }
  .nav-inner--split { width: 100%; gap: 10px; }
  .nav-inner--split .lang-switch { margin-right: 0; }
  .nav-back { font-size: .82rem; }
  .form-grille { grid-template-columns: 1fr; }
  .form-fullwidth { grid-column: auto; }

  /* Hero mobile — textes lisibles (les marges sont gerees dans le bloc @900px) */
  .logo-mark--hero .lm-nom   { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .logo-mark--hero .lm-hotel { font-size: clamp(1.1rem, 5vw, 1.5rem); }
  .hero-accroche { font-size: clamp(.95rem, 4vw, 1.15rem); }
  .hero-meta-label { font-size: clamp(.95rem, 4vw, 1.15rem); }
  .hero-badge--big { white-space: normal; text-align: center; }
  .hero-badge--big span { white-space: normal; font-size: clamp(.75rem, 3.4vw, .92rem); }
  .btn-hero-primaire { padding: 14px 26px; }
}

/* ═══ VERSION PIERRE — overrides (DESKTOP UNIQUEMENT, ≥901px) ═══ */
@media (min-width: 901px) {
  /* Nav — proportionnel à l'écran */
  .nav-cta { font-size: clamp(.9rem, 1.1vw, 1.5rem) !important; }
  .lang-dropdown-btn { font-size: clamp(.9rem, 1.1vw, 1.5rem); }

  /* Badge — une seule ligne, padding proportionnel */
  .hero-badge--big {
    padding: clamp(10px, 1.27vh, 19.5px) clamp(17px, 2.12vw, 36px);
    white-space: nowrap;
    margin-top: 80px !important;
    transform: translateY(3%);
  }
  .hero-badge--big span {
    font-size: clamp(.74rem, 1.11vw, 1.16rem) !important;
    white-space: nowrap; font-style: italic;
  }

  /* Hero meta */
  .hero-meta { margin-bottom: clamp(12px, 2vh, 28px); }

  /* Contactez-nous — même taille que Contact */
  .btn-hero-primaire span {
    font-size: clamp(.9rem, 1.1vw, 1.5rem);
    text-transform: uppercase;
    letter-spacing: .16em;
  }
  /* Encart réduit de 5% (desktop uniquement) */
  .btn-hero-primaire { transform: scale(.95); transform-origin: left bottom; }

  /* Contact + langue collés au bord droit de l'écran */
  .nav-inner--home { max-width: 100%; padding-right: 40px; }
}

/* Sections — s'adaptent aux grands écrans */
@media (min-width: 1600px) {
  .wrap { max-width: clamp(1240px, 70vw, 1800px); }
  :root { --section-pad: clamp(100px, 8vw, 160px); }
  .footer-corps { padding: clamp(72px, 5vw, 120px) 0 clamp(40px, 3vw, 80px); }
  .nav-inner { gap: clamp(28px, 3vw, 60px); }
}
