/* Villa Plaisance, Design tokens
   Pierre, lin, vert sauge, calme et clair
   Provençal moderne, chaleureux mais épuré
*/

:root {
  /* Surfaces, linen & stone */
  --linen-50:  #FBF7EE;
  --linen-100: #F4EEE0;
  --linen-200: #EBE2CF;
  --linen-300: #DCD0B7;
  --stone-400: #B8AC91;
  /* #8C8167 à l'origine : 3.3-3.6:1 sur les fonds linen, sous le seuil
     WCAG AA (4.5:1). Assombri à teinte constante, 4.6:1 sur le fond le
     plus sombre où il sert de texte (#EDEDE0, surfaces sage-light). */
  --stone-500: #726954;
  --stone-600: #6B6253;
  --ink-700:   #3B362D;
  --ink-900:   #1F1C16;

  /* Olive, vert olive très sombre, utilisé pour aplats de footer et boutons */
  --olive-900: #1F2814;

  /* Sage, quiet accent */
  --sage-200: #C9D2BD;
  --sage-400: #94A487;
  --sage-500: #6F8466;
  --sage-700: #4D5E47;

  /* Terracotta, logo color, used as a second accent next to sage.
     #C44C24 à l'origine : 4.0-4.4:1 en texte sur les fonds linen, sous
     le seuil WCAG AA. Assombri à teinte constante, 4.6:1 sur #EDEDE0. */
  --terra-500: #B54621;
  --terra-600: #A23A18;

  /* Type */
  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-sans: "Barlow Condensed", "Roboto Condensed", "Helvetica Neue Condensed", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Rhythm */
  --container: 1280px;
  --container-wide: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 144px);

  /* Borders */
  --hairline: 1px solid color-mix(in oklab, var(--ink-900) 14%, transparent);
  --hairline-strong: 1px solid color-mix(in oklab, var(--ink-900) 24%, transparent);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* Texte réservé aux lecteurs d'écran (pattern standard, hors flux visuel) */
.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;
}

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  background: var(--linen-50);
  color: var(--ink-700);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "cv01";
  letter-spacing: 0;
}

img, picture, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ============ TYPOGRAPHY ============ */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink-900);
  letter-spacing: -0.018em;
  line-height: 1.02;
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 400; color: var(--sage-700); }

.h-xxl { font-family: var(--font-display); font-weight: 400; font-size: clamp(48px, 8.4vw, 132px); line-height: 0.96; letter-spacing: -0.025em; color: var(--ink-900); }
.h-xl  { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5.6vw, 80px);  line-height: 1.0;  letter-spacing: -0.02em;  color: var(--ink-900); }
.h-lg  { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 3.4vw, 48px);  line-height: 1.08; letter-spacing: -0.015em; color: var(--ink-900); }
.h-md  { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 2.4vw, 32px);  line-height: 1.15; letter-spacing: -0.01em;  color: var(--ink-900); }
.h-xxl em, .h-xl em, .h-lg em, .h-md em { font-style: italic; }

.overline {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-600);
}

.lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  color: var(--ink-700);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.body-lg { font-size: 17.5px; line-height: 1.6; color: var(--ink-700); text-wrap: pretty; }
.body    { font-size: 15.5px; line-height: 1.6; color: var(--ink-700); text-wrap: pretty; }
.body-sm { font-size: 13.5px; line-height: 1.55; color: var(--stone-600); }

.numeral {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--stone-500);
  font-feature-settings: "tnum";
}

/* ============ LAYOUT ============ */

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-tight { padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(48px, 6vw, 88px); }

.divider { height: 1px; background: color-mix(in oklab, var(--ink-900) 12%, transparent); border: 0; }

/* ============ PAGE MASTHEAD ============
   Text-only hero used on every page. No background image, typography first. */

.page-hero {
  background: var(--linen-50);
  border-bottom: var(--hairline);
}
.page-hero-inner {
  padding: clamp(64px, 8vw, 120px) var(--gutter) clamp(40px, 5vw, 64px);
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.page-hero-issue {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--stone-500); text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: var(--hairline);
  padding-bottom: 14px; margin-bottom: 28px;
}
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(56px, 9vw, 140px); line-height: 0.92; letter-spacing: -0.025em;
  color: var(--ink-900);
}
.page-hero h1 em { font-style: italic; color: var(--sage-700); }
.page-hero .lede {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px); line-height: 1.4; letter-spacing: -0.005em;
  color: var(--ink-700); max-width: 42ch;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.page-hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 720px) {
  .page-hero-inner { grid-template-columns: 1fr; }
}

