/* ════════════════════════════════════════════════════════════════
   TY TAN PENMARCH — V2 · feuille de style commune
   Charte reprise de index.html : Cormorant Garamond + Jost,
   palette marine / sable / crème. Sert toutes les pages hors home :
   /la-maison/ /l-hote/ /reservation/ /guide/ /guide/<article>/ 404
   ════════════════════════════════════════════════════════════════ */

:root {
  --navy:      #0B1F3A;
  --navy2:     #162D50;
  --navy3:     #1E3A5F;
  --horizon:   #2868A0;
  --sky:       #7BAEC8;
  --sand:      #C4A97D;
  /* Le sable de la charte tombe à 2,2:1 sur fond clair : illisible en petit.
     Cette variante assombrie sert aux libellés de 11-12 px (4,5:1). */
  --sand-text: #7F6D51;
  --sand-light:#E4D2B4;
  --gold-text: #9C7A47;
  --cream:     #F6F3EF;
  --white:     #FFFFFF;
  --ink:       #1A1A1A;
  --text:      #333333;
  --stone:     #5A5E62;
  --airbnb:    #E3274A;
  --airbnb-light: #FF6B85;
  --line:      #E4DED6;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--cream); }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 300;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 2px; }
img { max-width: 100%; }

/* ══════════════ ACCÈS CLAVIER ══════════════ */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 400;
  background: var(--white); color: var(--navy);
  padding: 0.8rem 1.4rem; border-radius: 0 0 4px 0;
  font-size: 0.8rem; font-weight: 500; text-decoration: none;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }

/* ══════════════ NAV ══════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: padding 0.45s ease, box-shadow 0.45s ease;
}
#nav.scrolled { padding: 0.7rem 3rem; box-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 38px; width: auto; transition: opacity 0.3s ease; }
.nav-logo:hover { opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--sand);
}
.btn-nav {
  background: var(--airbnb);
  color: var(--white) !important;
  padding: 0.58rem 1.4rem;
  border-radius: 3px;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  transition: opacity 0.2s !important;
}
.btn-nav:hover { opacity: 0.85 !important; }
.btn-nav[aria-current="page"]::after { display: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.8); border-radius: 2px;
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,31,58,0.98);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--sand); }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2rem; color: rgba(255,255,255,0.5);
  cursor: pointer; background: none; border: none; line-height: 1;
}

/* ══════════════ BOUTONS ══════════════ */
.btn-primary, .btn-primary-lg, .btn-ghost, .btn-outline-white, .btn-outline-navy {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  transition: opacity 0.2s, transform 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--airbnb); color: var(--white);
  font-size: 0.77rem; font-weight: 500; letter-spacing: 0.14em;
  padding: 0.9rem 2.2rem; white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary-lg {
  background: var(--airbnb); color: var(--white);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.16em;
  padding: 1.05rem 2.8rem; margin-bottom: 2rem;
}
.btn-primary-lg:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.38); color: rgba(255,255,255,0.88);
  font-size: 0.77rem; font-weight: 400; letter-spacing: 0.14em; padding: 0.9rem 2rem;
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); }
.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.32); color: rgba(255,255,255,0.85);
  font-size: 0.74rem; font-weight: 400; letter-spacing: 0.14em; padding: 0.72rem 1.7rem;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); }
.btn-outline-navy {
  border: 1px solid rgba(11,31,58,0.28); color: var(--navy);
  font-size: 0.74rem; font-weight: 400; letter-spacing: 0.14em; padding: 0.72rem 1.7rem;
}
.btn-outline-navy:hover { background: rgba(11,31,58,0.06); border-color: var(--navy); }

/* ══════════════ TYPO COMMUNE ══════════════ */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 4rem; }
.eyebrow {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--sand-text); display: block; margin-bottom: 0.75rem;
}
.eyebrow.light { color: var(--sky); }
/* sur fond marine, le sable d'origine reste parfaitement lisible */
.band.navy .eyebrow, .footer .footer-col-title, .featured-label,
.cta-final-content .eyebrow, .article-card-cats { color: var(--sand); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300; line-height: 1.1; color: var(--navy);
}
.section-title em { font-style: italic; color: var(--horizon); }
.section-title.on-dark { color: var(--white); }
.section-title.on-dark em { color: var(--sand-light); }
.section-lead {
  font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--text); max-width: 620px;
}

