/* Maison Stella — page d'accueil (refonte lumineuse & éditoriale). Autonome. */
:root {
  --ivory: #FCF9F3;
  --sand: #F4ECDF;
  --ink: #231A12;
  --ink-soft: #6A5A4B;
  --terracotta: #C24A32;
  --terracotta-deep: #A03A26;
  --brass: #9E7233;          /* laiton décoratif : filets, traits (pas de texte) */
  --brass-ink: #8A6528;      /* laiton texte : ~5.0:1 sur --ivory, ~5.3:1 sur #fff → WCAG AA */
  --forest: #2C3D2E;
  --line: #E7DBCB;
  --serif: 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --sans: 'Plus Jakarta Sans', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --maxw: 1200px;
  --shadow: 0 30px 60px -35px rgba(70, 44, 20, .35);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--ivory); color: var(--ink); font-family: var(--sans); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.06; letter-spacing: -0.02em; text-wrap: balance; }
em { font-style: italic; }
.label { font-size: .72rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--brass-ink); display: inline-flex; align-items: center; gap: .7rem; }
.label::before { content: ""; width: 34px; height: 1px; background: var(--brass); opacity: .7; }
.accent { color: var(--terracotta); }

/* NAV */
.nav { position: absolute; top: 0; left: 0; right: 0; z-index: 20; }
.nav.stuck { position: fixed; background: rgba(252,249,243,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-in { max-width: var(--maxw); margin: 0 auto; padding: 1.6rem clamp(1.5rem, 5vw, 4rem); display: flex; align-items: center; justify-content: space-between; }
.nav.stuck .nav-in { padding-top: 1.1rem; padding-bottom: 1.1rem; }
.brand { font-family: var(--serif); font-size: 1.55rem; letter-spacing: .01em; display: flex; align-items: center; gap: .65rem; }
.brand-logo { height: 42px; width: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.brand-word { display: inline-flex; align-items: baseline; }
.brand b { font-weight: 500; }
.brand .dot { color: var(--terracotta); }
.nav-links { display: flex; gap: 2.2rem; font-size: .9rem; color: var(--ink-soft); }
.nav-links a { position: relative; padding: .15rem 0; transition: color .2s; }
.nav-links a::after { content:""; position:absolute; left:0; right:100%; bottom:-3px; height:1px; background: var(--terracotta); transition: right .35s cubic-bezier(.2,.7,.2,1); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: inline-flex; align-items: center; min-height: 44px; font-size: .84rem; font-weight: 600; color: var(--ink); border: 1px solid var(--line); padding: .5rem 1.4rem; border-radius: 100px; transition: all .25s; }
.nav-cta:hover { border-color: var(--terracotta); color: var(--terracotta); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--ink); }

/* HERO */
.hero { padding: clamp(8rem, 14vw, 11rem) 0 clamp(2rem, 4vw, 3.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.hero h1 { font-size: clamp(2.9rem, 6.6vw, 5.6rem); line-height: 1.0; margin: 1.6rem 0; letter-spacing: -0.025em; }
.hero-sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 40ch; margin-bottom: 0; }
.hero-photo { aspect-ratio: 4/5; border-radius: 4px; position: relative; box-shadow: var(--shadow); overflow: hidden; background: var(--sand); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .cap { position: absolute; left: 1.2rem; bottom: 1.1rem; font-family: var(--serif); font-style: italic; font-size: 1rem; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.4); }

/* BOOKING */
.booking { margin-top: clamp(2.5rem, 5vw, 4rem); background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); display: flex; flex-wrap: wrap; align-items: stretch; }
.booking .f { flex: 1 1 160px; padding: 1.05rem 1.5rem; display: flex; flex-direction: column; gap: .35rem; position: relative; }
.booking .f + .f::before { content:""; position:absolute; left:0; top:24%; bottom:24%; width:1px; background: var(--line); }
.booking label { font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-ink); }
.booking input, .booking select { border: none; outline: none; background: transparent; font-family: var(--serif); font-size: 1.02rem; color: var(--ink); width: 100%; cursor: pointer; }
.booking input:focus-visible, .booking select:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 3px; }
.booking button { flex: 0 0 auto; margin: .55rem; border: none; cursor: pointer; font-family: var(--sans); background: var(--terracotta); color: #fff; font-weight: 600; font-size: .92rem; padding: 0 2rem; border-radius: 5px; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; transition: background .25s; }
.booking button:hover { background: var(--terracotta-deep); }

/* SECTION */
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.kicker { margin-bottom: 1.4rem; }

/* MAISON */
.maison-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.maison-photo { aspect-ratio: 5/6; border-radius: 4px; box-shadow: var(--shadow); overflow: hidden; background: var(--sand); }
.maison-photo img { width: 100%; height: 100%; object-fit: cover; }
.maison h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); margin-bottom: 1.6rem; }
.maison p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 1.2rem; max-width: 46ch; }
.maison p.lead { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.6rem); font-style: italic; color: var(--ink); line-height: 1.5; max-width: 32ch; }
.maison .sign { margin-top: 1.8rem; font-size: .9rem; color: var(--brass-ink); letter-spacing: .04em; }
.maison .more { display: inline-block; margin-top: 1.6rem; font-weight: 600; color: var(--terracotta); }

