/* ==========================================================================
   Tag Brussels — charte "Cible" (couleurs du logo et des illustrations :
   orange saumon, bleu acier, marine en texte). Tokens OKLCH centralisés :
   modifier UNE variable re-thème tout le site. Mobile-first.
   ========================================================================== */
:root {
  /* Couleurs de marque */
  --navy: oklch(0.30 0.06 250);           /* #16324a : titres et texte (typo du logo) */
  --steel: oklch(0.63 0.065 245);          /* #4a7fae : bleu des illustrations, surfaces et CTA bleus */
  --steel-strong: oklch(0.55 0.075 245);   /* hover bleu */
  --steel-deep: oklch(0.63 0.065 245);     /* fonds bleus soutenus (bandeaux, footer) */
  --orange: oklch(0.72 0.11 45);          /* #e08050 : accent principal */
  --orange-strong: oklch(0.65 0.13 40);   /* hover orange */
  --orange-pale: oklch(0.94 0.035 55);    /* fonds orange pâle (pills) */
  --blue-pale: oklch(0.975 0.008 240);    /* fonds bleu pâle : alternance de sections */
  --blue-border: oklch(0.90 0.025 242);   /* bordures */
  --white: oklch(1 0 0);
  --ink: var(--navy);
  --ink-soft: oklch(0.44 0.03 250);

  /* Typo : police système, norme marketing (16-18px de base) */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-sm: 1rem;                          /* 16px */
  --fs-base: 1.0625rem;                   /* 17px mobile */
  --fs-lg: 1.25rem;                       /* 20px */
  --fs-xl: clamp(1.6rem, 4vw, 2.1rem);    /* h2 : 26-34px */
  --fs-2xl: clamp(2rem, 5vw, 2.9rem);     /* h1 : 32-46px */
  --fs-hero: clamp(2rem, 5.5vw, 3.1rem);

  /* Forme : Soft UI, ombres douces */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 10px oklch(0.3 0.05 250 / 0.08), 0 1px 3px oklch(0.3 0.05 250 / 0.06);
  --shadow-lg: 0 12px 32px oklch(0.3 0.05 250 / 0.16);
  --container: 72rem;
  --section-y: clamp(2.5rem, 6vw, 4.5rem);
}
@media (min-width: 861px) {
  :root { --fs-base: 1.125rem; }          /* 18px desktop */
}

/* Reset minimal */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--steel-strong); }
h1, h2, h3 { line-height: 1.2; color: var(--navy); text-wrap: balance; }
h1 { font-size: var(--fs-2xl); margin: 0 0 0.6em; }
h2 { font-size: var(--fs-xl); margin: 0 0 0.8em; }
h3 { font-size: var(--fs-lg); margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: var(--section-y); }
.section-alt { background: var(--blue-pale); }
.section-pale { background: var(--blue-pale); }
.section-dark { background: var(--steel-deep); color: oklch(0.96 0.01 245); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--white); padding: 0.5rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }

/* Boutons : tap targets >= 44px */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  font-size: calc(var(--fs-base) * 1.07);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-strong); }
.btn-secondary { background: var(--steel); color: var(--white); }
.btn-secondary:hover { background: var(--steel-strong); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 1rem 2.2rem; font-size: var(--fs-lg); }

/* ------------------------------ Header : fond blanc, logo complet ------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  box-shadow: var(--shadow);
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; min-height: 4.5rem; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 132px; height: auto; }
.site-nav { margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: var(--navy); text-decoration: none; font-weight: 600; font-size: var(--fs-sm); }
.nav-menu a:hover, .nav-menu a[aria-current] { color: var(--orange-strong); }
.nav-menu .btn, .nav-menu a.btn[aria-current] { color: var(--white); font-size: var(--fs-sm); padding: 0.6rem 1.35rem; min-height: 0; }
.nav-menu a.btn[aria-current] { background: var(--orange-strong); }
.nav-menu .btn:hover { color: var(--white); }
.header-phone { color: var(--navy); text-decoration: none; font-weight: 700; font-size: var(--fs-sm); white-space: nowrap; }
.header-phone:hover { color: var(--orange-strong); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.6rem; min-width: 44px; min-height: 44px; }
.nav-toggle-bar { display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }

@media (max-width: 860px) {
  .header-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    padding: 0.5rem 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-top: 1px solid var(--blue-border); }
  .nav-menu a { display: block; padding: 0.9rem 0.25rem; font-size: var(--fs-base); }
  .nav-menu .nav-cta { border: 0; padding-top: 0.9rem; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) 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(-7.5px) rotate(-45deg); }
}

/* ------------------------------ Hero : bandeau bas ------------------------------ */
.hero { position: relative; isolation: isolate; color: var(--white); min-height: 400px; display: flex; align-items: center; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, oklch(0.28 0.05 250 / 0.5), oklch(0.28 0.05 250 / 0.78));
}
.hero-content { width: 100%; padding-block: clamp(1.5rem, 3vw, 2.5rem); text-align: center; }
.hero h1 { color: var(--white); font-size: var(--fs-hero); margin-bottom: 0.3em; }
.hero .tagline { font-size: var(--fs-sm); max-width: 46rem; margin-inline: auto; margin-bottom: 0.4em; }
.hero-cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-top: 0.9rem; }
.hero-badges { display: flex; gap: 0.4rem 1.3rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; padding: 0; list-style: none; font-size: var(--fs-sm); font-weight: 600; }
.hero-badges li::before { content: "✓ "; color: var(--orange); font-weight: 800; }
@media (min-width: 861px) { .hero .tagline { font-size: var(--fs-base); } }