/* ══════════════ HERO DE PAGE ══════════════ */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  max-height: 660px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* fond marine : aucun filet crème ne peut apparaître autour de la photo */
  background: var(--navy);
}
.page-hero.tall { height: 74vh; max-height: 780px; }
.page-hero-img {
  position: absolute; inset: 0;
  /* `block` supprime l'espace de ligne (~6 px) que le navigateur réserve sous
     une image inline dès qu'elle repasse en flux, cf. le mode mobile. */
  display: block;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 55%;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(11,31,58,0.94) 0%, rgba(11,31,58,0.55) 42%,
    rgba(11,31,58,0.28) 72%, rgba(11,31,58,0.15) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 4rem 3.6rem;
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; color: var(--white); line-height: 1.06;
  margin-bottom: 1rem; max-width: 20ch;
}
.page-hero-title em { font-style: italic; color: var(--sand-light); }
.page-hero-sub {
  font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.74);
  line-height: 1.75; max-width: 620px;
}

.breadcrumb {
  position: relative; z-index: 2;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 1rem;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li + li::before { content: "›"; margin-right: 0.5rem; color: rgba(255,255,255,0.35); }
.breadcrumb [aria-current] { color: var(--sand); }

/* ══════════════ BARRE DE REPÈRES ══════════════ */
.proof-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.3rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 0.65rem;
  color: rgba(255,255,255,0.65); font-size: 0.78rem; font-weight: 300;
}
.proof-item strong { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.proof-sep { width: 1px; height: 22px; background: rgba(255,255,255,0.12); }

/* ══════════════ CORPS D'ARTICLE ══════════════ */
.article { background: var(--cream); padding: 4.5rem 0 3.5rem; }
.article-wrap { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.article h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 300; line-height: 1.18; color: var(--navy);
  margin: 3rem 0 1.1rem; scroll-margin-top: 90px;
}
.article h2 em { font-style: italic; color: var(--horizon); }
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  color: var(--navy); margin: 2rem 0 0.7rem; line-height: 1.3;
}
.article p {
  font-size: 0.97rem; font-weight: 300; color: var(--text);
  line-height: 1.9; margin-bottom: 1.15rem;
}
.article p.chapo {
  font-family: var(--serif); font-size: 1.22rem; font-style: italic;
  color: var(--navy); line-height: 1.75; margin-bottom: 2rem;
}
.article a {
  color: var(--horizon); text-decoration: none;
  border-bottom: 1px solid rgba(40,104,160,0.35); transition: border-color 0.2s;
}
.article a:hover { border-bottom-color: var(--horizon); }
.article strong { font-weight: 500; color: var(--ink); }
.article ul, .article ol { margin: 0 0 1.4rem 0; padding-left: 0; list-style: none; }
.article ul li {
  position: relative; font-size: 0.94rem; font-weight: 300;
  color: var(--text); line-height: 1.85; padding: 0.15rem 0 0.15rem 1.5rem;
}
.article ul li::before {
  content: ""; position: absolute; left: 0; top: 0.85rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--sand);
}
.article ol { counter-reset: art; }
.article ol li {
  position: relative; counter-increment: art; font-size: 0.94rem; font-weight: 300;
  color: var(--text); line-height: 1.85; padding: 0.15rem 0 0.15rem 2rem;
}
.article ol li::before {
  content: counter(art, decimal-leading-zero);
  position: absolute; left: 0; top: 0.15rem;
  font-family: var(--serif); font-size: 0.95rem; color: var(--gold-text);
}

.note-box {
  background: var(--white); border-left: 3px solid var(--sand);
  padding: 1.3rem 1.6rem; border-radius: 0 4px 4px 0; margin: 1.8rem 0 2rem;
  font-size: 0.92rem; font-weight: 300; color: var(--text); line-height: 1.8;
}
.note-box-label {
  display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sand-text); margin-bottom: 0.5rem;
}
.note-box p { font-size: 0.92rem; margin-bottom: 0.6rem; }
.note-box p:last-child { margin-bottom: 0; }

.quote-box {
  background: rgba(196,169,125,0.14); border-left: 3px solid var(--sand);
  padding: 1.2rem 1.5rem; font-family: var(--serif); font-size: 1.08rem;
  font-weight: 300; font-style: italic; color: var(--navy);
  line-height: 1.72; border-radius: 0 4px 4px 0; margin: 1.8rem 0 2rem;
}
.quote-box cite {
  display: block; margin-top: 0.6rem; font-family: var(--sans); font-style: normal;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em;
  color: var(--gold-text); text-transform: uppercase;
}