/* CHAMBRES */
.ch-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.ch-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.ch-link { font-size: .9rem; font-weight: 600; color: var(--terracotta); display: inline-flex; gap: .45rem; align-items: center; }
.ch-link span { transition: transform .25s; }
.ch-link:hover span { transform: translateX(5px); }
.ch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem 1.8rem; }
.room { display: block; }
.room-photo { border-radius: 4px; overflow: hidden; position: relative; box-shadow: var(--shadow); aspect-ratio: 3/2.4; background: var(--sand); }
.room-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.room:hover .room-photo img { transform: scale(1.04); }
.room-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(252,249,243,.92); color: var(--ink); font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .85rem; border-radius: 100px; }
.room-body { padding: 1.3rem .2rem 0; display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; }
.room-body h3 { font-size: 1.55rem; margin-bottom: .35rem; }
.room-meta { font-size: .86rem; color: var(--ink-soft); }
.room-price { text-align: right; flex-shrink: 0; }
.room-price strong { font-family: var(--serif); font-size: 1.45rem; color: var(--terracotta); display: block; }
.room-price small { font-size: .74rem; color: var(--ink-soft); }
.room-cta { display: inline-flex; align-items: center; gap: .4rem; margin: .85rem .2rem 0; font-size: .82rem; font-weight: 600; color: var(--terracotta); }
.room-cta svg { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.room:hover .room-cta svg { transform: translateX(5px); }
.room:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 5px; border-radius: 6px; }
.ch-empty { border: 1px solid var(--line); border-radius: 6px; padding: clamp(2.5rem,6vw,4.5rem) 2rem; text-align: center; background: #fff; }
.ch-empty h3 { font-size: 1.6rem; margin-bottom: .6rem; }
.ch-empty p { color: var(--ink-soft); margin-bottom: 1.6rem; }

/* EXPERIENCE */
.exp { background: var(--sand); }
.exp-top { max-width: 42ch; margin-bottom: 3.5rem; }
.exp-top h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); margin: 1.3rem 0 1rem; }
.exp-top p { color: var(--ink-soft); font-size: 1.05rem; }
.exp-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 5vw, 4.5rem); }
.exp-item { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; padding: 1.7rem 0; border-top: 1px solid var(--line); align-items: start; }
.exp-ic { font-size: 1.4rem; line-height: 1; padding-top: .1rem; color: var(--terracotta); display: inline-flex; }
.exp-ic svg { display: block; }
.exp-item h4 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin-bottom: .4rem; }
.exp-item p { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }

/* CTA */
.cta { text-align: center; }
.cta .label { justify-content: center; }
.cta h2 { font-size: clamp(2.3rem, 5.5vw, 4rem); margin: 1.3rem 0 1.4rem; }
.cta p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 2.4rem; font-size: 1.08rem; }
.cta-row { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn { font-family: var(--sans); font-weight: 600; font-size: .95rem; padding: 1.05rem 2.2rem; border-radius: 5px; cursor: pointer; transition: all .25s; border: 1px solid transparent; display: inline-flex; align-items: center; gap: .5rem; }
.btn-p { background: var(--terracotta); color: #fff; }
.btn-p:hover { background: var(--terracotta-deep); transform: translateY(-2px); }
.btn-o { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-o:hover { border-color: var(--terracotta); color: var(--terracotta); }
.btn-full { width: 100%; justify-content: center; }

/* CONTACT */
.contact { border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); }
.contact h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 1.2rem 0 1.2rem; }
.contact .intro { color: var(--ink-soft); margin-bottom: 2rem; max-width: 40ch; }
.contact-list { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ci { color: var(--terracotta); flex-shrink: 0; margin-top: .2rem; }
.contact-item strong { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; }
.contact-item div span, .contact-item div a { color: var(--ink-soft); font-size: .95rem; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.contact-card h3 { font-size: 1.4rem; margin-bottom: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-ink); }
.field input, .field textarea { font-family: var(--sans); font-size: .95rem; color: var(--ink); background: var(--ivory); border: 1px solid var(--line); border-radius: 5px; padding: .8rem .9rem; width: 100%; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); }
.contact-ok { display: none; background: #edf7ee; border: 1px solid #b7d8bb; border-radius: 6px; padding: 1rem 1.25rem; color: #2c5530; font-size: .92rem; margin-bottom: 1rem; }
.contact-err { display: none; background: #fbeae7; border: 1px solid #e3b4a8; border-radius: 6px; padding: 1rem 1.25rem; color: #8a2f18; font-size: .92rem; margin-bottom: 1rem; }
.contact-err a, .contact-err strong { color: inherit; }

/* BOUTONS FLOTTANTS (WhatsApp + Appel) — tout le site */
.float-actions { position: fixed; right: clamp(1rem, 2.5vw, 1.6rem); bottom: clamp(1rem, 2.5vw, 1.6rem); z-index: 80; display: flex; flex-direction: column; gap: .8rem; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 8px 24px -6px rgba(40,26,10,.5); transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s; }
.fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 30px -8px rgba(40,26,10,.55); }
.fab:active { transform: scale(.96); }
.fab:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.fab-wa { background: #25D366; }
.fab-call { background: var(--terracotta); }
.fab-call:hover { background: var(--terracotta-deep); }
/* Sur la fiche chambre, remonter au-dessus de la barre de réservation mobile */
@media (max-width: 900px) {
  body.has-book-bar .float-actions { bottom: calc(78px + 1rem); }
  .fab { width: 52px; height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  .fab:hover { transform: none; }
}

/* GALERIE — PAGE (/galerie) */
.pg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: clamp(10px, 1.1vw, 16px); }
.pg-item { position: relative; aspect-ratio: 4 / 5; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); background: var(--sand); }
.pg-media { display: block; width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.pg-video img { width: 100%; height: 100%; object-fit: cover; }
.pg-item:hover .pg-media { transform: scale(1.04); }
.pg-media:focus-visible { outline: 3px solid var(--terracotta); outline-offset: -3px; }
.pg-video { position: relative; cursor: pointer; }
.pg-video img { cursor: pointer; }
.pg-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: var(--terracotta); color: #fff; display: grid; place-items: center; box-shadow: 0 4px 18px rgba(0,0,0,.45), 0 0 0 6px rgba(255,255,255,.28); transition: transform .3s cubic-bezier(.2,.7,.2,1), background .25s; }
.pg-video:hover .pg-play { transform: translate(-50%, -50%) scale(1.08); background: var(--terracotta-deep); }
.pg-play svg { margin-left: 3px; }
.pg-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .95rem .7rem; color: #fff; font-family: var(--serif); font-style: italic; font-size: .96rem; background: linear-gradient(to top, rgba(0,0,0,.6), transparent); opacity: 0; transition: opacity .3s; pointer-events: none; }
.pg-item:hover .pg-cap, .pg-item:focus-within .pg-cap { opacity: 1; }

/* Lightbox */
.pg-lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(20,14,8,.94); display: flex; align-items: center; justify-content: center; }
.pg-lightbox[hidden] { display: none; }
.pg-lb-stage { max-width: 92vw; max-height: 84vh; display: flex; align-items: center; justify-content: center; }
.pg-lb-stage img, .pg-lb-stage video { max-width: 92vw; max-height: 84vh; width: auto; height: auto; border-radius: 4px; display: block; }
.pg-lb-stage iframe { width: min(92vw, 1100px); aspect-ratio: 16 / 9; height: auto; border-radius: 4px; }
.pg-lb-close { position: absolute; top: 1.1rem; right: 1.4rem; font-size: 2.6rem; line-height: 1; color: #fff; background: none; border: none; cursor: pointer; padding: .2rem .6rem; }
.pg-lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; line-height: 1; color: #fff; background: none; border: none; cursor: pointer; padding: .5rem 1rem; opacity: .75; transition: opacity .2s; }
.pg-lb-nav:hover { opacity: 1; }
.pg-lb-prev { left: .3rem; }
.pg-lb-next { right: .3rem; }
.pg-lb-cap { position: absolute; bottom: 1.1rem; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--serif); font-style: italic; font-size: 1rem; padding: 0 1rem; }
.pg-lb-close:focus-visible, .pg-lb-nav:focus-visible { outline: 2px solid #fff; outline-offset: 2px; border-radius: 4px; }
@media (max-width: 560px) {
  .pg-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-cap { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,.55), transparent); }
  .pg-lb-nav { font-size: 2.2rem; }
}
@media (max-width: 380px) { .pg-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .pg-item:hover .pg-media { transform: none; }
  .pg-video:hover .pg-play { transform: translate(-50%, -50%); }
}

/* GALERIE */
.gallery-head { max-width: 640px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.gallery-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-bottom: 1rem; }
.gallery-head p { color: var(--ink-soft); font-size: 1.08rem; max-width: 54ch; text-wrap: pretty; }
.gallery-head .more { display: inline-block; margin-top: 1.3rem; font-weight: 600; color: var(--terracotta); transition: color .2s; }
.gallery-head .more:hover { color: var(--terracotta-deep); }
.gallery-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(140px, 17vw, 220px); gap: clamp(10px, 1.1vw, 16px); }
.g-item { position: relative; margin: 0; overflow: hidden; border-radius: 4px; box-shadow: var(--shadow); background: var(--sand); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.g-item:hover img { transform: scale(1.05); }
.g-item figcaption { position: absolute; left: 1.15rem; bottom: 1rem; color: #fff; font-family: var(--serif); font-style: italic; font-size: 1.02rem; text-shadow: 0 1px 12px rgba(0,0,0,.5); pointer-events: none; }
.g-a { grid-column: span 7; grid-row: span 2; }
.g-b { grid-column: span 5; grid-row: span 2; }
.g-c, .g-d, .g-e { grid-column: span 4; grid-row: span 1; }
.gallery-mosaic .reveal:nth-child(2) { transition-delay: .08s; }
.gallery-mosaic .reveal:nth-child(3) { transition-delay: .16s; }
.gallery-mosaic .reveal:nth-child(4) { transition-delay: .24s; }
.gallery-mosaic .reveal:nth-child(5) { transition-delay: .32s; }
@media (max-width: 900px) {
  .gallery-mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: clamp(150px, 23vw, 210px); }
  .g-a { grid-column: span 6; grid-row: span 2; }
  .g-b { grid-column: span 6; grid-row: span 2; }
  .g-c, .g-d, .g-e { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .g-item { grid-column: auto; grid-row: auto; aspect-ratio: 3 / 2; }
  .g-b { aspect-ratio: 4 / 5; }
}

/* FOOTER */
footer { background: var(--forest); color: #E6E2D6; padding: clamp(4rem, 8vw, 6rem) 0 2.2rem; }
.foot-word { font-family: var(--serif); font-size: clamp(2.2rem, 7vw, 4.4rem); line-height: 1.04; color: #F3EFE4; margin-bottom: 3rem; max-width: 20ch; }
.foot-word em { color: #E9A17E; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; padding: 2.6rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.foot-brand .brand { color: #F3EFE4; }
.foot-brand .brand .dot { color: #E9A17E; }
.foot-brand p { color: rgba(230,226,214,.72); font-size: .92rem; max-width: 30ch; margin-top: .8rem; }
.foot-col h5 { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: #C9B98A; margin-bottom: 1.1rem; }
.foot-col a, .foot-col p { display: block; color: rgba(230,226,214,.8); font-size: .92rem; margin-bottom: .6rem; transition: color .2s; }
.foot-col a:hover { color: #E9A17E; }
.foot-bot { padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(230,226,214,.5); }

/* PAGE HEADER (sous-pages) */
.page-head { padding: clamp(8rem, 13vw, 10rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.breadcrumb a { color: var(--terracotta); }
.page-head h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.page-head h1 em { font-style: italic; color: var(--terracotta); }
.page-head .sub { color: var(--ink-soft); margin-top: .9rem; font-size: 1.05rem; }

/* FILTER BAR */
.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-bottom: 2.2rem; border-bottom: 1px solid var(--line); margin-bottom: 3rem; }
.filter-count { font-size: .9rem; color: var(--ink-soft); font-weight: 500; }
.chips { display: flex; gap: .6rem; flex-wrap: wrap; }
.chip { background: transparent; border: 1px solid var(--line); border-radius: 100px; padding: .55rem 1.25rem; min-height: 44px; font-size: .85rem; font-weight: 500; color: var(--ink-soft); cursor: pointer; font-family: var(--sans); transition: all .2s; }
.chip:hover { border-color: var(--terracotta); color: var(--terracotta); }
.chip.active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

/* reveal */
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero-grid, .maison-grid, .exp-list, .foot-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 2.5rem; }
  .maison-photo { aspect-ratio: 3/2; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px -18px rgba(70,44,20,.45);
    padding: .4rem clamp(1.5rem, 5vw, 4rem) 1rem;
  }
  .nav-links.open a { min-height: 44px; display: flex; align-items: center; padding: .5rem .1rem; font-size: 1rem; color: var(--ink); border-bottom: 1px solid var(--line); }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open a::after { display: none; }
  .burger { display: flex; }
  .exp-list { gap: 0; }
}
@media (max-width: 600px) {
  .booking { flex-direction: column; }
  .booking .f + .f::before { display: none; }
  .booking button { margin: .6rem; padding: 1rem; }
  .room-body, .form-row { grid-template-columns: 1fr; }
  .room-body { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .room-price { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}

/* ── FICHE CHAMBRE ── */
.detail-wrap { padding-top: clamp(7rem, 12vw, 9rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.detail-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.detail-top h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin: .7rem 0 .7rem; }
.detail-meta { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; font-size: .9rem; color: var(--ink-soft); }
.detail-meta .star { color: var(--brass-ink); font-weight: 600; }
.detail-meta .badge { background: var(--sand); color: var(--ink); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 100px; }
.share { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid var(--line); background: transparent; border-radius: 100px; padding: .6rem 1.2rem; font-family: var(--sans); font-size: .85rem; font-weight: 600; cursor: pointer; color: var(--ink); }
.share:hover { border-color: var(--terracotta); color: var(--terracotta); }
.gallery { display: grid; grid-template-columns: 2fr 1fr; gap: .8rem; border-radius: 6px; overflow: hidden; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.gallery-main-slot { position: relative; cursor: pointer; aspect-ratio: 3/2.2; overflow: hidden; }
.gallery-main-slot img { width: 100%; height: 100%; object-fit: cover; }
.gallery-all-btn { position: absolute; bottom: 1rem; right: 1rem; display: inline-flex; align-items: center; gap: .4rem; background: rgba(252,249,243,.94); border: none; border-radius: 100px; padding: .55rem 1rem; font-family: var(--sans); font-size: .8rem; font-weight: 600; cursor: pointer; color: var(--ink); }
.gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: .8rem; }
.gallery-thumb { cursor: pointer; overflow: hidden; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-thumb:hover img { transform: scale(1.05); }
.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.detail-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .4rem; }
.detail-specs { color: var(--ink-soft); }
.detail-desc { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }
.detail-block { padding: 2.2rem 0; border-top: 1px solid var(--line); }
.detail-block h3 { font-size: 1.4rem; margin-bottom: 1.3rem; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.5rem; }
.feature-item { display: flex; gap: .7rem; align-items: center; color: var(--ink); font-size: .95rem; }
.feature-item svg { color: var(--terracotta); flex-shrink: 0; }
.review-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem; font-size: .92rem; font-weight: 600; color: var(--terracotta); border-bottom: 1px solid transparent; transition: border-color .25s; }
.review-link:hover { border-bottom-color: var(--terracotta); }
.review-link svg { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.review-link:hover svg { transform: translate(2px, -2px); }
.booking-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1rem; }
.book-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 1.6rem; box-shadow: var(--shadow); }
.book-price { display: flex; align-items: baseline; gap: .4rem; }
.book-price strong { font-family: var(--serif); font-size: 1.9rem; color: var(--ink); }
.book-price span { color: var(--ink-soft); font-size: .9rem; }
.book-dates { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.book-dates .bf { padding: .7rem .9rem; }
.book-dates .bf + .bf { border-left: 1px solid var(--line); }
.book-field { margin-top: .8rem; border: 1px solid var(--line); border-radius: 8px; padding: .7rem .9rem; }
.book-field label, .book-dates label { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-ink); margin-bottom: .25rem; }
.book-field input, .book-field select, .book-dates input, .book-dates select { width: 100%; border: none; outline: none; background: transparent; font-family: var(--sans); font-size: .92rem; color: var(--ink); }
.book-field input:focus-visible, .book-field select:focus-visible, .book-dates input:focus-visible, .book-dates select:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }
.price-breakdown { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.price-line { display: flex; justify-content: space-between; font-size: .9rem; color: var(--ink-soft); margin-bottom: .5rem; }
.price-line.total { border-top: 1px solid var(--line); padding-top: .7rem; margin-top: .3rem; color: var(--ink); }
.price-line.total strong { font-family: var(--serif); font-size: 1.1rem; }
.form-error { color: #b3261e; font-size: .85rem; margin-top: .7rem; }
.pay-recap { background: var(--sand); border-radius: 8px; padding: 1rem; margin-bottom: 1rem; }
.pay-recap-row { display: flex; justify-content: space-between; font-weight: 600; }
.pay-recap-dates { font-size: .85rem; color: var(--ink-soft); margin-top: .3rem; }
.pay-label { font-size: .82rem; color: var(--ink-soft); margin-bottom: .8rem; text-align: center; }
.pay-card { border: 1px solid var(--line); border-radius: 8px; padding: 1rem; margin-bottom: .8rem; }
.pay-card-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; }
.pay-card-info { display: flex; align-items: center; gap: .7rem; }
.pay-card-info strong { display: block; font-size: .9rem; }
.pay-card-info small { color: var(--ink-soft); font-size: .75rem; }
.pay-badge { font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 100px; white-space: nowrap; }
.pay-badge.local { background: #eaf3ea; color: var(--forest); }
.pay-badge.intl { background: var(--sand); color: var(--brass-ink); }
.btn-feda { width: 100%; background: var(--forest); color: #fff; border: none; border-radius: 6px; padding: .85rem; font-family: var(--sans); font-weight: 600; font-size: .92rem; cursor: pointer; }
.btn-feda:hover { filter: brightness(1.12); }
.book-back { width: 100%; background: transparent; border: 1px solid var(--line); border-radius: 6px; padding: .75rem; margin-top: .75rem; font-family: var(--sans); font-size: .88rem; color: var(--ink-soft); cursor: pointer; }
.book-note { text-align: center; font-size: .78rem; color: var(--ink-soft); margin-top: 1rem; }
.call-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 1.3rem; text-align: center; }
.call-card p { color: var(--ink-soft); font-size: .9rem; margin-bottom: .8rem; }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(20,12,6,.94); z-index: 1000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,.14); border: none; color: #fff; cursor: pointer; border-radius: 50%; width: 48px; height: 48px; font-size: 1.4rem; display: grid; place-items: center; }
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.28); }
.lb-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: #fff; font-size: .85rem; }
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; }
  .booking-side { position: static; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-side { grid-template-rows: none; grid-template-columns: repeat(4, 1fr); }
  .feature-grid, .reviews { grid-template-columns: 1fr; }
}

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.4rem 1.8rem; }
.blog-card { display: block; }
.blog-card-img { aspect-ratio: 16/10; border-radius: 4px; overflow: hidden; background: var(--sand); box-shadow: var(--shadow); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.2rem .1rem 0; }
.blog-tags { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: .55rem; }
.blog-tag { font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-ink); }
.blog-card-title { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; line-height: 1.2; margin-bottom: .5rem; }
.blog-card-excerpt { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: .8rem; }
.blog-card-foot { font-size: .82rem; color: var(--ink-soft); display: flex; justify-content: space-between; gap: 1rem; }
.blog-pagination { display: flex; gap: .5rem; justify-content: center; margin-top: 3.5rem; }
.blog-pagination a, .blog-pagination span { padding: .55rem 1rem; border-radius: 6px; border: 1px solid var(--line); font-size: .88rem; color: var(--ink); }
.blog-pagination a:hover { border-color: var(--terracotta); color: var(--terracotta); }
.blog-pagination .current { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* ARTICLE */
.article { max-width: 760px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 2rem); }
.article-head { padding-top: clamp(7rem, 12vw, 9rem); }
.article-title { font-size: clamp(2rem, 5vw, 3.4rem); margin: 1rem 0; }
.article-meta { color: var(--ink-soft); font-size: .9rem; display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.article-cover { width: 100%; max-height: 460px; object-fit: cover; border-radius: 6px; margin: 2.5rem 0; box-shadow: var(--shadow); }
.article-body { line-height: 1.85; font-size: 1.08rem; color: var(--ink-soft); }
.article-body h2 { font-family: var(--serif); font-weight: 500; color: var(--ink); font-size: 1.75rem; margin: 2.2rem 0 .8rem; }
.article-body h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); font-size: 1.35rem; margin: 1.8rem 0 .7rem; }
.article-body p { margin-bottom: 1.3rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.3rem; }
.article-body li { margin-bottom: .4rem; }
.article-body blockquote { border-left: 2px solid var(--brass); padding: .3rem 1.3rem; margin: 1.8rem 0; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink); }
.article-body img { max-width: 100%; border-radius: 6px; margin: 1.8rem 0; }
.article-body a { color: var(--terracotta); text-decoration: underline; }
.article-foot { max-width: 760px; margin: 3rem auto 0; padding: 2rem clamp(1.5rem, 5vw, 2rem) 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.share-row { display: flex; gap: .7rem; flex-wrap: wrap; }
.share-row a, .share-row button { display: inline-flex; align-items: center; gap: .4rem; border: 1px solid var(--line); background: transparent; border-radius: 100px; padding: .55rem 1rem; font-family: var(--sans); font-size: .85rem; font-weight: 600; color: var(--ink); cursor: pointer; text-decoration: none; }
.share-row a:hover, .share-row button:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* ── PAGE RÉSULTAT PAIEMENT ── */
.result-page { min-height: 72vh; display: flex; align-items: center; justify-content: center; padding: clamp(7rem, 12vw, 9rem) 1.5rem clamp(4rem, 8vw, 6rem); }
.result-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: clamp(2.5rem, 5vw, 3.5rem) 2.5rem; max-width: 480px; width: 100%; text-align: center; box-shadow: var(--shadow); }
.result-icon { width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1.4rem; }
.result-icon.ok { background: #eaf3ea; color: var(--forest); }
.result-icon.err { background: #f7ece7; color: var(--terracotta); }
.result-card h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .8rem; }
.result-card p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.1rem; }
.result-card a.inline { color: var(--terracotta); font-weight: 600; }
.result-badge { display: inline-flex; align-items: center; gap: .4rem; background: #eaf3ea; color: var(--forest); font-size: .78rem; font-weight: 600; padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1.3rem; }
.result-actions { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; margin-top: 1.6rem; }

/* ── TUNNEL DE RÉSERVATION ── */
.search-recap { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; background: var(--sand); border-radius: 8px; padding: .8rem 1.1rem; margin-bottom: 1.6rem; font-size: .92rem; color: var(--ink-soft); }
.search-recap strong { color: var(--ink); font-weight: 600; }
.search-recap a { color: var(--terracotta); font-weight: 600; margin-left: auto; }
.search-recap a:hover { text-decoration: underline; }

.pay-hint { font-size: .82rem; color: var(--ink-soft); line-height: 1.5; background: var(--sand); border-radius: 8px; padding: .7rem .9rem; margin-bottom: 1rem; }
.pay-hint strong { color: var(--ink); }

.mobile-book-bar { display: none; }
@media (max-width: 900px) {
  .mobile-book-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    align-items: center; justify-content: space-between; gap: 1rem;
    background: #fff; border-top: 1px solid var(--line); padding: .8rem 1.2rem;
    box-shadow: 0 -8px 28px -14px rgba(60,40,20,.3);
  }
  .mbb-price strong { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
  .mbb-price span { color: var(--ink-soft); font-size: .8rem; }
  .mobile-book-bar .btn { padding: .85rem 1.7rem; }
  body.has-book-bar { padding-bottom: 78px; }
}
