:root {
  --navy: #1a2639;
  --navy-deep: #121a28;
  --navy-mid: #243352;
  --gold: #c5a059;
  --gold-light: #e4c77a;
  --gold-dark: #9a7a3c;
  --paper: #ede7dc;
  --paper-2: #e0d8cc;
  --paper-dark: #d4cbc0;
  --ink: #2a231c;
  --muted: #5c5349;
  --shadow: 0 16px 40px rgba(15, 22, 35, 0.2);
  --radius: 16px;
  --max: 1120px;
  /* Hauteur header sticky (topbar + nav) — ancres & lien d’évitement */
  --site-header-offset: clamp(100px, 18vw, 132px);
  /* Mobile : topbar compacte + barre nav (valeur pour ancres / scroll-padding) */
  --site-header-offset-mobile: clamp(92px, 24vw, 118px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-offset) + 10px);
}

body {
  margin: 0;
  font-family: Lora, Georgia, serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 600;
}

p {
  margin: 0 0 14px;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--gold-light);
  color: #1a1208;
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 14px;
  border-radius: 8px;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.skip-link:focus {
  clip-path: none;
  clip: auto;
  width: auto;
  height: auto;
  overflow: visible;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.navbar a:focus-visible,
.navbar button:focus-visible {
  outline-color: var(--gold-light);
}

/* ——— Texture navy ——— */
.texture-navy {
  background-color: var(--navy-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(197, 160, 89, 0.12), transparent 50%),
    linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 55%, #0f141f 100%);
  position: relative;
}

.texture-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 1;
}

.texture-navy > .container {
  position: relative;
  z-index: 1;
}

/* ——— Header site (sticky unique) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-top: 3px solid var(--gold-dark);
  box-shadow: 0 8px 28px rgba(5, 8, 14, 0.35);
  /* Évite que le contenu passe « sous » le header sur encoches iOS */
  padding-top: env(safe-area-inset-top, 0px);
}

/* ——— Topbar & nav ——— */
.topbar {
  background: #0d121c;
  color: #f0e6d4;
  font-size: 13px;
  font-family: Inter, system-ui, sans-serif;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 20px;
  flex-wrap: wrap;
  min-height: 0;
}

.topbar a {
  color: var(--gold-light);
  font-weight: 700;
}

.navbar {
  position: relative;
  z-index: 1;
  background: rgba(26, 38, 57, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  font-family: Inter, system-ui, sans-serif;
}

.navbar .container.navbar__bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 16px;
  padding: 12px 20px;
}

.nav-cta-desktop {
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f8eddc;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff8ee, #f0e6d8);
  border: 1px solid rgba(26, 38, 57, 0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.brand b {
  display: block;
  font-size: 16px;
  font-family: Inter, sans-serif;
}

.brand span {
  display: block;
  font-size: 11px;
  color: #c9b896;
  font-family: Inter, sans-serif;
}

.nav-links {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #e8dcc8;
  font-size: 14px;
  font-weight: 600;
}

.nav-links__primary,
.nav-links__secondary {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px 14px;
}

.nav-links__secondary {
  padding-left: 14px;
  margin-left: 12px;
  border-left: 1px solid rgba(197, 160, 89, 0.32);
  font-size: 13px;
  font-weight: 600;
}

.nav-links__secondary a {
  color: #d4c8ae;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links__secondary a:hover,
.nav-links__secondary a.active {
  color: var(--gold-light);
}

/* Burger & masquage du menu texte : avant tablette large pour éviter le « wrapping » illisible */
@media (max-width: 1140px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    margin-left: auto;
  }

  .navbar .cta-btn.nav-cta-desktop {
    display: none !important;
  }
}

.nav-toggle {
  display: none; /* visible via @media (max-width: 1140px) */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #f0e6d4;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: max(64px, calc(env(safe-area-inset-top, 0px) + 52px)) 16px 24px;
  padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
  background: rgba(8, 11, 18, 0.55);
  backdrop-filter: blur(4px);
}

.nav-panel.is-open {
  display: block;
}

.nav-panel__inner {
  max-width: 340px;
  margin-left: auto;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1e2d45, #141c2c);
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-panel__heading {
  margin: 0 0 8px;
  padding: 0 14px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.75);
}

.nav-panel__heading--sub {
  margin-top: 12px;
  color: rgba(232, 220, 200, 0.55);
}

.nav-panel__section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-panel__section--sub a {
  font-weight: 600;
  font-size: 15px;
}

.nav-panel__inner a {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #f0e6d4;
  padding: 12px 14px;
  border-radius: 10px;
}

.nav-panel__inner a:hover,
.nav-panel__inner a.active {
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-light);
}

.nav-panel__call {
  margin-top: 10px;
  text-align: center;
  background: linear-gradient(180deg, var(--gold-light), var(--gold)) !important;
  color: #1a1208 !important;
}

.nav-panel__call:hover {
  filter: brightness(1.05);
}

body.nav-open {
  overflow: hidden;
}

/* ——— Boutons ——— */
.cta-btn,
.primary-btn,
.phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1208;
  border-radius: 12px;
  padding: 14px 26px;
  font-weight: 800;
  font-size: 15px;
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(100, 75, 30, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover,
.primary-btn:hover,
.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(100, 75, 30, 0.4);
}

.primary-btn--xl {
  font-size: 16px;
  padding: 16px 32px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ——— Bannière arènes ——— */
.arena-banner {
  position: relative;
  z-index: 0;
  min-height: 220px;
  max-height: 380px;
  overflow: hidden;
}

.arena-banner__img {
  width: 100%;
  height: clamp(220px, 38vw, 320px);
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.92) brightness(0.88) contrast(1.05);
}

.arena-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 38, 57, 0.96) 0%,
    rgba(26, 38, 57, 0.5) 42%,
    rgba(26, 38, 57, 0.15) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px 0 26px;
}