/* Optional stat strip below masthead */
.page-hero-stats {
  border-top: var(--hairline);
  background: var(--linen-50);
}
.page-hero-stats-inner {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.page-hero-stats .stat {
  padding: 26px 24px;
  border-right: var(--hairline);
}
.page-hero-stats .stat:last-child { border-right: 0; }
.page-hero-stats .stat .overline {
  color: var(--stone-500);
}
.page-hero-stats .stat .val {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink-900);
  margin-top: 8px;
}
.page-hero-stats .stat .val small {
  font-family: var(--font-sans); font-size: 14px; color: var(--stone-500); margin-left: 4px;
}
@media (max-width: 720px) {
  .page-hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .page-hero-stats .stat { border-right: 0; border-bottom: var(--hairline); }
  .page-hero-stats .stat:nth-child(odd) { border-right: var(--hairline); }
}

/* Utility: terracotta accent for taglines &amp; brand markers */
.label-terra {
  color: var(--terra-500) !important;
}

/* ============ NAV ============ */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--linen-50) 90%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: var(--hairline);
}
.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  display: inline-flex; align-items: center; gap: 12px;
}
.brand img {
  width: 32px; height: 32px;
  display: block;
}
.brand .brand-wordmark {
  display: inline-flex; align-items: baseline; gap: 8px;
}
.brand .brand-mark {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--terra-500);
  text-transform: uppercase;
  transform: translateY(-1px);
}
/* Cacher le wordmark + tagline en mobile : ne reste que le picto (logo image).
   Visible en desktop et tablette à partir de 720px. */
@media (max-width: 720px) {
  .brand .brand-wordmark { display: none; }
}
.nav-links {
  display: flex; gap: 22px; justify-content: center;
  font-size: 13.5px; color: var(--ink-700);
}
.nav-links a {
  position: relative; padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--sage-700); }
/* Page courante : trait terra plus marqué + poids un peu plus appuyé.
   Le contraste visuel le distingue clairement des autres liens. */
.nav-links a.active { color: var(--ink-900); font-weight: 500; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--terra-500);
}
.nav-right {
  display: flex; justify-content: flex-end; align-items: center; gap: 18px;
}
.lang-toggle {
  display: inline-flex; align-items: center; gap: 2px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--stone-600);
}
.lang-toggle a,
.lang-toggle button {
  background: transparent; border: 0; padding: 6px 6px;
  font: inherit; color: var(--stone-500); cursor: pointer;
  border-radius: 0;
  text-decoration: none;
  line-height: 1;
}
.lang-toggle a:hover { color: var(--ink-900); }
.lang-toggle a.active,
.lang-toggle button.active { color: var(--ink-900); }
.lang-toggle .sep { color: var(--stone-400); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border: 1px solid var(--olive-900);
  background: var(--olive-900);
  color: var(--linen-50);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { background: var(--sage-700); border-color: var(--sage-700); }
.btn-ghost {
  background: transparent; color: var(--olive-900); border-color: var(--olive-900);
}
.btn-ghost:hover { background: var(--olive-900); color: var(--linen-50); }
.btn-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; letter-spacing: 0.02em; color: var(--olive-900);
  padding-bottom: 3px; border-bottom: 1px solid var(--olive-900);
  transition: gap .2s ease, color .2s ease;
}
.btn-link:hover { gap: 14px; color: var(--sage-700); border-color: var(--sage-700); }

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 880px);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--linen-100);
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(31,28,22,0.32) 0%,
    rgba(31,28,22,0.05) 30%,
    rgba(31,28,22,0.05) 60%,
    rgba(31,28,22,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(40px, 8vw, 96px) var(--gutter) clamp(28px, 4vw, 48px);
  max-width: var(--container-wide);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: clamp(560px, 86vh, 880px);
  color: var(--linen-50);
}
.hero-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
}
.hero-top .overline { color: rgba(251,247,238,0.78); }
.hero-coords {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: rgba(251,247,238,0.7); text-align: right; line-height: 1.6;
}
.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.028em;
  color: var(--linen-50);
}
.hero h1 em { font-style: italic; color: var(--sage-200); }
.hero-tag {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(251,247,238,0.92);
  max-width: 36ch;
  margin-top: 18px;
}