/* ------------------------------ Cartes infos clés ------------------------------ */
.key-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
@media (min-width: 640px) { .key-facts { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .key-facts { grid-template-columns: repeat(6, 1fr); } }
.key-fact { background: var(--white); border: 1px solid var(--blue-border); border-radius: var(--radius); padding: 1.2rem 1rem; text-align: center; box-shadow: var(--shadow); }
.key-fact .kf-value { display: block; font-size: 1.45rem; font-weight: 800; color: var(--orange-strong); }
.key-fact .kf-label { font-size: var(--fs-sm); color: var(--ink-soft); }

/* ------------------------------ Cartes activités ------------------------------ */
.activity-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .activity-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); } }
.activity-card { background: var(--white); border: 1px solid var(--blue-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.activity-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.activity-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.activity-body .btn { margin-top: auto; align-self: flex-start; }

/* Desktop : centrer les boutons isolés (cartes activité + CTA seuls dans un paragraphe) */
@media (min-width: 861px) {
  .activity-body .btn { align-self: center; }
  p:has(> .btn:only-child) { text-align: center; }
}

/* ------------------------------ Tarifs : cartes uniformes ------------------------------ */
.pricing-intro { max-width: 46rem; }
.pricing-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  border: 1px solid var(--blue-border);
  position: relative;
}
.price-card .pc-illustration {
  width: 84px; height: auto;
  position: absolute; top: 1rem; right: 1.1rem;
}
.price-card .pc-activity { font-size: var(--fs-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel); margin: 0; }
.price-card h3 { margin: 0.2rem 0 0; padding-right: 90px; }
.price-card .pc-price { font-size: 2.1rem; font-weight: 800; color: var(--orange-strong); margin: 0.4rem 0 0.1rem; }
.price-card .pc-price small { font-size: var(--fs-sm); font-weight: 600; color: var(--ink-soft); }
.price-card ul { list-style: none; padding: 0; margin: 1rem 0 1.4rem; }
.price-card li { padding: 0.4rem 0 0.4rem 1.6rem; position: relative; font-size: var(--fs-sm); border-top: 1px dashed var(--blue-border); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.price-card .btn { margin-top: auto; }
.pricing-note { font-size: var(--fs-sm); color: var(--ink-soft); }

/* ------------------------------ Sections images/texte ------------------------------ */
.split { display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 800px) { .split { grid-template-columns: 1fr 1fr; gap: 2.5rem; } .split.reverse > .split-media { order: 2; } }
.split.split-top { align-items: start; }
.split-media img, .split-media iframe { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }

/* ------------------------------ FAQ ------------------------------ */
.faq { max-width: 50rem; margin-inline: auto; }
.faq details { background: var(--white); border: 1px solid var(--blue-border); border-radius: var(--radius-sm); margin-bottom: 0.8rem; box-shadow: var(--shadow); overflow: hidden; }
.faq summary { padding: 1.1rem 3rem 1.1rem 1.3rem; font-weight: 700; cursor: pointer; list-style: none; position: relative; min-height: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--orange); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-a { padding: 0 1.3rem 1.2rem; }

/* ------------------------------ Bandeau CTA ------------------------------ */
.cta-banner { text-align: center; }
.cta-banner p { max-width: 40rem; margin-inline: auto; }

/* ------------------------------ Formulaires ------------------------------ */
.form-grid { display: grid; gap: 1rem; max-width: 40rem; }
label { font-weight: 700; font-size: var(--fs-sm); display: block; margin-bottom: 0.3rem; }
input, select, textarea {
  width: 100%; padding: 0.8rem 0.95rem; border: 1.5px solid var(--blue-border);
  border-radius: var(--radius-sm); font: inherit; background: var(--white);
  min-height: 44px;
}
input:focus, select:focus, textarea:focus { outline: 3px solid var(--orange); outline-offset: 0; border-color: transparent; }

/* ------------------------------ Coordonnées avec icônes SVG ------------------------------ */
.contact-list { display: grid; gap: 1rem; padding: 0; margin: 0 0 1.5rem; list-style: none; }
.contact-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-item .ci-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue-pale); color: var(--steel-strong);
}
.contact-item .ci-icon svg { width: 22px; height: 22px; }
.contact-item .ci-label { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.contact-item p { margin: 0; }

/* ------------------------------ Footer ------------------------------ */
.site-footer { background: var(--steel-deep); color: var(--white); }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--orange); text-decoration: underline; }
.footer-top {
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: space-between;
  padding-block: 1.5rem; border-bottom: 1px solid oklch(0.72 0.05 245);
}
.footer-brand-row { display: flex; align-items: center; gap: 0.9rem; }
.footer-logo-card { padding: 0; }
.footer-logo-card img { width: 150px; height: auto; }
.footer-baseline { margin: 0; font-size: var(--fs-sm); color: var(--white); max-width: 26rem; }
.footer-grid { display: grid; gap: 1.75rem; grid-template-columns: 1fr; padding-block: 2.25rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-title { font-size: var(--fs-base); font-weight: 800; color: var(--white); margin: 0 0 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 0.3rem 0; }
.footer-contact p { margin: 0 0 0.55rem; }
.footer-contact .fc-label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: oklch(0.3 0.06 250 / 0.75); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; padding-block: 1.25rem; border-top: 1px solid oklch(0.72 0.05 245); font-size: var(--fs-sm); color: var(--white); }
.footer-bottom p { margin: 0; }