.article-figure { margin: 2.4rem 0; }
.article-figure { background: var(--navy2); border-radius: 3px; overflow: hidden; }
.article-figure img {
  width: 100%; height: auto; max-height: 520px; object-fit: cover;
  display: block; border-radius: 3px;
}
.article-figure figcaption {
  font-size: 0.76rem; font-weight: 300; color: var(--stone);
  letter-spacing: 0.04em; padding-top: 0.7rem; line-height: 1.6;
}

/* signature de fin d'article */
.auteur {
  margin: 3rem 0 0;
  padding: 1.6rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sand);
  border-radius: 0 4px 4px 0;
}
.auteur-nom {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.4rem;
}
.article .auteur-bio {
  font-size: 0.88rem; font-weight: 300; color: var(--stone);
  line-height: 1.8; margin-bottom: 0;
}

.facts-table { width: 100%; border-collapse: collapse; margin: 1.6rem 0 2.2rem; font-size: 0.9rem; }
.facts-table caption {
  text-align: left; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sand-text); padding-bottom: 0.8rem;
}
.facts-table th, .facts-table td {
  text-align: left; padding: 0.75rem 0.9rem; border-bottom: 1px solid var(--line);
  font-weight: 300; color: var(--text); line-height: 1.6;
}
.facts-table th { font-weight: 500; color: var(--navy); width: 42%; }
.facts-table tr:last-child th, .facts-table tr:last-child td { border-bottom: none; }
.table-scroll { overflow-x: auto; }

.distances-list { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.6rem 0 2rem; }
.dist-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.1rem; background: var(--white);
  border: 1px solid var(--line); border-radius: 4px; gap: 1rem;
}
.dist-name { font-size: 0.88rem; font-weight: 300; color: var(--text); }
.dist-val {
  font-family: var(--serif); font-size: 0.95rem; font-weight: 400;
  color: var(--gold-text); white-space: nowrap; flex-shrink: 0;
}

.cards-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: #E8E3DC; margin: 2rem 0 2.4rem;
}
.card-item { background: var(--white); padding: 2rem 1.9rem; transition: background 0.3s; }
.card-item:hover { background: #FBFAF7; }
.card-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--gold-text); line-height: 1; margin-bottom: 0.7rem;
}
.card-title {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.55rem; line-height: 1.25;
}
.card-desc { font-size: 0.88rem; font-weight: 300; color: var(--stone); line-height: 1.75; }

/* CTA au fil de l'article */
.cta-inline {
  background: var(--navy); padding: 2.6rem 2.8rem; border-radius: 4px;
  margin: 3rem 0; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-inline-text { flex: 1 1 320px; }
.cta-inline-title {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 300;
  color: var(--white); line-height: 1.2; margin-bottom: 0.6rem;
}
.cta-inline-title em { font-style: italic; color: var(--sand-light); }
.cta-inline-sub { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.62); line-height: 1.75; }
.cta-inline .btn-primary { flex-shrink: 0; }

/* Les règles génériques `.article p` et `.article a` sont plus spécifiques que
   les classes de composant : on rétablit ici le style des blocs placés DANS
   l'article, sinon le texte des CTA passe en gris foncé sur fond marine et les
   boutons héritent de la couleur et du soulignement des liens. */
.article .cta-inline .cta-inline-sub { color: rgba(255,255,255,0.62); }
.article a.btn-primary, .article a.btn-primary-lg, .article a.btn-ghost {
  color: var(--white); border-bottom: none;
}
.article a.btn-outline-white {
  color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.32);
}
.article a.btn-outline-navy { color: var(--navy); border-bottom: 1px solid rgba(11,31,58,0.28); }
.article .card-item .card-desc { color: var(--stone); }
.article a.cat-chip, .article a.article-card { border-bottom: none; }