.arena-banner__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 4.5vw, 34px);
  color: #fdf6e9;
  margin: 0 0 14px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.checklist-gold {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.checklist-gold li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #e8dcc8;
  margin-bottom: 8px;
  font-family: Lora, serif;
}

.checklist-gold .icon {
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.arena-banner__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, var(--navy-mid), var(--navy));
  color: var(--gold-light);
  padding: 14px 20px;
  border-radius: 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 600;
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: var(--shadow);
}

.arena-banner__phone:hover {
  border-color: var(--gold);
  color: #fff;
}

/* ——— Hero : parchemin = 1 calque continu (.hero-split__inner::before) + fondu photo par mask ——— */
.hero-split {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background-color: var(--paper);
  box-shadow: inset 0 -1px 0 rgba(42, 35, 28, 0.055);
  scroll-margin-top: var(--site-header-offset);
}

.hero-split__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(240px, 0.78fr);
  align-items: stretch;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Un seul fond rayé pour toute la grille : plus de décalage texte / image */
.hero-split__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--paper);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(90, 70, 50, 0.03) 2px,
      rgba(90, 70, 50, 0.03) 4px
    );
}

.hero-split__text {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(22px, 3.5vw, 40px) clamp(4px, 1.2vw, 12px) clamp(22px, 3.5vw, 40px) 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.2vw, 18px);
}

.hero-split__copy,
.hero-split__bottom {
  position: relative;
}

.hero-split__eyebrow {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--gold-dark);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.hero-split__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5.5vw, 48px);
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.hero-split__title-sub {
  display: block;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

@media (min-width: 640px) {
  .hero-split__title-sub {
    display: inline;
    font-size: 0.55em;
    margin-left: 0.15em;
  }
}

.hero-split__tagline {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--navy-mid);
  margin: 0 0 12px;
}

.hero-split__intro {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.6;
}

.hero-split__zones-inline {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}

.hero-split__services {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  align-items: stretch;
}

.hero-split__services li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  min-width: 0;
}

/* 5e ligne : pleine largeur (comme croquis client) */
.hero-split__services li.hero-split__services__wide {
  grid-column: 1 / -1;
}

.hero-split__ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(197, 160, 89, 0.3);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(42, 35, 28, 0.06);
  border: 1px solid rgba(154, 122, 60, 0.18);
}

