/* ==========================================================================
   Kérol — Gîte Les Angles (Pyrénées)
   Mobile-first, responsive, accessible. Pas de JS requis.

   Audit (contraste, typo, rythme) :
   1) Contraste : --muted passé à #b5aca2 (AA) ; --text-soft #c8c2b8 pour lead/paras.
   2) Hero : overlay renforcé (0.35→0.95) ; .lead en text-soft + text-shadow.
   3) Chips/tags : .tag et .pill en --text-sm (0.9375rem), padding augmenté.
   4) Colonne droite hero : .kpis / tags / .note séparés par bordures + marges ; 1er et 2e .kpi en accent (bordure + fond léger).
   5) Rythme : section margin-top 2.5rem ; section-card padding 2rem ; titres/paras espacés via --space-*.
   ========================================================================== */

:root {
  /* Surfaces — crème chaude, papier naturel */
  --bg: #f2ece0;
  --card: #faf6ee;
  --card-warm: #f5efe3;
  --line: #ddd4c2;

  /* Texte — encre brune, pas de noir froid */
  --text: #261e12;
  --text-soft: #4a3c2a;
  --muted: #7a6a54;
  --muted-subtle: #a0906f;

  /* Accents — doré plus soutenu sur fond clair, cuivré chaleureux */
  --accent: #b8860b;
  --accent-glow: rgba(184, 134, 11, 0.15);
  --accent2: #a0522d;
  --accent2-glow: rgba(160, 82, 45, 0.12);
  --accent3: #4a7a50;
  --danger: #a03030;

  /* Ombres portées chaudes (teinte sépia) */
  --shadow: 0 8px 32px rgba(60, 40, 15, 0.14), 0 2px 8px rgba(60, 40, 15, 0.08);
  --shadow-sm: 0 3px 12px rgba(60, 40, 15, 0.1);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1100px;

  /* Typo */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --text-base: 1.0625rem;
  --text-sm: 0.9375rem;
  --text-xs: 0.875rem;
  --lead-size: 1.075rem;
  --line-body: 1.68;
  --line-tight: 1.2;
  --h1-size: clamp(1.875rem, 5.5vw, 3rem);
  --h2-size: 1.625rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;

  --focus-ring: 2px solid var(--accent);
  --focus-offset: 2px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-optical-sizing: auto;
  line-height: var(--line-body);
  color: var(--text);
  background:
    radial-gradient(900px 600px at 85% 0%, rgba(184, 134, 11, 0.08), transparent 55%),
    radial-gradient(700px 500px at 0% 50%, rgba(160, 82, 45, 0.07), transparent 50%),
    radial-gradient(500px 350px at 50% 100%, rgba(74, 122, 80, 0.06), transparent 45%),
    var(--bg);
}

/* Léger grain pour effet chalet / papier */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.045;
  mix-blend-mode: multiply;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.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;
}

/* Skip link (accessibilité clavier) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--card);
  color: var(--accent);
  font-weight: 600;
  border: 1px solid rgba(184, 134, 11, 0.45);
}
.skip-link:focus {
  left: 0;
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* Focus visible (accessibilité) */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* Liens */
a {
  color: inherit;
  text-decoration: none;
}

a.underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Layout (mobile : padding confortable pour la lecture) */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1rem;
}

/* ==========================================================================
   Header (sticky)
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 236, 224, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
  box-shadow: 0 1px 20px rgba(60, 40, 15, 0.1);
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
}

.brand span {
  font-size: var(--text-sm);
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

nav a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 106, 84, 0.3);
  background: rgba(250, 246, 238, 0.7);
}

nav a:hover {
  color: var(--text);
  border-color: rgba(184, 134, 11, 0.5);
  background: rgba(184, 134, 11, 0.07);
}

/* CTA (cible tactile ≥ 44px) — accent miel */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.625rem 1.125rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 168, 50, 0.65);
  background: rgba(212, 168, 50, 0.14);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  background: rgba(212, 168, 50, 0.24);
  border-color: rgba(212, 168, 50, 0.85);
  box-shadow: 0 0 18px rgba(212, 168, 50, 0.15);
}

.cta.secondary {
  border-color: rgba(184, 115, 74, 0.45);
  background: rgba(184, 115, 74, 0.1);
}

.cta.secondary:hover {
  background: rgba(184, 115, 74, 0.2);
  border-color: rgba(184, 115, 74, 0.65);
  box-shadow: 0 0 18px rgba(184, 115, 74, 0.12);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(30, 22, 12, 0.75), rgba(30, 22, 12, 0.5));
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(520px 320px at 88% 18%, rgba(255, 210, 140, 0.18), rgba(255, 210, 140, 0) 60%),
    radial-gradient(900px 520px at 78% 18%, rgba(0,0,0,0.06), rgba(0,0,0,0.42) 70%),
    linear-gradient(180deg,
      rgba(26, 22, 18, 0.10) 0%,
      rgba(26, 22, 18, 0.32) 45%,
      rgba(26, 22, 18, 0.80) 100%
    );
}