/* ------------------------------ Breadcrumb / tableaux / divers ------------------------------ */
.breadcrumb { font-size: var(--fs-sm); padding-top: 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 0.4rem; color: var(--ink-soft); }
.table-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; background: var(--white); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); }
th, td { padding: 0.8rem 1rem; text-align: left; border-bottom: 1px solid var(--blue-border); font-size: var(--fs-sm); }
th { background: var(--steel-deep); color: var(--white); }

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.lead { font-size: var(--fs-lg); }
.pill { display: inline-block; background: var(--orange-pale); color: var(--orange-strong); border-radius: 999px; padding: 0.3rem 0.95rem; font-size: var(--fs-sm); font-weight: 700; }

/* ------------------------------ Widget réservation ------------------------------ */
.bk-step { margin-top: 1.75rem; }
.bk-step-title { font-weight: 800; font-size: var(--fs-lg); color: var(--navy); margin: 0 0 0.7rem; }
.bk-choices { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.bk-choice {
  font: inherit; font-weight: 700; cursor: pointer;
  padding: 0.75rem 1.4rem; min-height: 44px;
  border: 2px solid var(--blue-border); border-radius: var(--radius-sm);
  background: var(--white); color: var(--navy);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.bk-choice:hover { border-color: var(--steel); transform: translateY(-1px); }
.bk-choice.on { border-color: var(--orange); background: var(--orange-pale); }
.bk-formule { display: grid; gap: 0.15rem; text-align: left; min-width: 170px; }
.bk-formule span { color: var(--orange-strong); font-weight: 800; }
.bk-formule small { color: var(--ink-soft); font-weight: 500; }
.bk-cal-head { display: flex; align-items: center; justify-content: space-between; max-width: 26rem; margin-bottom: 0.6rem; }
.bk-nav { font: inherit; font-size: 1.5rem; line-height: 1; cursor: pointer; border: 0; background: var(--blue-pale); color: var(--navy); border-radius: 10px; width: 44px; height: 44px; }
.bk-nav:hover { background: var(--blue-border); }
.bk-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.3rem; max-width: 26rem; }
.bk-cal-dow { text-align: center; font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; }
.bk-day {
  font: inherit; aspect-ratio: 1; border-radius: 10px; border: 0;
  background: var(--blue-pale); color: oklch(0.65 0.02 250); cursor: default;
}
.bk-day.free { background: var(--white); border: 2px solid var(--steel); color: var(--navy); font-weight: 700; cursor: pointer; }
.bk-day.free:hover { background: var(--blue-pale); }
.bk-day.on { background: var(--orange); border-color: var(--orange); color: var(--white); }
.bk-legend { font-size: var(--fs-sm); color: var(--ink-soft); margin-top: 0.6rem; }
.bk-dot { display: inline-block; width: 0.9em; height: 0.9em; border: 2px solid var(--steel); border-radius: 4px; vertical-align: -0.1em; }
.bk-slots .bk-choice { min-width: 84px; }
.bk-recap { background: var(--blue-pale); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; }
.bk-status { color: var(--danger, oklch(0.55 0.2 25)); font-weight: 600; min-height: 1.4em; }
.bk-notice { background: var(--orange-pale); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; font-weight: 600; }
.bk-loading { color: var(--ink-soft); font-size: var(--fs-sm); }

/* Icônes SVG dans les cartes infos (page merci) */
.key-fact .kf-icon { display: grid; place-items: center; margin-bottom: 0.4rem; }
.key-fact .kf-icon svg { width: 30px; height: 30px; color: var(--steel-strong); }

/* Sélecteur de langue : bouton + menu déroulant */
.lang-switch { position: relative; font-size: var(--fs-sm); font-weight: 700; }
.ls-btn {
  font: inherit; font-weight: 700; color: var(--navy); background: var(--blue-pale);
  border: 1.5px solid var(--blue-border); border-radius: 10px; cursor: pointer;
  padding: 0.45rem 0.7rem; min-height: 40px; display: inline-flex; align-items: center; gap: 0.35rem;
}
.ls-btn:hover { border-color: var(--steel); }
.ls-caret { font-size: 0.8em; color: var(--steel-strong); }
.ls-menu {
  position: absolute; right: 0; top: calc(100% + 6px); z-index: 60;
  list-style: none; margin: 0; padding: 0.3rem;
  background: var(--white); border: 1.5px solid var(--blue-border); border-radius: 10px;
  box-shadow: var(--shadow-lg); min-width: 72px;
}
.ls-menu a { display: block; padding: 0.5rem 0.9rem; color: var(--navy); text-decoration: none; border-radius: 7px; text-align: center; }
.ls-menu a:hover { background: var(--blue-pale); color: var(--orange-strong); }
@media (max-width: 860px) { .site-header .lang-switch { margin-left: auto; margin-right: 0.5rem; } .site-nav { margin-left: 0; } }

/* Checkbox facture (widget résa) */
.bk-check { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; cursor: pointer; }
.bk-check input { width: 20px; height: 20px; min-height: 0; accent-color: var(--orange); }

/* ------------------------------ Blog ------------------------------ */
.blog-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 2rem; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); } }
.post-card .post-date { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0 0 0.2rem; }
.post-card .post-title { font-size: var(--fs-lg); margin: 0 0 0.5rem; }
.post-card .post-title a { color: var(--navy); text-decoration: none; }
.post-card .post-title a:hover { color: var(--orange-strong); }
.article { max-width: 46rem; margin-inline: auto; }
.article .post-date { font-size: var(--fs-sm); color: var(--ink-soft); }
.article-hero { border-radius: var(--radius); box-shadow: var(--shadow-lg); margin: 1.25rem 0 1.75rem; }
.article h2 { margin-top: 1.8em; }
.article h3 { margin-top: 1.4em; }
.article ul li, .article ol li { margin-bottom: 0.35rem; }
.article-cta {
  background: var(--blue-pale); border: 1px solid var(--blue-border); border-radius: var(--radius);
  padding: 1.5rem; margin-block: 2.25rem; text-align: center;
}
.article-cta p { max-width: none; }
.article table { margin-block: 1rem; }