/* Mode pills inside hero */
.mode-strip {
  position: relative; z-index: 3;
  background: var(--linen-50);
  border-top: var(--hairline-strong);
}
.mode-strip-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: stretch;
  min-height: 92px;
}
.mode-label {
  align-self: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-500);
  max-width: 14ch;
}
.mode-switch {
  display: grid; grid-template-columns: 1fr 1fr;
  align-self: center;
  border-left: var(--hairline);
  border-right: var(--hairline);
}
.mode-switch button {
  background: transparent; border: 0; cursor: pointer;
  padding: 22px 28px;
  text-align: left;
  font: inherit; color: inherit;
  display: flex; flex-direction: column; gap: 4px;
  border-right: var(--hairline);
  transition: background .25s ease, color .25s ease;
  position: relative;
}
.mode-switch button:last-child { border-right: 0; }
.mode-switch .mode-when {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--stone-500); text-transform: uppercase;
}
.mode-switch .mode-name {
  font-family: var(--font-display); font-size: 22px; color: var(--ink-900); letter-spacing: -0.01em;
}
.mode-switch .mode-name em { font-style: italic; color: var(--sage-700); }
.mode-switch button[aria-pressed="true"] { background: var(--ink-900); }
.mode-switch button[aria-pressed="true"] .mode-when { color: rgba(251,247,238,0.7); }
.mode-switch button[aria-pressed="true"] .mode-name { color: var(--linen-50); }
.mode-switch button[aria-pressed="true"] .mode-name em { color: var(--sage-200); }

.mode-cta { align-self: center; }

/* ============ MODE BLOCKS ============ */

.mode-panel { display: none; }
.mode-panel.active { display: block; }

/* ============ EDITORIAL TWO-COL ============ */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.two-col.reverse > :first-child { order: 2; }
.two-col-text { max-width: 52ch; }

.section-label {
  display: inline-flex; align-items: baseline; gap: 14px;
  margin-bottom: 28px;
}
.section-label .numeral { color: var(--stone-500); }
.section-label .tag {
  font-family: var(--font-sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-600);
}

/* ============ ROOMS GRID ============ */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.4vw, 32px) clamp(20px, 2.4vw, 36px);
}
.room-card { display: flex; flex-direction: column; gap: 16px; }
.room-card .img {
  aspect-ratio: 4 / 5;
  background-size: cover; background-position: center;
  background-color: var(--linen-200);
}
.room-card.wide .img { aspect-ratio: 4 / 3; }
.room-card .meta {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  border-top: var(--hairline);
  padding-top: 14px;
}
.room-card .meta-name {
  font-family: var(--font-display); font-size: 24px; color: var(--ink-900); letter-spacing: -0.01em;
}
.room-card .meta-name em { font-style: italic; }
.room-card .meta-side {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--stone-500);
}

/* ============ DUALITY CARDS ============ */

.duality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.dual-card {
  background: var(--linen-100);
  padding: clamp(28px, 3.4vw, 48px);
  display: flex; flex-direction: column; gap: 22px;
  min-height: 380px;
  position: relative;
  border: var(--hairline);
}
.dual-card.dark { background: var(--ink-900); color: var(--linen-100); border-color: var(--ink-900); }
.dual-card.dark .h-lg { color: var(--linen-50); }
.dual-card.dark .body { color: rgba(251,247,238,0.78); }
.dual-card.dark .overline { color: rgba(251,247,238,0.6); }
.dual-card .stat-line {
  display: flex; gap: 24px;
  border-top: 1px solid color-mix(in oklab, currentColor 18%, transparent);
  padding-top: 18px; margin-top: auto;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
}

/* ============ REGION LIST ============ */

.region-list {
  list-style: none; padding: 0; margin: 0;
  border-top: var(--hairline);
}
.region-list li {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: var(--hairline);
  align-items: center;
}
.region-list .place {
  font-family: var(--font-display); font-size: clamp(22px, 2vw, 30px); color: var(--ink-900); letter-spacing: -0.01em;
}
.region-list .place em { font-style: italic; }
.region-list .desc { color: var(--stone-600); font-size: 14px; max-width: 60ch; }
.region-list .dist { font-family: var(--font-mono); font-size: 12px; color: var(--ink-900); letter-spacing: 0.04em; }