@media (max-width: 520px) {
  .hero-split__services {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-split__services li.hero-split__services__wide {
    grid-column: auto;
  }
}

.hero-split__bottom {
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(90, 70, 50, 0.1);
}

.hero-split__navy-bar {
  margin: 0 0 12px;
  padding: 12px 16px;
  border-radius: 10px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 600;
  color: var(--gold-light);
  background: linear-gradient(90deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: var(--shadow);
}

.hero-split__phone-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 700;
  color: #1a1208;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 26px rgba(100, 75, 30, 0.32);
  border: 1px solid rgba(154, 122, 60, 0.35);
}

.hero-split__phone-big:hover {
  filter: brightness(1.03);
}

.hero-split__visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  /* Pas de chevauchement : évite de voir la photo sous la colonne texte (faux blanc / couture) */
  margin-left: 0;
}

/* Colonne image = même hauteur que le texte ; photo en cover (recadrage, pas d’étirement) */
.hero-split__feather {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
  background: transparent;
  box-shadow:
    -4px 0 20px rgba(45, 35, 25, 0.04),
    4px 0 20px rgba(45, 35, 25, 0.05);
}

.hero-split__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 38%;
  /* À gauche la photo devient transparente → on voit le MÊME parchemin rayé que sous le texte */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 10%,
    rgba(0, 0, 0, 0.65) 22%,
    #000 38%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 10%,
    rgba(0, 0, 0, 0.65) 22%,
    #000 38%,
    #000 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-split__photo--fallback {
  object-fit: contain;
  object-position: center center;
  padding: 16px;
  background: linear-gradient(160deg, #e8dfd6, #d4c9bc);
  -webkit-mask-image: none;
  mask-image: none;
}

/* ——— Section parchemin ——— */
main#contenu {
  scroll-margin-top: var(--site-header-offset);
}

section[id] {
  scroll-margin-top: calc(var(--site-header-offset) + 6px);
}

.section {
  padding: 52px 0;
  position: relative;
}

.section-paper {
  background-color: var(--paper);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(90, 70, 50, 0.03) 2px,
      rgba(90, 70, 50, 0.03) 4px
    );
}

.section-paper h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 14px;
}

.section-intro {
  color: var(--muted);
  font-size: 17px;
  max-width: 38rem;
  margin-bottom: 20px;
}

.section-intro--tight {
  margin-bottom: 12px;
}

/* FAQ (SEO — schema.org FAQPage ; même style qu’avant : papier, titres marine, accordéons + grille 2 col.) */
.faq-list {
  max-width: 40rem;
  margin-top: 8px;
}

.faq-list--accordion {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 8px;
  align-items: start;
}

@media (min-width: 768px) {
  .faq-list--accordion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
  }
}

.faq-item {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(90, 70, 50, 0.12);
  box-shadow: none;
  overflow: visible;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 0 14px;
  list-style: none;
  cursor: pointer;
  line-height: 1.3;
}

.faq-item .faq-item__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--navy);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid rgba(197, 160, 89, 0.45);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  margin-top: 2px;
  box-shadow: none;
}

.faq-item .faq-item__icon::before {
  content: "+";
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  font-family: Inter, system-ui, sans-serif;
}

.faq-item[open] .faq-item__icon::before {
  content: "−";
}

.faq-item__body {
  padding: 0 0 18px;
  border-top: none;
}

.faq-item__body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.faq-item__body a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item__body a:hover {
  color: var(--navy);
}

.faq-item__body strong {
  color: var(--ink);
}

.service-card__more {
  margin: 14px 0 0;
  font-size: 14px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
}

.service-card__more a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-card__more a:hover {
  color: var(--navy-mid);
}

.section--pull-up {
  padding-top: 28px;
}

.split-local {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 8px;
}

.highlight-navy-bar {
  background: linear-gradient(90deg, var(--navy-mid), var(--navy-deep));
  color: #f5efe4;
  padding: 16px 22px;
  border-radius: 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 2.2vw, 22px);
  text-align: center;
  margin: 22px 0;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: var(--shadow);
}

.address-pin {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
}

.address-pin .fa-location-dot {
  color: var(--gold-dark);
  margin-top: 4px;
}

.contact-inline-cta {
  margin-top: 16px;
}

.split-local__visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(197, 160, 89, 0.25);
  box-shadow: var(--shadow);
}

.map-embed-block {
  margin: 0;
}

.map-embed-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(197, 160, 89, 0.28);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  min-height: 240px;
  background: #d8cfc4;
}

.map-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

.map-embed-block__cap {
  margin: 12px 4px 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  font-family: Inter, sans-serif;
  line-height: 1.5;
}