/* ══════════════ ARTICLE : EN-TÊTE ET PROGRESSION ══════════════ */
.article-meta {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cat-chip {
  display: inline-block; font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.34rem 0.8rem; border-radius: 30px; text-decoration: none;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.9); transition: background 0.2s;
}
.cat-chip:hover { background: rgba(255,255,255,0.24); }
.cat-chip.on-light {
  background: rgba(11,31,58,0.05); border-color: rgba(11,31,58,0.14); color: var(--navy);
}
.cat-chip.on-light:hover { background: rgba(11,31,58,0.1); }
.article-readtime { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* barre de progression sticky en bas */
.reading-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: rgba(11,31,58,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%); transition: transform 0.35s ease;
}
.reading-bar.visible { transform: translateY(0); }
.reading-bar-track { height: 2px; background: rgba(255,255,255,0.12); }
.reading-bar-fill { height: 100%; width: 0%; background: var(--sand); transition: width 0.12s linear; }
.reading-bar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0.7rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.reading-bar-label {
  font-size: 0.76rem; font-weight: 300; color: rgba(255,255,255,0.72);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.reading-bar-label strong { color: var(--white); font-weight: 500; }
.reading-bar .btn-primary { padding: 0.6rem 1.5rem; font-size: 0.71rem; }

/* ══════════════ GALERIE D'ARTICLES ══════════════ */
.blog { background: var(--cream); padding: 4.5rem 0 5.5rem; }
.blog-filters {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  margin: 2rem 0 2.5rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line);
}
.filter-btn {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.55rem 1.15rem; border-radius: 30px; cursor: pointer;
  background: transparent; border: 1px solid rgba(11,31,58,0.18);
  color: var(--navy); transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn:hover { background: rgba(11,31,58,0.06); }
.filter-btn[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: var(--white); }
.filter-count { font-size: 0.75rem; color: var(--stone); margin-left: auto; }

.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #E8E3DC;
}
.article-card {
  background: var(--white); text-decoration: none; display: flex; flex-direction: column;
  transition: background 0.3s;
}
.article-card:hover { background: #FBFAF7; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-img { overflow: hidden; aspect-ratio: 16/10; background: var(--navy2); }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.article-card-body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.article-card-cats {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sand-text); margin-bottom: 0.6rem;
}
.article-card-title {
  font-family: var(--serif); font-size: 1.28rem; font-weight: 500; color: var(--navy);
  line-height: 1.25; margin-bottom: 0.55rem;
}
.article-card-desc { font-size: 0.86rem; font-weight: 300; color: var(--stone); line-height: 1.7; flex: 1; }
.article-card-more {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--horizon); margin-top: 1rem;
}
.articles-empty { padding: 3rem 0; text-align: center; color: var(--stone); font-size: 0.9rem; }

/* article mis en avant */
.featured {
  display: grid; grid-template-columns: 1.15fr 1fr;
  background: var(--navy); border-radius: 4px; overflow: hidden;
}
.featured-img { position: relative; min-height: 340px; overflow: hidden; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.featured:hover .featured-img img { transform: scale(1.03); }
.featured-body { padding: 3rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.featured-label {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand-text); margin-bottom: 0.9rem;
}
.featured-title {
  font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 300;
  color: var(--white); line-height: 1.15; margin-bottom: 0.9rem;
}
.featured-title em { font-style: italic; color: var(--sand-light); }
.featured-desc { font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 1.6rem; }
.featured-link {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sand-light); text-decoration: none; align-self: flex-start;
  border-bottom: 1px solid rgba(228,210,180,0.4); padding-bottom: 3px;
}
.featured-link:hover { border-bottom-color: var(--sand-light); }

/* ══════════════ SECTIONS DE PAGE ══════════════ */
.band { padding: 5.5rem 0; }
.band.cream { background: var(--cream); }
.band.white { background: var(--white); }
.band.navy { background: var(--navy); }
.band-header { margin-bottom: 3rem; max-width: 720px; }
.band.navy .section-lead { color: rgba(255,255,255,0.6); }

/* pièces de la maison */
.room {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white); margin-bottom: 3px;
}
.room:nth-child(even) .room-visual { order: 2; }
.room-visual { min-height: 380px; overflow: hidden; background: var(--navy2); }
.room-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-body { padding: 3rem 3.2rem; display: flex; flex-direction: column; justify-content: center; }
.room-label {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand-text); margin-bottom: 0.7rem;
}
.room-title {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 300;
  color: var(--navy); line-height: 1.15; margin-bottom: 1rem;
}
.room-title em { font-style: italic; color: var(--horizon); }
.room-text { font-size: 0.94rem; font-weight: 300; color: var(--text); line-height: 1.9; margin-bottom: 1rem; }
.room-specs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.4rem; }
.room-spec {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.06em; color: var(--stone);
  background: var(--cream); border: 1px solid var(--line); padding: 0.35rem 0.8rem; border-radius: 30px;
}