/* ============ PRICING ============ */

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.price-card {
  border: var(--hairline);
  padding: clamp(28px, 3vw, 40px);
  background: var(--linen-50);
}
.price-rows { margin-top: 28px; }
.price-rows .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-top: var(--hairline);
  font-size: 14.5px;
}
.price-rows .row:last-child { border-bottom: var(--hairline); }
.price-rows .row .label { color: var(--ink-700); }
.price-rows .row .val { font-family: var(--font-mono); font-size: 13px; color: var(--ink-900); letter-spacing: 0.04em; }

/* ============ FOOTER ============ */

.footer {
  background: var(--olive-900);
  color: var(--linen-200);
  padding: clamp(56px, 7vw, 96px) 0 32px;
  margin-top: var(--section-y);
}
.footer .container-wide { padding-left: var(--gutter); padding-right: var(--gutter); }
.footer h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.0; letter-spacing: -0.02em;
  color: var(--linen-50);
  margin: 0 0 32px; max-width: 18ch; text-wrap: balance;
}
.footer h2 em { font-style: italic; color: var(--sage-200); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-top: 56px; border-top: 1px solid rgba(251,247,238,0.12);
  margin-top: 56px;
}
.footer-grid h2 {
  font-family: var(--font-sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251,247,238,0.55);
  margin: 0 0 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-grid a { color: var(--linen-200); }
.footer-grid a:hover { color: var(--sage-200); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(251,247,238,0.12);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  color: rgba(251,247,238,0.5);
}

/* ============ FORM ============ */

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--stone-500); text-transform: uppercase;
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 15.5px;
  color: var(--ink-900);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--stone-400);
  padding: 10px 0 12px;
  border-radius: 0;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-bottom-color: var(--ink-900);
}
.field textarea { min-height: 110px; resize: vertical; }

/* ============ UTILITIES ============ */

.surface-sage { background: color-mix(in oklab, var(--sage-200) 32%, var(--linen-50)); }
.surface-stone { background: var(--linen-100); }
.surface-ink   { background: var(--ink-900); color: var(--linen-100); }
.surface-ink .display, .surface-ink .h-xxl, .surface-ink .h-xl, .surface-ink .h-lg, .surface-ink .h-md { color: var(--linen-50); }
.surface-ink .overline { color: rgba(251,247,238,0.6); }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 14px;
  background: var(--linen-100);
  border: var(--hairline);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--ink-900); text-transform: uppercase;
}
.kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage-500); }
.kicker.sage { background: color-mix(in oklab, var(--sage-200) 40%, transparent); border-color: transparent; }
.kicker.dark { background: var(--ink-900); color: var(--linen-100); border-color: var(--ink-900); }

.fade-up { animation: fadeUp .8s cubic-bezier(.2,.6,.2,1) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ============ RESPONSIVE ============ */

@media (max-width: 960px) {
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .nav-links { display: none; }
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse > :first-child { order: 0; }
  .duality, .pricing { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid > * { grid-column: span 1 !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mode-strip-inner { grid-template-columns: 1fr; gap: 0; padding-top: 0; padding-bottom: 0; }
  .mode-label { display: none; }
  .mode-switch { border: 0; }
  .mode-cta { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .region-list li { grid-template-columns: 40px 1fr auto; }
  .region-list .desc { grid-column: 2 / -1; }
}
@media (max-width: 560px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-top { flex-direction: column; }
  .hero-coords { text-align: left; }
}

/* =========================================================================
   CALENDRIERS DE DISPONIBILITÉS (front public)
   Source design : docs/design-refs/2026-05-24-calendriers.html
   Partials : v8/app/Views/front/_partials/calendar_{month,focus,ribbon}.php
   ========================================================================= */

.cal-month {
  background: var(--linen-50);
  border: var(--hairline);
  padding: 18px;
}
.cal-month-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: var(--hairline);
}
.cal-month-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}
.cal-month-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--stone-500);
  text-transform: uppercase;
}
.cal-month.is-villa .cal-month-tag {
  color: var(--terra-500);
}