.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: relative;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  height: 100%;
  justify-content: flex-end;
  color: #f0ece4;
}

.hero-content h1 {
  color: #f0ece4;
}

.hero-content .lead {
  color: rgba(240, 236, 228, 0.88);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.pill {
  display: inline-flex;
  gap: var(--space-sm);
  align-items: center;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  background: rgba(38, 30, 18, 0.82);
  border: 1px solid rgba(184, 134, 11, 0.35);
  width: fit-content;
  color: rgba(242, 236, 224, 0.9);
  font-size: var(--text-sm);
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--h1-size);
  font-weight: 700;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: var(--line-tight);
}

.lead {
  margin: 0;
  color: var(--text-soft);
  font-size: var(--lead-size);
  line-height: var(--line-body);
  max-width: 52ch;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.hero-actions .cta {
  background: rgba(184, 134, 11, 0.75);
  border-color: rgba(240, 220, 150, 0.6);
  color: #f5f0e4;
  backdrop-filter: blur(6px);
}

.hero-actions .cta:hover {
  background: rgba(184, 134, 11, 0.9);
  box-shadow: 0 0 18px rgba(184, 134, 11, 0.3);
}

.hero-actions .cta.secondary {
  background: rgba(38, 30, 18, 0.6);
  border-color: rgba(240, 236, 224, 0.35);
  color: rgba(240, 236, 224, 0.9);
}

.hero-actions .cta.secondary:hover {
  background: rgba(38, 30, 18, 0.78);
  border-color: rgba(240, 236, 224, 0.55);
  box-shadow: none;
}

/* Info card — hiérarchie : bloc KPIs / bloc tags / note */
.info-card {
  background: linear-gradient(160deg, #faf6ee 0%, #f5efe3 100%);
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-card .kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.info-card .kpi {
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 134, 11, 0.18);
  background: rgba(255, 255, 255, 0.55);
}

.info-card .kpi:first-child,
.info-card .kpi:nth-child(2) {
  border-color: rgba(184, 134, 11, 0.4);
  background: rgba(184, 134, 11, 0.07);
  box-shadow: inset 0 1px 0 rgba(184, 134, 11, 0.1);
}

.info-card .kpi strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  color: var(--text);
}

.info-card .kpi span {
  display: block;
  color: var(--muted);
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
}

.info-card .kpi span {
  display: block;
  color: var(--muted);
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
}

.info-card > div:not(.kpis):not(.note) {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(61, 54, 45, 0.5);
  margin-bottom: var(--space-md);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 134, 11, 0.28);
  background: rgba(184, 134, 11, 0.07);
  color: var(--text-soft);
  font-size: var(--text-sm);
  margin: var(--space-xs) var(--space-xs) 0 0;
}

.info-card .note {
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 122, 122, 0.45);
  background: rgba(201, 122, 122, 0.08);
  color: var(--text-soft);
  font-size: var(--text-sm);
  line-height: var(--line-body);
  margin-top: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(61, 54, 45, 0.5);
}

/* ==========================================================================
   Sections
   ========================================================================== */
section {
  margin-top: var(--space-2xl);
}

.section-card {
  background: linear-gradient(160deg, #faf6ee 0%, #f5efe3 100%);
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: var(--radius);
  padding: var(--space-xl) var(--space-md);
  box-shadow: var(--shadow);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
  border-color: rgba(184, 134, 11, 0.32);
  box-shadow: var(--shadow), 0 0 0 3px rgba(184, 134, 11, 0.04);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-title h2 {
  margin: 0 0 var(--space-xs) 0;
  font-family: var(--font-display);
  font-size: var(--h2-size);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--line-body);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.section-card .grid-2 p {
  font-size: var(--text-base);
  line-height: var(--line-body);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.list {
  margin: var(--space-sm) 0 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--line-body);
}

.list li {
  margin: var(--space-xs) 0;
}

/* ==========================================================================
   Galerie (25 slots)
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.gallery .ph {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 11, 0.2);
  background: rgba(184, 134, 11, 0.05);
  min-height: 140px;
  position: relative;
  display: block;
  min-width: 44px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery .ph:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(184, 134, 11, 0.5);
  box-shadow: 0 10px 28px rgba(60, 40, 15, 0.22);
}

.gallery .ph img {
  transition: transform 0.4s ease;
}

.gallery .ph:hover img {
  transform: scale(1.04);
}

.gallery .ph picture {
  position: absolute;
  inset: 0;
  display: block;
}

.gallery .ph picture img,
.gallery .ph img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
}

.gallery .ph span {
  position: absolute;
  left: var(--space-sm);
  bottom: var(--space-sm);
  font-size: var(--text-xs);
  color: rgba(242, 236, 224, 0.92);
  background: rgba(38, 30, 18, 0.82);
  border: 1px solid rgba(184, 134, 11, 0.3);
  padding: 0.375rem 0.5rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.gallery .ph:focus-visible,
.modal-close:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* ==========================================================================
   Tableaux tarifs
   ========================================================================== */
.tarifs-wrap {
  margin-top: 0.75rem;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 11, 0.2);
}

th,
td {
  text-align: left;
  padding: var(--space-md) 0.75rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.12);
  color: var(--muted);
  vertical-align: top;
  font-size: var(--text-sm);
}