/* équipements */
.eq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 2.5rem; }
.eq-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.88rem; font-weight: 300; color: var(--text);
  padding: 0.6rem 0; border-bottom: 1px solid var(--line);
}
.eq-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sand); flex-shrink: 0; }

/* tarifs */
.tarifs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: #D8D2CA; margin-bottom: 1.5rem; }
/* quatre saisons tiennent mal sous 1100 px : on passe à deux colonnes */
@media (max-width: 1100px) { .tarifs-grid { grid-template-columns: repeat(2, 1fr); } }
.tarif-card { background: var(--white); padding: 2.5rem 2rem; text-align: center; }
.tarif-card.featured-price { background: var(--navy); }
.tarif-saison {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sand-text); margin-bottom: 0.3rem;
}
.tarif-periode { font-size: 0.82rem; font-weight: 300; color: var(--stone); margin-bottom: 1.4rem; line-height: 1.4; }
.tarif-card.featured-price .tarif-periode { color: rgba(255,255,255,0.5); }
.tarif-prix {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 300;
  color: var(--navy); line-height: 1; margin-bottom: 0.2rem;
}
.tarif-card.featured-price .tarif-prix { color: var(--white); }
.tarif-unit { font-size: 0.72rem; font-weight: 300; color: var(--stone); margin-bottom: 1.2rem; }
.tarif-card.featured-price .tarif-unit { color: rgba(255,255,255,0.5); }
.tarif-duree {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--stone); border-top: 1px solid rgba(0,0,0,0.07); padding-top: 1rem;
}
.tarif-card.featured-price .tarif-duree { color: rgba(255,255,255,0.5); border-top-color: rgba(255,255,255,0.1); }

/* ══════════════ CALENDRIER DE DISPONIBILITÉS ══════════════ */
.calendrier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem 2.2rem 2.2rem;
}
.cal-entete {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.4rem;
}
.cal-titre {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  color: var(--navy); text-transform: capitalize;
}
.cal-nav { display: flex; gap: 0.5rem; }
.cal-nav button {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white);
  color: var(--navy); font-size: 1rem; cursor: pointer; line-height: 1;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.cal-nav button:hover:not(:disabled) { background: var(--cream); border-color: var(--navy); }