.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--stone-500);
  text-transform: uppercase;
  text-align: center;
}
.cal-dow span { padding: 4px 0; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-cell {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-700);
  background: var(--linen-50);
  transition: background .15s;
}
.cal-cell.cal-empty { background: transparent; }
.cal-cell.cal-open  { background: var(--linen-100); }
.cal-cell.cal-booked {
  background: var(--ink-900);
  color: rgba(251, 247, 238, 0.6);
  text-decoration: line-through;
}
.cal-cell.cal-closed {
  background: var(--linen-100);
  color: var(--stone-400);
  background-image: repeating-linear-gradient(
    45deg,
    transparent, transparent 4px,
    color-mix(in oklab, var(--stone-400) 25%, transparent) 4px,
    color-mix(in oklab, var(--stone-400) 25%, transparent) 5px
  );
}
.cal-month.is-villa .cal-cell.cal-open {
  background: color-mix(in oklab, var(--terra-500) 12%, var(--linen-50));
}

/* Style B, 3 mois côte à côte */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) {
  .focus-grid { grid-template-columns: 1fr; }
}

/* Style C, ruban saisonnier */
.season-ribbon {
  display: flex;
  gap: 4px;
  border: var(--hairline);
  background: var(--linen-50);
  overflow: hidden;
}
.ribbon-seg {
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  transition: filter .2s;
}
.ribbon-seg:hover { filter: brightness(0.97); }
.ribbon-bnb   { background: color-mix(in oklab, var(--sage-200) 30%, var(--linen-50)); }
.ribbon-villa { background: color-mix(in oklab, var(--terra-500) 14%, var(--linen-50)); }
.ribbon-full  { background: var(--ink-900); color: var(--linen-50); }
.ribbon-label {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--ink-900);
  letter-spacing: -0.005em;
  line-height: 1;
}
.ribbon-full .ribbon-label { color: var(--linen-50); }
.ribbon-status {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--stone-600);
  text-transform: uppercase;
}
.ribbon-full .ribbon-status { color: var(--sage-200); }

/* Legend partagée */
.legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--stone-600);
  text-transform: uppercase;
  align-items: center;
  margin-top: 20px;
}
.legend-key { display: inline-flex; align-items: center; gap: 8px; }
.legend-sw  { width: 14px; height: 14px; border: var(--hairline); }
.legend-sw.open   { background: var(--linen-100); }
.legend-sw.villa  { background: color-mix(in oklab, var(--terra-500) 14%, var(--linen-50)); }
.legend-sw.booked { background: var(--ink-900); }

/* Style A, vue annuelle 12 mois (4×3 desktop, 2 tablet, 1 mobile) */
.annual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) {
  .annual-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .annual-grid { grid-template-columns: 1fr; }
}

/* Legend : variante "fermé" (rayée), utilisée si on ajoute des blocages manuels */
.legend-sw.closed {
  background: var(--linen-100);
  background-image: repeating-linear-gradient(
    45deg,
    transparent, transparent 3px,
    color-mix(in oklab, var(--stone-400) 40%, transparent) 3px,
    color-mix(in oklab, var(--stone-400) 40%, transparent) 4px
  );
}

/* ============ WORLD MAP, SVG vectoriel au trait (home section 05) ============
   Refonte selon trio impeccable + emil-design-eng + gpt-taste :
   - Padding section cinématique (×3 vs version naive)
   - Fond radial wash chaud (terra + olive) au lieu de plat
   - Easing exponentiel `cubic-bezier(0.23, 1, 0.32, 1)` (curve forte Emil)
   - Halos animés via `transform: scale()` GPU-accelerated (pas `r`)
   - Stagger d'entrée scroll-triggered (IntersectionObserver + --i)
   - Liste origines en Barlow Condensed uppercase tracking large (pas italique-cliché)
*/

.worldmap-section {
  position: relative;
  isolation: isolate;
  padding: 0;
  margin: clamp(64px, 10vh, 144px) 0;
  background: var(--linen-100);
  overflow: hidden;
}
.worldmap-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 22% 28%,
      color-mix(in oklab, var(--terra-500) 7%, transparent),
      transparent 70%),
    radial-gradient(ellipse 65% 60% at 80% 70%,
      color-mix(in oklab, var(--olive-700, var(--sage-500)) 6%, transparent),
      transparent 72%);
  z-index: 0;
}
.worldmap-section > * { position: relative; z-index: 1; }