.map-embed-block__cap a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-embed-block__cap a:hover {
  color: var(--navy);
}

/* ——— Titre section services ——— */
.services-head {
  text-align: center;
  margin-bottom: 28px;
}

.services-head h2 {
  margin-bottom: 8px;
}

.services-head p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* 5e carte : même largeur qu’une carte sur la grille 2 colonnes */
.services-grid--5 .service-card:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc((100% - 18px) / 2);
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.service-card {
  background: rgba(255, 252, 247, 0.85);
  border: 1px solid rgba(100, 80, 60, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(197, 160, 89, 0.2), rgba(154, 122, 60, 0.12));
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 15px;
}

.service-card__list {
  list-style: none;
  padding-left: 0;
}

.service-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 6px;
  font-size: 15px;
}

.service-card__list li:last-child {
  margin-bottom: 0;
}

.service-card__list li .service-card__li-ico {
  color: var(--gold-dark);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.85em;
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ——— Avis ——— */
.reviews-section h2 {
  text-align: center;
  margin-bottom: 8px;
}

.reviews-sub {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
}

.reviews-sub strong {
  color: var(--gold-dark);
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(100, 80, 60, 0.1);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(40, 30, 20, 0.08);
}

.review-card .stars {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  font-family: Inter, system-ui, sans-serif;
}

.review-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.review-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* ——— Contact final ——— */
.contact-final {
  text-align: center;
  padding: 48px 20px 56px;
}

.contact-final__inner {
  position: relative;
  z-index: 1;
}

.contact-final h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4vw, 38px);
  color: #fdf6e9;
  margin-bottom: 20px;
}

.contact-final__hint {
  color: #c9b8a4;
  margin: 0 0 18px;
  font-size: 16px;
}

.contact-final .big-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 600;
  color: #fff;
  padding: 12px 20px;
  border-radius: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-final .big-phone:hover {
  background: rgba(255, 255, 255, 0.06);
}

.contact-final .big-phone .fa-phone {
  color: var(--gold-light);
}

.big-phone__num {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

/* ——— Footer ——— */
.footer {
  background: #0d121c;
  color: #c9b896;
  padding: 28px 0 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #f1dfc0;
  margin-bottom: 10px;
}

.footer p,
.footer li,
.footer a {
  color: #b5a68c;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 6px;
}

.footer-copy {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #7d7365;
}

.footer-copy p {
  margin: 0 0 8px;
}

.footer-copy p:last-child {
  margin-bottom: 0;
}

.footer-credit {
  font-size: 12px;
  opacity: 0.92;
}

.footer-credit a {
  color: #c9a86a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit a:hover {
  color: #e4c992;
}

/* ——— Pages internes ——— */
.page-main {
  padding: 32px 0 48px;
}

.breadcrumb-nav {
  font-size: 14px;
  font-family: Inter, system-ui, sans-serif;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb-nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.breadcrumb-nav li:not(:last-child)::after {
  content: "·";
  margin-left: 6px;
  opacity: 0.55;
}

.breadcrumb-nav a {
  color: var(--gold-dark);
  font-weight: 700;
}

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

.page-card {
  background: rgba(255, 252, 247, 0.85);
  border: 1px solid rgba(100, 80, 60, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 42rem;
}

.page-card h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
  color: var(--navy);
}

.page-card p {
  color: var(--muted);
}

.page-card h2 {
  font-size: clamp(20px, 2.8vw, 26px);
  color: var(--navy);
  margin: 28px 0 12px;
}

.page-card h2:first-of-type {
  margin-top: 18px;
}

.back-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: Inter, sans-serif;
}

.back-link:hover {
  text-decoration: underline;
}

/* ——— Info bar (legacy / optional) ——— */
.info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 252, 247, 0.75);
  border: 1px solid rgba(100, 80, 60, 0.1);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.info-bar strong {
  display: block;
  font-size: 14px;
  font-family: Inter, sans-serif;
  margin-bottom: 4px;
  color: var(--navy);
}

.info-bar span,
.info-bar a {
  font-size: 14px;
  color: var(--muted);
}

.contact-band {
  background: linear-gradient(180deg, var(--navy-mid), var(--navy-deep));
  color: #f7eadb;
  text-align: center;
  padding: 36px 20px;
}

.contact-band h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: #f1dfc0;
  margin-bottom: 8px;
}