.cal-nav button:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-grille { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.cal-mois-titre {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--navy);
  text-align: center; margin-bottom: 0.15rem; text-transform: capitalize;
}
.cal-mois-tarif {
  text-align: center; margin-bottom: 0.8rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--stone);
}
.cal-semaine, .cal-jours { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-semaine span {
  text-align: center; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--stone); text-transform: uppercase; padding-bottom: 0.4rem;
}
.cal-jour {
  aspect-ratio: 1; border: none; background: var(--cream); border-radius: 3px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 400; color: var(--navy);
  cursor: pointer; transition: background 0.15s, color 0.15s;
  display: flex; align-items: center; justify-content: center; padding: 0;
}
.cal-jour:hover:not([disabled]) { background: var(--sand-light); }
.cal-jour[disabled] { cursor: not-allowed; }
.cal-jour.passe { background: transparent; color: #C9C4BC; }
.cal-jour.pris {
  background: transparent; color: #B9B3AA; text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.cal-jour.debut, .cal-jour.fin { background: var(--navy); color: var(--white); font-weight: 500; }
.cal-jour.dans-plage { background: rgba(196,169,125,0.34); color: var(--navy); }
.cal-vide { aspect-ratio: 1; }

.cal-legende {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  font-size: 0.76rem; color: var(--stone);
}
.cal-legende span { display: flex; align-items: center; gap: 0.45rem; }
.cal-puce { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.cal-puce.libre { background: var(--cream); border: 1px solid var(--line); }
.cal-puce.occupe { background: transparent; border: 1px solid var(--line); position: relative; }
.cal-puce.occupe::after {
  content: ""; position: absolute; left: 2px; right: 2px; top: 50%;
  height: 1px; background: #B9B3AA;
}
.cal-puce.choisi { background: var(--navy); }

.cal-etat { font-size: 0.78rem; color: var(--stone); margin-top: 1rem; line-height: 1.7; }
.cal-etat strong { color: var(--navy); font-weight: 500; }
.cal-pied {
  margin-top: 1.6rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cal-resume { font-size: 0.9rem; font-weight: 300; color: var(--text); line-height: 1.7; flex: 1 1 320px; }
.cal-resume strong { color: var(--navy); font-weight: 500; }
.cal-total {
  display: block; margin-top: 0.5rem; font-size: 0.95rem; color: var(--text);
}
.cal-total b {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--navy);
  margin-right: 0.3rem; vertical-align: -0.05em;
}
.cal-total-calcul { color: var(--stone); font-size: 0.82rem; white-space: nowrap; }
.cal-detail {
  display: block; margin-top: 0.35rem; font-size: 0.76rem; color: var(--stone); line-height: 1.6;
}

/* détail du prix, replié derrière un chevron */
.cal-details { margin-top: 0.5rem; max-width: 400px; }
.cal-details > summary {
  display: inline-flex; align-items: center; gap: 0.35rem; cursor: pointer;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--horizon); list-style: none; width: fit-content;
}
.cal-details > summary::-webkit-details-marker { display: none; }
.cal-details > summary::after {
  content: "›"; font-size: 1.1rem; line-height: 1; transition: transform 0.2s;
}
.cal-details[open] > summary::after { transform: rotate(90deg); }
.cal-details > summary:hover { color: var(--navy); }
.cal-ligne {
  display: flex; justify-content: space-between; gap: 1.5rem;
  font-size: 0.82rem; color: var(--text); padding: 0.32rem 0;
}
.cal-ligne:first-of-type { margin-top: 0.7rem; }
.cal-ligne-total {
  border-top: 1px solid var(--line); margin-top: 0.3rem; padding-top: 0.55rem;
  color: var(--navy); font-weight: 500;
}
.cal-alerte {
  display: block; margin-top: 0.4rem; font-size: 0.8rem; color: #9C5B2A;
}
.cal-indispo .cal-grille { opacity: 0.45; pointer-events: none; }

@media (max-width: 768px) {
  .calendrier { padding: 1.4rem 1.2rem 1.6rem; }
  .cal-grille { grid-template-columns: 1fr; gap: 1.8rem; }
  .cal-pied .btn-primary { width: 100%; text-align: center; white-space: normal; }
}

/* étapes de réservation */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: #E8E3DC; }
.step { background: var(--white); padding: 2rem 1.8rem; }
.step-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--gold-text); line-height: 1; margin-bottom: 0.6rem;
}
.step-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.86rem; font-weight: 300; color: var(--stone); line-height: 1.7; }

/* galerie photos */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.photo-grid { background: #E8E3DC; }
.photo-grid img { width: 100%; height: 200px; object-fit: cover; display: block; }
.photo-grid .wide { grid-column: span 2; }

/* FAQ */
.faq { padding: 5.5rem 0; background: var(--white); }
.faq-intro { max-width: 620px; margin: 0 auto 3rem; text-align: center; }
.faq-intro .eyebrow { display: block; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; text-align: left; gap: 1.2rem;
}
.faq-q-text { font-family: var(--serif); font-size: 1.12rem; font-weight: 400; color: var(--navy); line-height: 1.35; }
.faq-chevron { width: 17px; height: 17px; color: var(--stone); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-answer { max-height: 520px; }
.faq-answer-inner { padding: 0 0 1.5rem; font-size: 0.92rem; font-weight: 300; color: #4A4A4A; line-height: 1.85; }

/* ══════════════ CTA FINAL ══════════════ */
.cta-final { position: relative; overflow: hidden; }
.cta-final-img {
  width: 100%; height: 520px; object-fit: cover; object-position: center 60%;
  display: block; filter: brightness(0.38);
}
.cta-final-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 3rem 2rem;
}
.cta-final-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.6vw, 3.8rem); font-weight: 300;
  color: var(--white); line-height: 1.1; margin-bottom: 1.2rem;
}
.cta-final-title em { font-style: italic; color: var(--sand-light); }
.cta-final-sub {
  font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem; line-height: 1.75; max-width: 520px;
}
.cta-trust {
  display: flex; align-items: center; justify-content: center; gap: 1.8rem; flex-wrap: wrap;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.06em; color: rgba(255,255,255,0.5);
}