.worldmap-intro {
  padding-top: clamp(80px, 14vh, 168px);
  padding-bottom: clamp(48px, 8vh, 96px);
}
.worldmap-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}
@media (min-width: 900px) {
  .worldmap-intro-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(48px, 6vw, 96px);
  }
}
.worldmap-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-500);
  margin-bottom: clamp(20px, 2.4vw, 32px);
}
.worldmap-title { margin: 0; max-width: 14ch; }
.worldmap-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  color: var(--ink-700);
  max-width: 36ch;
  margin: 0;
  text-wrap: pretty;
}

.worldmap-svg {
  width: 100%;
  padding: clamp(24px, 4vw, 64px) clamp(16px, 3vw, 56px);
  padding-bottom: clamp(40px, 6vh, 80px);
  display: flex;
  justify-content: center;
}
.worldmap-svg-frame {
  position: relative;
  width: 100%;
  max-width: 1320px;
  aspect-ratio: 1000 / 500;
  color: var(--stone-500);
}
.worldmap-svg-frame > svg,
.worldmap-svg-frame > img.worldmap-countries {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* La carte est une <img> externe (cacheable) : le fade-in scroll-triggered
   porte sur l'élément entier. L'opacité de trait 0.85 vit dans le SVG. */
img.worldmap-countries {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 1100ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 1100ms cubic-bezier(0.23, 1, 0.32, 1);
}
.worldmap-section.is-in-view img.worldmap-countries {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Pins guests : stagger d'entrée scroll-triggered -----
   L'attribut SVG transform="translate(x,y)" sur le <g> positionne le pin
   sur la carte (à conserver tel quel). On anime UNIQUEMENT le <circle>
   enfant en transform-scale + l'opacity sur le <g>. */
.worldmap-pins { pointer-events: none; }
.worldmap-pins .pin-guest {
  pointer-events: auto;
  cursor: help;
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.23, 1, 0.32, 1);
}
.worldmap-pins .pin-guest circle {
  fill: var(--ink-700);
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.4);
  transition:
    transform 460ms cubic-bezier(0.23, 1, 0.32, 1),
    fill 200ms ease-out;
}
.worldmap-section.is-in-view .worldmap-pins .pin-guest {
  opacity: 1;
  transition-delay: calc(420ms + var(--i, 0) * 55ms);
}
.worldmap-section.is-in-view .worldmap-pins .pin-guest circle {
  transform: scale(1);
  transition-delay: calc(420ms + var(--i, 0) * 55ms);
}
.worldmap-pins .pin-guest:hover circle { fill: var(--ink-900); }

/* ----- Pin Villa Plaisance : double halo + dot + label ----- */
.worldmap-pins .pin-home circle.pin-home-dot {
  fill: var(--terra-500);
  transform-box: fill-box;
  transform-origin: center;
}
.worldmap-pins .pin-home circle.pin-home-halo-2,
.worldmap-pins .pin-home circle.pin-home-halo-3 {
  fill: none;
  stroke: var(--terra-500);
  transform-box: fill-box;
  transform-origin: center;
}
.worldmap-pins .pin-home circle.pin-home-halo-2 {
  stroke-width: 0.7;
  animation: pin-halo-2 2.8s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}
