/* ==========================================================================
   Les Orres 1800 — feuille de style unique
   Palette : pierre & bois de montagne, neige, ciel d'altitude
   ========================================================================== */

:root {
  --ink:        #16242a;
  --ink-soft:   #33484f;
  --muted:      #6b7f86;
  --line:       #dfd8cd;
  --line-soft:  #ece6dc;
  --snow:       #ffffff;
  --paper:      #fbf8f3;
  --sand:       #f2ece1;
  --pine:       #2c4a44;
  --pine-dark:  #1d332f;
  --ember:      #c0703a;
  --ember-dark: #a25a2b;
  --sky:        #4a7f9c;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --gap: clamp(3.5rem, 7vw, 6.5rem);
  --radius: 3px;
  --shadow: 0 1px 2px rgba(22, 36, 42, .06), 0 8px 28px rgba(22, 36, 42, .08);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 600; line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p { margin: 0 0 1.1em; }
a { color: var(--pine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .35em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }
section { padding-block: var(--gap); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* --- Bandeau maquette -------------------------------------------------- */
.demo-flag {
  background: var(--ink); color: #f4ede2; font-size: .8rem; letter-spacing: .04em;
  padding: .55rem 1rem; text-align: center;
}
.demo-flag strong { color: #fff; }

/* --- Titres de section -------------------------------------------------- */
.eyebrow {
  font-family: var(--sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase; color: var(--ember);
  margin: 0 0 1rem;
}
.section-head { max-width: 680px; margin-bottom: 3rem; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }
.section-head.centered { margin-inline: auto; text-align: center; }

/* --- Boutons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-size: .93rem; font-weight: 600; letter-spacing: .015em;
  padding: .85rem 1.7rem; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: background-color .18s, color .18s, border-color .18s, transform .18s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ember); color: #fff; }
.btn-primary:hover { background: var(--ember-dark); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-outline { border-color: var(--line); color: var(--ink); background: var(--snow); }
.btn-outline:hover { border-color: var(--pine); color: var(--pine); }
.btn-sm { padding: .6rem 1.15rem; font-size: .85rem; }

/* --- En-tête ------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 248, 243, .93);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 2px 14px rgba(22,36,42,.05); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }

.brand { font-family: var(--serif); font-size: 1.16rem; font-weight: 600; color: var(--ink); text-decoration: none; line-height: 1.15; flex-shrink: 0; }
.brand span { display: block; font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ember); margin-top: .18rem; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.nav a { color: var(--ink-soft); font-size: .9rem; font-weight: 500; text-decoration: none; white-space: nowrap; }
.nav a:hover { color: var(--ember); }

.lang { display: flex; gap: .1rem; align-items: center; font-size: .78rem; font-weight: 600; letter-spacing: .06em; }
.lang a { padding: .25rem .42rem; color: var(--muted); text-decoration: none; border-radius: 2px; }
.lang a:hover { color: var(--ink); background: var(--sand); }
.lang a[aria-current="true"] { color: var(--snow); background: var(--pine); }

.burger { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: var(--radius); padding: .5rem .7rem; cursor: pointer; }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 3.5px 0; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1000px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0 0 auto; top: 72px; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.5rem; margin: 0; display: none;
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav .btn { margin-top: 1rem; }
  .lang { margin-top: 1rem; }
}

/* --- Hero --------------------------------------------------------------- */
.hero { position: relative; min-height: min(86svh, 760px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; padding: 0; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* Deux voiles superposés : un latéral qui protège le bloc de texte, aligné à
   gauche, et un vertical qui assoit le bas de l'image. Le texte reste lisible
   même quand la photo est très claire à cet endroit (baie vitrée, neige). */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(8,16,20,.66) 0%, rgba(8,16,20,.38) 34%, rgba(8,16,20,0) 66%),
    linear-gradient(180deg, rgba(8,16,20,.46) 0%, rgba(8,16,20,.10) 24%, rgba(8,16,20,.50) 68%, rgba(8,16,20,.84) 100%);
}
@media (max-width: 720px) {
  /* Sur mobile le texte occupe toute la largeur : le voile latéral ne suffit plus. */
  .hero-media::after {
    background: linear-gradient(180deg, rgba(8,16,20,.5) 0%, rgba(8,16,20,.18) 22%, rgba(8,16,20,.62) 62%, rgba(8,16,20,.88) 100%);
  }
}
.hero-inner { position: relative; z-index: 2; padding-block: 3.5rem 3rem; width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.hero h1 { color: #fff; max-width: 15ch; text-shadow: 0 2px 26px rgba(0,0,0,.45), 0 1px 3px rgba(0,0,0,.3); margin-bottom: .5rem; }
.hero .eyebrow {
  color: #fbe3cc;
  text-shadow: 0 1px 3px rgba(0,0,0,.6), 0 2px 16px rgba(0,0,0,.5);
}
.hero-sub {
  font-size: clamp(1rem, 1.55vw, 1.2rem); color: rgba(255,255,255,.94);
  max-width: 46ch; margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.5), 0 2px 18px rgba(0,0,0,.35);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero-note {
  font-size: .84rem; color: rgba(255,255,255,.82); margin: 1.4rem 0 0;
  text-shadow: 0 1px 3px rgba(0,0,0,.55);
}

/* --- Barre de chiffres clés --------------------------------------------- */
.facts { background: var(--pine-dark); color: #fff; padding-block: 0; }
.facts-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.fact { padding: 1.9rem 1rem; text-align: center; border-left: 1px solid rgba(255,255,255,.11); }
.fact:first-child { border-left: 0; }
.fact b { display: block; font-family: var(--serif); font-size: 1.75rem; font-weight: 600; color: #fff; line-height: 1.1; }
.fact span { display: block; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.62); margin-top: .4rem; }
@media (max-width: 860px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact { border-left: 1px solid rgba(255,255,255,.11); border-top: 1px solid rgba(255,255,255,.11); padding: 1.4rem .75rem; }
  .fact:nth-child(odd) { border-left: 0; }
  .fact:nth-child(-n+2) { border-top: 0; }
  .fact:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* --- Galerie ------------------------------------------------------------ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; background: var(--sand); cursor: zoom-in; border-radius: var(--radius); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.gallery figure:hover img { transform: scale(1.035); }
.gallery figure.wide { grid-column: span 2; grid-row: span 2; }
.gallery figure.wide img { aspect-ratio: 1 / 1; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .9rem .7rem;
  font-size: .8rem; color: #fff; background: linear-gradient(transparent, rgba(10,20,24,.72));
  opacity: 0; transition: opacity .25s;
}
.gallery figure:hover figcaption, .gallery figure:focus-within figcaption { opacity: 1; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure.wide { grid-column: span 2; grid-row: auto; }
  .gallery figure.wide img { aspect-ratio: 4 / 3; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(12,18,21,.94);
  display: none; align-items: center; justify-content: center; padding: 3rem 1.25rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 84vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-cap { position: absolute; bottom: 1.4rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: .87rem; padding-inline: 1rem; }
.lightbox button {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; line-height: 1;
}
.lightbox button:hover { background: rgba(255,255,255,.2); }
.lb-close { top: 1.25rem; right: 1.25rem; }
.lb-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* --- Bloc texte + liste ------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.lede { font-size: 1.15rem; color: var(--ink); }

.rooms { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.rooms li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.05rem 0; margin: 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.rooms .k { font-family: var(--serif); font-size: 1.02rem; color: var(--ink); font-weight: 600; min-width: 9.5rem; }
.rooms .v { color: var(--muted); font-size: .95rem; }

/* --- Équipements -------------------------------------------------------- */
.amenities { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2.5rem 3rem; }
.amenity-group h3 { font-size: 1.05rem; margin-bottom: .9rem; padding-bottom: .6rem; border-bottom: 2px solid var(--ember); display: inline-block; }
.amenity-group ul { list-style: none; padding: 0; margin: 0; }
.amenity-group li { position: relative; padding-left: 1.35rem; font-size: .94rem; margin-bottom: .5rem; }
.amenity-group li::before { content: ""; position: absolute; left: 0; top: .58em; width: 6px; height: 6px; border-radius: 50%; background: var(--line); }
.amenity-group li.on::before { background: var(--pine); }
.amenity-group li.off { color: var(--muted); }
.amenity-group li.off::before { background: transparent; border: 1px solid var(--line); }

/* --- Section sombre ----------------------------------------------------- */
.dark { background: var(--pine-dark); color: rgba(255,255,255,.78); }
.dark h2, .dark h3 { color: #fff; }
.dark .section-head p { color: rgba(255,255,255,.66); }
.dark .eyebrow { color: #e8ab74; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.feature { border-top: 1px solid rgba(255,255,255,.16); padding-top: 1.25rem; }
.feature h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.feature p { font-size: .93rem; margin: 0; color: rgba(255,255,255,.7); }

/* --- Tarifs ------------------------------------------------------------- */
.price-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); background: var(--snow); }
table.rates { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 560px; }
table.rates th, table.rates td { padding: .85rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
table.rates thead th { background: var(--sand); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; color: var(--ink); font-weight: 700; white-space: nowrap; }
table.rates td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
table.rates td.price { font-weight: 700; color: var(--ink); }
table.rates tbody tr:last-child td { border-bottom: 0; }
table.rates tr.peak td { background: #fdf6ee; }
table.rates tr.season-row th {
  background: var(--pine-dark); color: #fff; font-family: var(--serif);
  font-size: .95rem; font-weight: 600; letter-spacing: 0; text-transform: none;
  padding: .7rem 1.1rem;
}
table.rates .tag { display: inline-block; font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 700; color: var(--ember); margin-left: .55rem; vertical-align: 1px; }

.rate-notes { font-size: .87rem; color: var(--muted); margin-top: 1.25rem; }
.rate-notes li { margin-bottom: .3em; }

/* Options et suppléments */
.options { margin-bottom: 1.75rem; }
.options h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.options-intro { font-size: .89rem; color: var(--muted); margin-bottom: 1.1rem; }
.opt-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  padding: .8rem 0; border-bottom: 1px solid var(--line);
}
.opt-row:first-of-type { border-top: 1px solid var(--line); }
.opt-label { font-size: .95rem; color: var(--ink); }
.opt-label em { display: block; font-style: normal; font-size: .82rem; color: var(--muted); margin-top: .15rem; }
.opt-price { font-weight: 700; font-size: .95rem; color: var(--ember); white-space: nowrap; font-variant-numeric: tabular-nums; }

.callout {
  background: var(--snow); border: 1px solid var(--line); border-left: 3px solid var(--ember);
  border-radius: var(--radius); padding: 1.9rem 2rem; box-shadow: var(--shadow);
}
.callout h3 { margin-bottom: .6rem; }
.callout p:last-child { margin-bottom: 0; }
.callout ul { margin-bottom: 0; }

/* --- Calendrier --------------------------------------------------------- */
.cal-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.cal-nav { display: flex; gap: .5rem; }
.cal-nav button {
  width: 38px; height: 38px; border: 1px solid var(--line); background: var(--snow);
  border-radius: var(--radius); cursor: pointer; color: var(--ink); font-size: 1rem; line-height: 1;
}
.cal-nav button:hover:not(:disabled) { border-color: var(--pine); color: var(--pine); }
.cal-nav button:disabled { opacity: .35; cursor: not-allowed; }

.cal-legend { display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: .84rem; color: var(--muted); }
.cal-legend i { display: inline-block; width: 13px; height: 13px; border-radius: 2px; margin-right: .45rem; vertical-align: -2px; border: 1px solid var(--line); }
.cal-legend .free { background: var(--snow); }
.cal-legend .busy { background: #e4dccf; border-color: #d6ccb9; }
.cal-legend .opt  { background: repeating-linear-gradient(45deg, #f6ead9, #f6ead9 4px, #ecd9bf 4px, #ecd9bf 8px); border-color: #e2cca9; }

.cal-months { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .cal-months { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }
.month h3 { font-size: .95rem; text-align: center; margin-bottom: .9rem; text-transform: capitalize; }
.month table { width: 100%; border-collapse: collapse; }
.month th { font-size: .68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; padding-bottom: .5rem; letter-spacing: .04em; }
.month td { text-align: center; padding: 0; }
.month td div {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: .83rem; font-variant-numeric: tabular-nums; color: var(--ink-soft);
  border: 1px solid transparent; border-radius: 2px;
}
.month td.busy div { background: #e4dccf; color: #8b8172; text-decoration: line-through; }
.month td.opt div { background: repeating-linear-gradient(45deg, #f6ead9, #f6ead9 4px, #ecd9bf 4px, #ecd9bf 8px); color: #8a6b45; }
.month td.past div { color: #c3cbcd; }

/* --- Avis --------------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.review { background: var(--snow); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.review .stars { color: var(--ember); letter-spacing: .12em; font-size: .9rem; margin-bottom: .8rem; }
.review blockquote { margin: 0 0 1.1rem; font-family: var(--serif); font-size: 1.04rem; color: var(--ink); line-height: 1.5; }
.review cite { font-style: normal; font-size: .84rem; color: var(--muted); }
.review cite b { color: var(--ink-soft); font-weight: 600; }

/* --- Onglets (station) --------------------------------------------------- */
.tabs { display: flex; gap: .4rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.16); }
.tabs button {
  background: none; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px;
  padding: .7rem 1.15rem; font-family: var(--sans); font-size: .93rem; font-weight: 600;
  color: rgba(255,255,255,.55); cursor: pointer;
}
.tabs button:hover { color: #fff; }
.tabs button[aria-selected="true"] { color: #fff; border-bottom-color: var(--ember); }
.tabpanel[hidden] { display: none; }

/* --- Accès -------------------------------------------------------------- */
.access { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem 3rem; }
.access-item { border-top: 2px solid var(--ink); padding-top: 1.1rem; }
.access-item h3 { font-size: 1rem; margin-bottom: .35rem; }
.access-item p { font-size: .93rem; color: var(--muted); margin: 0; }
.access-item .big { font-family: var(--serif); font-size: 1.5rem; color: var(--ember); display: block; margin-bottom: .2rem; }

/* --- FAQ ---------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.35rem 2.5rem 1.35rem 0; position: relative;
  font-family: var(--serif); font-size: 1.08rem; color: var(--ink); font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .35rem; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.35rem; color: var(--ember); font-weight: 300; line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .answer { padding: 0 2.5rem 1.5rem 0; font-size: .96rem; color: var(--muted); }
.faq .answer p:last-child { margin-bottom: 0; }

/* --- Contact ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { form .row { grid-template-columns: 1fr; } }
form label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: .4rem; }
form .field { margin-bottom: 1.1rem; }
form input, form select, form textarea {
  width: 100%; font-family: var(--sans); font-size: .96rem; color: var(--ink);
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--snow);
}
form input:focus, form select:focus, form textarea:focus { outline: 2px solid var(--pine); outline-offset: -1px; border-color: var(--pine); }
form textarea { min-height: 130px; resize: vertical; }
form .consent { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; font-size: .84rem; color: var(--muted); margin-bottom: 1.4rem; }
form .consent input { width: auto; margin-top: .25rem; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 1rem; }

.contact-side { background: var(--snow); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.contact-side h3 { font-size: 1.1rem; }
.contact-line { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; padding: .95rem 0; border-bottom: 1px solid var(--line-soft); font-size: .93rem; }
.contact-line:last-of-type { border-bottom: 0; }
.contact-line b { display: block; color: var(--ink); font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .1rem; }
.contact-line a { color: var(--pine); }
.ico { width: 20px; height: 20px; flex-shrink: 0; color: var(--ember); margin-top: .15rem; }

/* --- Pages légales ------------------------------------------------------- */
.legal-body h1 { margin-bottom: .8rem; }
.legal-body h2 {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem); margin-top: 2.6rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.legal-body .lede { margin-bottom: 2rem; }
.legal-body p { font-size: .97rem; }
.legal-body ul { margin-top: 1rem; list-style: none; padding: 0; }
.legal-body ul li { margin-bottom: .5rem; }
.legal-updated { font-size: .85rem; color: var(--muted); margin-top: 2.5rem; font-style: italic; }
.legal-body mark {
  background: #fdf0e2; color: var(--ember-dark); padding: .05em .3em;
  border-radius: 2px; font-weight: 600;
}

/* --- Pied de page -------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); font-size: .89rem; padding-block: 3.5rem 2rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer a { color: rgba(255,255,255,.62); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5em; }
.footer-brand { font-family: var(--serif); font-size: 1.3rem; color: #fff; margin-bottom: .5rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.5rem; font-size: .82rem; color: rgba(255,255,255,.45); }

/* --- Barre d'action mobile ---------------------------------------------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  gap: .6rem; padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(251,248,243,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
}