th {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  background: rgba(184, 134, 11, 0.08);
}

tr:nth-child(even) td {
  background: rgba(184, 134, 11, 0.03);
}

tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   Contact & Respect du lieu
   ========================================================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
}

.contact .box {
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 16px;
  background: linear-gradient(160deg, #faf6ee 0%, #f5efe3 100%);
  padding: 1rem;
  transition: border-color 0.2s ease;
}

.contact .box h3 {
  margin: 0 0 var(--space-sm) 0;
  font-size: var(--text-base);
}

.small {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--line-body);
  margin: var(--space-sm) 0 0 0;
}

.respect-card {
  border: 1px solid rgba(160, 48, 48, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(160, 48, 48, 0.05);
  padding: var(--space-md);
  margin-top: var(--space-lg);
}

.respect-card h3 {
  margin: 0 0 var(--space-sm) 0;
  font-size: var(--text-base);
}

.respect-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: var(--text-sm);
  line-height: var(--line-body);
}

/* FAQ */
details {
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
  padding: var(--space-md) var(--space-md);
  margin-top: var(--space-sm);
  transition: border-color 0.2s ease, background 0.2s ease;
}

details[open],
details:hover {
  border-color: rgba(184, 134, 11, 0.35);
  background: rgba(255, 255, 255, 0.75);
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  font-size: var(--text-sm);
}

details p {
  color: var(--muted);
  margin: var(--space-sm) 0 0 0;
  font-size: var(--text-sm);
  line-height: var(--line-body);
}

/* Footer */
footer {
  margin: var(--space-2xl) 0 var(--space-lg);
  color: var(--muted);
  font-size: var(--text-sm);
  text-align: center;
}

/* ==========================================================================
   Breakpoint 768px
   ========================================================================== */
@media (min-width: 768px) {
  .wrap {
    padding: 1.5rem;
  }

  .topbar {
    padding: 1rem 1.5rem;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .hero-card {
    min-height: 420px;
  }

  .hero-content {
    padding: 1.5rem 1.5rem;
  }

  .info-card {
    padding: 1.25rem;
  }

  .section-card {
    padding: 1.25rem;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .gallery .ph {
    min-height: 160px;
  }

  .gallery .ph img {
    min-height: 160px;
  }

  .contact {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Breakpoint 1280px
   ========================================================================== */
@media (min-width: 1280px) {
  .wrap {
    padding: 1.5rem 2rem;
  }

  .hero-actions {
    margin-top: 0.75rem;
  }

  .gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }

  .gallery .ph {
    min-height: 170px;
  }

  .gallery .ph img {
    min-height: 170px;
  }
}

/* ==========================================================================
   Modal galerie (photo 750×500)
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}

.modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 30, 18, 0.88);
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(242, 236, 224, 0.3);
  border-radius: 999px;
  background: rgba(38, 30, 18, 0.9);
  color: rgba(242, 236, 224, 0.9);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(38, 30, 18, 0.75);
  border-color: rgba(242, 236, 224, 0.5);
}

.modal-img {
  position: relative;
  z-index: 1;
  display: block;
  margin: auto;
  max-width: 750px;
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 54, 45, 0.5);
  box-shadow: var(--shadow);
}

@media (max-width: 820px) {
  .modal-img {
    max-width: 100%;
    max-height: 80vh;
  }
}

/* ==========================================================================
   Animations d'entrée — scroll reveal via animation-timeline (progressive)
   ========================================================================== */
@keyframes fade-up {
  from {
    opacity: 0;
    translate: 0 1.5rem;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    section {
      animation: fade-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 25%;
    }
  }
}

/* Accentuation de l'accent doré dans la nav active et CTA */
nav a:hover {
  background: rgba(201, 162, 39, 0.08);
}


/* Lead strong — Playfair italic pour la chaleur éditoriale */
.lead strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-optical-sizing: auto;
}

/* Filet doré discret sous les titres de section */
.section-title h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  opacity: 0.5;
  margin-top: 0.5rem;
  border-radius: 1px;
}

/* KPI hover */
.info-card .kpi {
  transition: border-color 0.2s ease, background 0.2s ease;
}

.info-card .kpi:hover {
  border-color: rgba(184, 134, 11, 0.5);
  background: rgba(184, 134, 11, 0.1);
}

/* Pill — sombre sur fond clair pour contraste lisible */
.pill {
  background: rgba(38, 30, 18, 0.84);
  border-color: rgba(184, 134, 11, 0.4);
}

/* Contact box hover */
.contact .box:hover {
  border-color: rgba(212, 168, 50, 0.38);
}