/* Widget de réservation : contenu centré */
.bk { text-align: center; }
.bk-step-title { text-align: center; }
.bk-choices { justify-content: center; }
.bk-formule { text-align: left; }
.bk-cal, .bk-cal-head { margin-inline: auto; }
.bk-form { margin-inline: auto; text-align: left; }
.bk-form .btn { justify-self: center; }
.bk-recap { max-width: 46rem; margin-inline: auto; }
.bk-notice { max-width: 46rem; margin-inline: auto; }

/* Section terrain : panorama centré */
.terrain-section { text-align: center; }
.terrain-section p { max-width: 46rem; margin-inline: auto auto; margin-bottom: 1em; }
.terrain-panorama { border-radius: var(--radius); box-shadow: var(--shadow-lg); margin-top: 1.75rem; width: 100%; }

/* Cartes checklist "Idéal pour" / "Nos avantages" */
.checklist-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; margin-top: 2rem; text-align: left; }
@media (min-width: 760px) { .checklist-grid { grid-template-columns: 1fr 1fr; } }
.check-card {
  background: var(--white); border: 1px solid var(--blue-border); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow);
}
.check-card h3 { color: var(--steel-strong); border-bottom: 2px solid var(--blue-pale); padding-bottom: 0.5rem; margin-bottom: 0.9rem; }
.check-card ul { list-style: none; padding: 0; margin: 0; }
.check-card li { padding: 0.42rem 0 0.42rem 1.9rem; position: relative; }
.check-card li::before {
  content: "\2713"; position: absolute; left: 0; top: 0.42rem;
  width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: var(--steel); color: var(--white);
  font-size: 0.8rem; font-weight: 800; display: grid; place-items: center;
}
.check-card a { color: var(--navy); text-decoration: none; }
.check-card a:hover { color: var(--orange-strong); text-decoration: underline; }