.worldmap-pins .pin-home circle.pin-home-halo-3 {
  stroke-width: 0.5;
  animation: pin-halo-3 2.8s cubic-bezier(0.23, 1, 0.32, 1) infinite 0.4s;
}
@keyframes pin-halo-2 {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(3.5); opacity: 0;    }
}
@keyframes pin-halo-3 {
  0%   { transform: scale(1);   opacity: 0.30; }
  100% { transform: scale(6);   opacity: 0;    }
}
@media (prefers-reduced-motion: reduce) {
  .worldmap-pins .pin-home circle.pin-home-halo-2,
  .worldmap-pins .pin-home circle.pin-home-halo-3 { animation: none; opacity: 0; }
  .worldmap-pins .pin-guest,
  .worldmap-pins .pin-guest circle,
  img.worldmap-countries {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
.worldmap-pins .pin-home-label {
  font-family: var(--font-mono);
  /* taille relevée à 8px et tracking ramené à 0.12em : à 6.5px + 0.22em les "I"
     se rendaient comme des "Z" sur certains serif fallbacks (artefact rendu). */
  font-size: 8px;
  letter-spacing: 0.12em;
  fill: var(--terra-500);
  font-weight: 500;
}

/* ----- Arc trajet aérien (terra, tracé animé du pin vers Bédarrides) ----- */
.worldmap-arc {
  stroke: var(--terra-500);
  stroke-width: 1.2;
  stroke-linecap: round;
  fill: none;
  opacity: 0;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}
.worldmap-arc.is-visible { opacity: 0.75; }
@media (prefers-reduced-motion: reduce) {
  .worldmap-arc { transition: none !important; }
}

/* ----- Tooltip custom carte -----
   Cartouche clair (linen-50 + border subtile + ink-900 text) au lieu du ink-900 sombre.
   Cormorant italique. Anim Emil-compliant (transform-origin bottom center, cubic-bezier
   strong, durée 180ms, skip animation sur survols enchaînés). */
.worldmap-tooltip {
  position: absolute;
  left: 0; top: 0;
  transform: translate(-50%, calc(-100% - 12px)) scale(0.96);
  opacity: 0;
  pointer-events: none;
  z-index: 5;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
  max-width: 240px;
  padding: 5px 11px 6px;

  background: var(--linen-50);
  color: var(--ink-900);
  border: 1px solid color-mix(in oklab, var(--ink-900) 10%, transparent);

  box-shadow:
    0 4px 14px rgba(31, 28, 22, 0.12),
    0 1px 2px rgba(31, 28, 22, 0.07);

  transform-origin: 50% calc(100% + 10px);
  transition:
    opacity 180ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1);

  white-space: nowrap;
  text-align: center;
}
.worldmap-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 12px)) scale(1);
}
.worldmap-tooltip.is-instant { transition-duration: 0ms; }

/* Flèche pointant vers le pin : double layer pour border + remplissage cohérents */
.worldmap-tooltip::before,
.worldmap-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.worldmap-tooltip::before {
  width: 10px; height: 6px;
  background: color-mix(in oklab, var(--ink-900) 10%, transparent);
  top: calc(100% + 0px);
}
.worldmap-tooltip::after {
  width: 8px; height: 5px;
  background: var(--linen-50);
  top: 100%;
}

.worldmap-tooltip-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}

@media (prefers-reduced-motion: reduce) {
  .worldmap-tooltip { transition: opacity 80ms linear; transform: translate(-50%, calc(-100% - 16px)); }
  .worldmap-tooltip.is-visible { transform: translate(-50%, calc(-100% - 16px)); }
}

/* Pin focus state (accessibility, focus via tabindex) */
.worldmap-pins .pin-guest:focus,
.worldmap-pins .pin-home:focus { outline: none; }
.worldmap-pins .pin-guest:focus circle { fill: var(--terra-500); }

/* ----- Légende ----- */
.map-legend-wrap {
  margin-top: clamp(24px, 3vw, 40px);
}

/* ----- Liste des origines : Barlow Condensed, uppercase, tracking large ----- */
.worldmap-origins-wrap {
  margin-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(80px, 14vh, 168px);
}

.map-legend-wrap {
  margin-top: clamp(20px, 2.4vw, 32px);
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-600);
}
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.map-legend .swatch {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.map-legend .swatch-home  { background: var(--terra-500); }
.map-legend .swatch-guest { background: var(--ink-700); }

/* Liste des villes / pays sous la carte, Barlow Condensed uppercase tracking large */
.origins-inline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(12.5px, 1vw, 14.5px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--stone-600);
}
.origins-inline li {
  position: relative;
  padding-right: 28px;
  transition: color 200ms ease-out;
}
.origins-inline li::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  width: 4px;
  height: 1px;
  background: var(--stone-400);
}
.origins-inline li:last-child { padding-right: 0; }
.origins-inline li:last-child::after { content: none; }
.origins-inline li:hover { color: var(--ink-900); }

/* ============================================================================
   R4 (SEO audit 2026-06-04) — migration <div style="background-image"> vers
   <img>. Les classes ci-dessous remplacent le comportement cover/center qui
   était porté par le <div> + inline style. Les <img> apportent un alt, des
   dimensions intrinsèques (CLS minimisé) et l'indexabilité Google Images.
   ============================================================================ */

/* Hero pleine page (bloc CMS « hero ») — image en couche de fond,
   contenu posé au-dessus via .page-hero-inner z-index 2. */