/* ══════════════ PIED DE PAGE ══════════════ */
.footer { background: #08131F; padding: 3.5rem 3rem 1.6rem; }
.footer-main {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 84px; width: auto; filter: brightness(0) invert(1); opacity: 0.75; }
.footer-tagline {
  font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.45);
  line-height: 1.8; margin-top: 1rem; max-width: 300px;
}
.footer-col-title {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand-text); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  display: inline-block; padding: 0.15rem 0; /* cible tactile de 24 px */
  font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-cta-text { font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 1.2rem; }
.footer-cta-note {
  font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.38);
  margin-top: 0.9rem; line-height: 1.7;
}
.footer-legal {
  max-width: 1280px; margin: 0 auto; padding-top: 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-legal-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-legal a, .footer-legal button {
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
  padding: 0.35rem 0; /* cible tactile de 24 px (WCAG 2.2 — 2.5.8) */ text-decoration: none;
  letter-spacing: 0.06em; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-weight: 300; padding: 0; transition: color 0.2s;
}
.footer-legal a:hover, .footer-legal button:hover { color: rgba(255,255,255,0.75); }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.42); }

/* ══════════════ ANIMATIONS ══════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reading-bar { transition: none; }
}

/* ══════════════ RESPONSIVE ≤ 1100px ══════════════ */
@media (max-width: 1100px) {
  .section-wrap { padding: 0 2.5rem; }
  .page-hero-content { padding: 0 2.5rem 2.8rem; }
  #nav { padding: 1rem 2.5rem; }
  #nav.scrolled { padding: 0.7rem 2.5rem; }
  .nav-links { gap: 1.3rem; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: 1fr; }
  .featured-img { min-height: 260px; }
  .featured-body { padding: 2.4rem 2.2rem; }
  .room { grid-template-columns: 1fr; }
  .room:nth-child(even) .room-visual { order: 0; }
  .room-visual { min-height: 260px; }
  .room-body { padding: 2.4rem 2.2rem; }
  .eq-grid { grid-template-columns: repeat(2, 1fr); gap: 0 1.6rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .reading-bar-inner { padding: 0.7rem 2.5rem; }
}

/* ══════════════ RESPONSIVE ≤ 768px ══════════════ */
@media (max-width: 768px) {
  #nav { padding: 0.9rem 1.4rem; }
  #nav.scrolled { padding: 0.65rem 1.4rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* En mobile, le hero cesse d'être une image de fond : la photo se place
     au-dessus du bloc de texte marine. `display: block` est indispensable,
     sinon le flex garde l'image et le texte côte à côte.
     Le padding-top réserve la place du nav fixe ; il est légèrement plus haut
     que le nav, d'où le fond marine posé sur .page-hero — sans lui ce
     décalage se voit comme un filet crème entre le nav et la photo. */
  .page-hero, .page-hero.tall {
    display: block; height: auto; min-height: 0; max-height: none; padding-top: 4.4rem;
  }
  /* hauteur fluide : la photo remplit toute sa zone en `cover` (elle déborde
     et se recadre plutôt que de se déformer ou de laisser des bandes). */
  .page-hero-img {
    position: relative; display: block;
    width: 100%; height: clamp(230px, 52vw, 340px);
  }
  .page-hero-overlay { display: none; }
  .page-hero-content { padding: 1.8rem 1.4rem 2rem; background: var(--navy); }
  .page-hero-title { max-width: none; }

  .proof-bar { padding: 1rem 1.4rem; gap: 0.8rem; justify-content: flex-start; }
  .proof-sep { display: none; }
  .proof-item { font-size: 0.72rem; }

  .section-wrap { padding: 0 1.4rem; }
  .band { padding: 3.5rem 0; }
  .article { padding: 3rem 0 2.5rem; }
  .article-wrap { padding: 0 1.4rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .cta-inline { padding: 2rem 1.5rem; }
  .cta-inline .btn-primary { white-space: normal; text-align: center; }

  .blog { padding: 3rem 0 4rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .filter-count { width: 100%; margin-left: 0; }

  .eq-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { background: #E8E3DC; }
.photo-grid img { height: 150px; }
  .photo-grid .wide { grid-column: span 2; }

  .faq { padding: 3.5rem 0; }
  .faq-list, .faq-intro { padding: 0 1.4rem; }
  .cta-final-img { height: 480px; }

  .footer { padding: 2.5rem 1.4rem 1.4rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
  .footer-legal { justify-content: flex-start; }

  .reading-bar-inner { padding: 0.6rem 1.4rem; }
  .reading-bar-label { display: none; }
  .reading-bar .btn-primary { width: 100%; text-align: center; }
}