.contact-band p {
  color: #c9b8a4;
  font-size: 15px;
  margin-bottom: 16px;
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.sticky-call {
  position: fixed;
  right: max(12px, env(safe-area-inset-right, 0px));
  bottom: max(14px, env(safe-area-inset-bottom, 0px));
  z-index: 70;
}

.sticky-call a {
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 15px;
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: calc(var(--site-header-offset-mobile) + 8px);
  }

  section[id] {
    scroll-margin-top: calc(var(--site-header-offset-mobile) + 6px);
  }

  main#contenu {
    scroll-margin-top: var(--site-header-offset-mobile);
  }

  .hero-split {
    scroll-margin-top: var(--site-header-offset-mobile);
  }

  body {
    overflow-x: clip;
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  /* Topbar conservée : une ligne compacte (slogan tronqué + téléphone) */
  .topbar {
    font-size: 10px;
    line-height: 1.3;
  }

  .topbar .container {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
  }

  .topbar .container > span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar a {
    flex-shrink: 0;
    font-size: 11px;
    white-space: nowrap;
  }

  .navbar .container.navbar__bar {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    min-height: 0;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .brand b {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand span {
    font-size: 10px;
    line-height: 1.25;
    max-width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }

  /* Hero arènes : éviter que le bloc texte soit rogné en haut (overflow + typo plus serrée) */
  .arena-banner {
    overflow: visible;
  }

  .arena-banner__overlay {
    overflow: visible;
    padding: 14px 0 18px;
  }

  .arena-banner__title {
    font-size: clamp(17px, 4.2vw, 28px);
    margin-bottom: 10px;
  }

  .checklist-gold {
    margin-bottom: 12px;
  }

  .checklist-gold li {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .arena-banner__phone {
    padding: 12px 16px;
    font-size: clamp(16px, 3.8vw, 20px);
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: 36px 0;
  }

  .split-local {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-main {
    padding: 24px 0 40px;
  }

  .page-card {
    padding: 22px 18px;
  }

  .hero-split__inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .hero-split__text {
    box-shadow: none;
    padding: 20px 0 26px;
  }

  .hero-split__visual {
    margin-left: 0;
    padding: 16px 0 0;
    order: -1;
    max-width: 100%;
    align-self: stretch;
    min-height: 0;
  }

  .hero-split__feather {
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    min-height: 220px;
    max-height: min(46vh, 420px);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 28px rgba(45, 35, 25, 0.08);
  }

  .hero-split__photo {
    object-position: center 22%;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.25) 14%,
      rgba(0, 0, 0, 0.7) 28%,
      #000 44%,
      #000 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.25) 14%,
      rgba(0, 0, 0, 0.7) 28%,
      #000 44%,
      #000 100%
    );
  }

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

  .nav-panel {
    padding-top: max(48px, calc(env(safe-area-inset-top, 0px) + 44px));
  }

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

  .sticky-call {
    left: 12px;
    right: 12px;
  }

  .sticky-call a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid--5 .service-card:last-child {
    width: 100%;
    justify-self: stretch;
  }

  .arena-banner__img {
    height: 200px;
  }
}

/* ——— Bloc tarifs (accueil + page dédiée) ——— */
.tarifs-teaser {
  max-width: 40rem;
  margin: 0 auto;
}

.tarifs-teaser__intro {
  color: var(--muted);
  margin-bottom: 1rem;
}

.tarifs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.tarifs-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(100, 80, 60, 0.1);
  font-size: 15px;
}

.tarifs-list li .tarifs-list__ico {
  color: var(--gold-dark);
  flex-shrink: 0;
  width: 1.15em;
  text-align: center;
}

.icon-list {
  list-style: none;
  padding-left: 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.icon-list li:last-child {
  margin-bottom: 0;
}

.icon-list .icon-list__ico {
  color: var(--gold-dark);
  margin-top: 4px;
  flex-shrink: 0;
}

.tarifs-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 1rem;
  padding: 12px 14px;
  background: rgba(180, 140, 60, 0.08);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold-dark);
}

.boutique-prose .lead {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.boutique-prose h2 {
  margin-top: 1.75rem;
  font-size: 1.35rem;
}

.boutique-prose ul:not(.icon-list) {
  padding-left: 1.2rem;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-toggle__bar {
    transition: none;
  }
}