.page-hero.has-image { position: relative; overflow: hidden; background: var(--ink-900); border-bottom: 0; }
.page-hero.has-image > img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; z-index: 0;
}
.page-hero.has-image::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 30% 95%, rgba(31,28,22,0.55) 0%, rgba(31,28,22,0) 60%),
    linear-gradient(180deg, rgba(31,28,22,0) 55%, rgba(31,28,22,0.35) 100%);
}
.page-hero.has-image .page-hero-inner { position: relative; z-index: 2; min-height: clamp(540px, 78vh, 780px); align-content: end; }
.page-hero.has-image h1, .page-hero.has-image .lede, .page-hero.has-image .page-hero-issue { text-shadow: 0 1px 24px rgba(31,28,22,0.45); }
.page-hero.has-image h1 { color: var(--linen-50); }
.page-hero.has-image h1 em { color: var(--sage-200); }
.page-hero.has-image .page-hero-issue { color: rgba(251,247,238,0.78); border-bottom-color: rgba(251,247,238,0.25); }
.page-hero.has-image .lede { color: rgba(251,247,238,0.92); }
.page-hero.has-image .btn { background: var(--linen-50); color: var(--ink-900); border-color: var(--linen-50); }
.page-hero.has-image .btn:hover { background: var(--sage-200); border-color: var(--sage-200); }
.page-hero.has-image .btn-ghost { background: transparent; color: var(--linen-50); border-color: rgba(251,247,238,0.55); }
.page-hero.has-image .btn-ghost:hover { background: var(--linen-50); color: var(--ink-900); border-color: var(--linen-50); }

/* Bloc CMS prose mode two-col-image-* : aside image 3/2 cover. */
img.prose-aside-img {
  aspect-ratio: 3/2;
  width: 100%; height: auto;
  object-fit: cover; object-position: center;
  display: block;
}

/* Bloc CMS piscine : bandeau panoramique 21/9 (large hero secondaire). */
img.piscine-banner {
  aspect-ratio: 21/9;
  width: 100%; height: auto;
  object-fit: cover; object-position: center;
  display: block;
  margin-top: clamp(32px, 4vw, 56px);
}

/* Pattern éditorial chambres (chambres.php + bloc cartes mode bb/villa) :
   .ch-room (grille texte+images, alterné via .alt) + .ch-room-images
   (1 big plein largeur + 2 sm portrait dessous) + meta typo (.ch-room-num,
   .ch-room-tagline, .ch-pills). Calqué sur l'inline de chambres.php pour
   harmoniser /chambres-d-hotes et /location-villa-provence. */
.ch-room {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.ch-room.alt { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
.ch-room.alt .ch-room-text { order: 2; }
.ch-room-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
/* Aspect 3/2 partout = iso source 1800×1200, zéro crop vertical. La hiérarchie
   tient à la taille (big plein largeur, sm demi-largeur), pas au ratio. */
.ch-room-images > img.big {
  grid-column: 1 / -1; aspect-ratio: 3/2;
  width: 100%; height: auto; object-fit: cover; object-position: center; display: block;
}
.ch-room-images > img.sm {
  aspect-ratio: 3/2;
  width: 100%; height: auto; object-fit: cover; object-position: center; display: block;
}
.ch-room-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--stone-500); text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: var(--hairline); padding-bottom: 14px; margin-bottom: 24px;
}
.ch-room-tagline {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--terra-500); text-transform: uppercase;
  margin: 0 0 14px;
}
.ch-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }
@media (max-width: 960px) {
  .ch-room, .ch-room.alt { grid-template-columns: 1fr; }
  .ch-room.alt .ch-room-text { order: 0; }
}

/* Cards villa (.room-card-x > img.img) */
.room-card-x { position: relative; }
.room-card-x > img.img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }

/* Section extérieurs (.ex-space-img). */
.ex-space { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px); align-items: center; }
.ex-space.alt > :first-child { order: 2; }
.ex-space > img.ex-space-img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
@media (max-width: 720px) { .ex-space { grid-template-columns: 1fr; } .ex-space.alt > :first-child { order: 0; } }

/* Bande de 3 photos en bas d'extérieurs */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.photo-strip > img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
@media (max-width: 720px) { .photo-strip { grid-template-columns: 1fr; } }

/* Plateau petit-déjeuner (chambres) */
.breakfast-layout > img.breakfast-img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }

/* Journal grid (cartes éditoriales) */
.journal-card { position: relative; }
.journal-card > img.img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.j-featured > img.img,
.j-card > img.img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.j-card.tall > img.img { aspect-ratio: 3 / 4; }
