
:root {
  --indigo: #4A5F87;
  --indigo-dark: #2F3F5F;
  --indigo-deep: #1F2D45;
  --indigo-night: #141D2E;
  --terracotta: #C97B5C;
  --sage: #A4B89B;
  --sage-dark: #7A9270;
  --gold: #C9A961;
  --gold-deep: #9E8344;
  --cream: #FAF6EC;
  --cream-warm: #F5EFE0;
  --ink: #1F2937;
  --ink-soft: #4B5563;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 2rem;
  background: rgba(250, 246, 236, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 29, 46, 0.1);
}
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.brand-bar { display: flex; align-items: baseline; gap: 0.6rem; }
.logo {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
  color: var(--indigo-night); letter-spacing: -0.02em;
}
.logo .dot { color: var(--gold-deep); }
.logo-marque {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.1rem; color: var(--gold-deep);
}
.nav-links { display: flex; gap: 2rem; align-items: center; font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); }
.nav-links a:hover { color: var(--indigo-night); transition: color 0.2s; }
.nav-cta {
  padding: 0.6rem 1.4rem; background: var(--indigo-night); color: var(--cream) !important;
  border-radius: 100px; font-size: 0.88rem; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-deep); }
.back-link { font-size: 0.82rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.4rem; }
.back-link::before { content: "←"; }
.back-link:hover { color: var(--indigo-night); }

@media (max-width: 900px) {
  nav { padding: 0.9rem 1.2rem; }
  .nav-links a:not(.nav-cta):not(.back-link) { display: none; }
}

/* HERO */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  padding: 8rem 2rem 4rem; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4) saturate(0.9); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20, 29, 46, 0.9) 0%, rgba(31, 45, 69, 0.55) 50%, rgba(122, 146, 112, 0.4) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; width: 100%; color: var(--cream); }
.hero-meta {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  margin-bottom: 2rem; color: rgba(250, 246, 236, 0.88);
  display: flex; align-items: center; gap: 1rem;
}
.hero-meta::before { content: ""; flex: 0 0 40px; height: 1px; background: var(--gold); }
.hero-meta-brand { white-space: nowrap; }
.hero-meta-line2 { font-size: 0.92em; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  font-weight: 500; line-height: 1.04; letter-spacing: -0.025em;
  margin-bottom: 1.5rem; max-width: 1100px;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: rgba(250, 246, 236, 0.95); max-width: 760px;
  margin-bottom: 1.5rem; line-height: 1.5;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(250, 246, 236, 0.88);
  max-width: 640px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 1rem 2rem; border-radius: 100px;
  font-size: 0.95rem; font-weight: 500;
  transition: all 0.25s ease; cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--cream); color: var(--indigo-night); }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--cream); border-color: rgba(250, 246, 236, 0.45); }
.btn-secondary:hover { background: var(--cream); color: var(--indigo-night); }

@media (max-width: 768px) {
  .hero { padding: 7rem 1.2rem 3rem; min-height: 88vh; }
}

/* INFOS BAR */
.infos-bar {
  background: var(--indigo-night); color: var(--cream);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.22);
}
.infos-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; gap: 2.5rem; align-items: center; justify-content: center;
  flex-wrap: wrap; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
}
.infos-inner span { opacity: 0.94; position: relative; padding-left: 1.5rem; }
.infos-inner span::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .infos-bar { padding: 1.25rem 1.2rem; }
  .infos-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    text-align: left;
  }
  .infos-inner span { display: block; }
}

/* SECTION COMMUNE */
section.standard { padding: 7rem 2rem; }
.container { max-width: 1400px; margin: 0 auto; }
.section-meta {
  display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.5rem;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500;
}
.section-meta::before { content: ""; width: 40px; height: 1px; background: var(--gold-deep); }
.section-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 500; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--indigo-night); margin-bottom: 1.5rem; max-width: 900px;
}
.section-title em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.section-intro {
  font-size: 1.1rem; color: var(--ink-soft);
  max-width: 720px; line-height: 1.8; margin-bottom: 4rem;
}

@media (max-width: 768px) {
  section.standard { padding: 4.5rem 1.2rem; }
}

/* === CONVICTION === */
.conviction { background: var(--cream-warm); padding: 7rem 2rem; }
.conviction-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: center;
}
.conviction-img {
  height: 480px; border-radius: 4px; overflow: hidden; position: relative;
}
.conviction-img img { width: 100%; height: 100%; object-fit: cover; }
.conviction-text .section-meta { color: var(--gold-deep); }
.conviction-text .section-meta::before { background: var(--gold-deep); }
.conviction-text h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--indigo-night); margin-bottom: 1.5rem;
}
.conviction-text h2 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.conviction-text p {
  font-size: 1.08rem; line-height: 1.85; color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.conviction-text p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 3.6rem; font-weight: 500;
  float: left; line-height: 0.9; margin: 0.3rem 0.6rem 0 0;
  color: var(--gold-deep);
}
.conviction-text strong { color: var(--indigo-night); font-weight: 500; }

@media (max-width: 900px) {
  .conviction { padding: 4.5rem 1.2rem; }
  .conviction-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .conviction-img { height: 320px; }
}

/* === BÉNÉFICES === */
.benefices { background: var(--cream); }
.benefices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 2rem;
}
.benefice-card {
  background: var(--cream-warm); padding: 2.5rem 2rem;
  border-radius: 4px; border-top: 3px solid var(--gold-deep);
}
.benefice-num {
  font-family: var(--serif); font-style: italic;
  font-size: 0.85rem; color: var(--gold-deep); margin-bottom: 0.6rem;
  font-weight: 500;
}
.benefice-card h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  color: var(--indigo-night); margin-bottom: 0.8rem; letter-spacing: -0.015em;
  line-height: 1.25;
}
.benefice-card p { font-size: 0.95rem; line-height: 1.7; color: var(--ink-soft); }

@media (max-width: 900px) {
  .benefices-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* === RUBAN PÉDAGOGIQUE === */
.ruban { background: var(--indigo-night); color: var(--cream); }
.ruban .section-meta { color: var(--gold); }
.ruban .section-meta::before { background: var(--gold); }
.ruban .section-title { color: var(--cream); }
.ruban .section-title em { color: var(--gold); }
.ruban .section-intro { color: rgba(250, 246, 236, 0.82); }

.jour-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}
.jour-block:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.jour-header {
  display: flex; align-items: baseline; gap: 1.5rem;
  margin-bottom: 2rem;
}
.jour-num {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--gold); font-weight: 500;
  letter-spacing: 0.04em;
}
.jour-title {
  font-family: var(--serif); font-size: 2rem; font-weight: 500;
  letter-spacing: -0.015em; color: var(--cream);
}
.jour-subtitle {
  font-size: 0.88rem; color: rgba(250, 246, 236, 0.7);
  font-style: italic;
}

.creneaux-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.creneau {
  padding: 1.6rem 1.8rem;
  background: rgba(250, 246, 236, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.creneau.crossfit {
  background: rgba(122, 146, 112, 0.18);
  border-left-color: var(--sage);
}
.creneau.commun {
  background: rgba(201, 169, 97, 0.14);
  border-left-color: var(--gold);
}
.creneau.libre {
  background: transparent;
  border-left: 1px dashed rgba(250, 246, 236, 0.25);
  color: rgba(250, 246, 236, 0.55);
}
.creneau-time {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.5rem;
}
.creneau.crossfit .creneau-time { color: var(--sage); }
.creneau.libre .creneau-time { color: rgba(250, 246, 236, 0.5); }
.creneau-title {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.5rem; line-height: 1.3;
}
.creneau-desc {
  font-size: 0.92rem; line-height: 1.65;
  color: rgba(250, 246, 236, 0.82);
}
.creneau-by {
  font-size: 0.78rem; font-style: italic; color: var(--gold);
  margin-top: 0.7rem; display: block;
}
.creneau.crossfit .creneau-by { color: var(--sage); }
.creneau.libre .creneau-title { color: rgba(250, 246, 236, 0.55); font-style: italic; }

/* Bandeau rituel matinal — réveil musculaire avant petit déjeuner */
.matin-rituel {
  background: rgba(122, 146, 112, 0.14);
  border-left: 3px solid var(--sage);
  border-radius: 0 4px 4px 0;
  padding: 1.2rem 1.6rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  align-items: center;
}
.matin-rituel-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); font-weight: 500;
  white-space: nowrap;
}
.matin-rituel-content {
  font-size: 0.95rem; line-height: 1.6;
  color: rgba(250, 246, 236, 0.85);
}
.matin-rituel-content strong { color: var(--cream); font-weight: 500; }
.matin-rituel-content em { font-style: italic; color: var(--sage); }

@media (max-width: 700px) {
  .matin-rituel { grid-template-columns: 1fr; gap: 0.6rem; }
}

@media (max-width: 900px) {
  .creneaux-grid { grid-template-columns: 1fr; }
  .creneaux-grid > .creneau { grid-column: 1 / -1 !important; }
  .jour-header { flex-direction: column; gap: 0.4rem; align-items: flex-start; }
}

/* === ENCADRANT === */
.encadrant { background: var(--cream); }
.encadrant-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: center;
}
.encadrant-img { height: 540px; border-radius: 4px; overflow: hidden; }
.encadrant-img img { width: 100%; height: 100%; object-fit: cover; }
.encadrant-card {
  background: var(--cream-warm); padding: 2.5rem;
  border-radius: 4px; border-left: 4px solid var(--gold-deep);
}
.encadrant-role {
  font-family: var(--serif); font-style: italic;
  font-size: 0.9rem; color: var(--gold-deep); margin-bottom: 0.5rem;
  font-weight: 500;
}
.encadrant-name {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 500;
  color: var(--indigo-night); margin-bottom: 1rem; letter-spacing: -0.02em;
}
.encadrant-card p {
  font-size: 1rem; color: var(--ink-soft); line-height: 1.75;
  margin-bottom: 1.2rem;
}
.encadrant-list { list-style: none; margin-top: 1.5rem; }
.encadrant-list li {
  font-size: 0.92rem; color: var(--ink-soft);
  padding: 0.55rem 0; border-bottom: 1px solid rgba(20, 29, 46, 0.1);
}
.encadrant-list li:last-child { border-bottom: none; }
.encadrant-list li::before { content: "— "; color: var(--gold-deep); }

@media (max-width: 900px) {
  .encadrant-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .encadrant-img { height: 360px; }
}

/* === LIEU / CADRE === */
.cadre {
  background: var(--cream-warm); position: relative;
}
.cadre-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center;
}
.cadre-img { height: 520px; border-radius: 4px; overflow: hidden; }
.cadre-img img { width: 100%; height: 100%; object-fit: cover; }
.cadre-text h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  color: var(--indigo-night); margin: 1.5rem 0 0.6rem;
  letter-spacing: -0.015em;
}
.cadre-text p {
  font-size: 1rem; color: var(--ink-soft); line-height: 1.8;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .cadre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cadre-img { height: 320px; }
}

/* === MENTION === */
.mention {
  background: var(--sage-dark); color: var(--cream);
  padding: 4rem 2rem;
}
.mention-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: start;
}
.mention-icon {
  font-family: var(--serif); font-size: 3rem; color: var(--gold);
  line-height: 1; font-style: italic;
}
.mention-text h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  margin-bottom: 1rem; color: var(--cream);
}
.mention-text p {
  font-size: 1rem; line-height: 1.8;
  color: rgba(250, 246, 236, 0.92); margin-bottom: 0.8rem;
}
.mention-text strong { color: var(--gold); font-weight: 500; }

@media (max-width: 768px) {
  .mention-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* === TARIF === */
.tarif-section { background: var(--indigo-night); color: var(--cream); padding: 7rem 2rem; }
.tarif-section .section-meta { color: var(--gold); }
.tarif-section .section-meta::before { background: var(--gold); }
.tarif-section .section-title { color: var(--cream); }
.tarif-section .section-title em { color: var(--gold); }
.tarif-section .section-intro { color: rgba(250, 246, 236, 0.78); }

.tarif-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem;
}
.tarif-block {
  padding: 2.5rem;
  background: rgba(250, 246, 236, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 6px;
}
.tarif-block.featured {
  background: rgba(201, 169, 97, 0.1);
  border-color: var(--gold);
}
.tarif-label {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
}
.tarif-prix {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 500;
  letter-spacing: -0.02em; margin-bottom: 0.8rem; line-height: 1.1;
}
.tarif-prix em { font-style: italic; font-size: 1.1rem; color: var(--gold); font-weight: 400; }
.tarif-desc { font-size: 0.92rem; line-height: 1.7; color: rgba(250, 246, 236, 0.82); }

@media (max-width: 900px) {
  .tarif-section { padding: 4.5rem 1.2rem; }
  .tarif-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* === CTA FINAL === */
.cta-final {
  position: relative; padding: 8rem 2rem; text-align: center;
  color: var(--cream); overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35); }
.cta-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20, 29, 46, 0.88), rgba(31, 45, 69, 0.55));
}
.cta-content { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.cta-final h2 {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 400; line-height: 1.3; margin-bottom: 2rem;
}
.cta-sub {
  font-size: 1.1rem; color: rgba(250, 246, 236, 0.88);
  margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* === FOOTER === */
footer {
  background: var(--indigo-night); color: rgba(250, 246, 236, 0.8);
  padding: 5rem 2rem 2rem;
}
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 246, 236, 0.12);
}
.footer-brand {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 500;
  color: var(--cream); margin-bottom: 1rem; letter-spacing: -0.02em;
}
.footer-brand .dot { color: var(--gold); }
.footer-tagline {
  font-style: italic; font-family: var(--serif); font-size: 1.1rem;
  line-height: 1.5; max-width: 360px;
  color: rgba(250, 246, 236, 0.88); margin-bottom: 1rem;
}
.footer-tagline-sub {
  font-size: 0.88rem; line-height: 1.6;
  color: rgba(250, 246, 236, 0.6); max-width: 360px;
}
.footer-col h5 {
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; font-size: 0.9rem; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1400px; margin: 2rem auto 0;
  display: flex; justify-content: space-between;
  font-size: 0.8rem; opacity: 0.55;
  flex-wrap: wrap; gap: 1rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0; transform: translateY(24px);
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .delay-1 { animation-delay: 0.15s; }
  .delay-2 { animation-delay: 0.3s; }
  .delay-3 { animation-delay: 0.45s; }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
}


/* === Hospitalité (carousel) — repris du modèle Albanie === */
/* === Hospitalité === */
.hosp { background: var(--cream-warm); padding: 7rem 2rem; }
.hosp-inner { max-width: 1400px; margin: 0 auto; }
.hosp-meta { display:flex; align-items:center; gap:1.2rem; margin-bottom:1.5rem; font-size:0.72rem; letter-spacing:0.24em; text-transform:uppercase; color:var(--terracotta); font-weight:500; }
.hosp-meta::before { content:""; width:40px; height:1px; background:var(--terracotta); }
.hosp-title { font-family:var(--serif); font-size:clamp(2.2rem,4.5vw,3.6rem); font-weight:500; line-height:1.08; letter-spacing:-0.02em; color:var(--indigo-dark); margin-bottom:1.5rem; max-width:900px; }
.hosp-title em { font-style:italic; color:var(--terracotta); font-weight:400; }
.hosp-lede { font-size:1.1rem; color:var(--ink-soft); max-width:740px; line-height:1.8; margin-bottom:3.5rem; }
.hosp-cols { display:grid; grid-template-columns:1fr 1fr; gap:2rem; margin-bottom:4rem; }
.hosp-col { background:var(--cream); border-radius:6px; padding:2.5rem; border-top:3px solid var(--terracotta); }
.hosp-col-tag { font-size:0.72rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--terracotta); font-weight:500; margin-bottom:1rem; }
.hosp-col h3 { font-family:var(--serif); font-size:1.55rem; font-weight:500; color:var(--indigo-dark); margin-bottom:1rem; letter-spacing:-0.015em; line-height:1.2; }
.hosp-col p { font-size:1rem; color:var(--ink-soft); line-height:1.8; margin-bottom:1rem; }
.hosp-col p:last-child { margin-bottom:0; }
.hosp-amenities { list-style:none; margin:1.5rem 0 0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:0 1.5rem; }
.hosp-amenities li { font-size:0.92rem; color:var(--ink-soft); padding:0.55rem 0 0.55rem 1.3rem; border-bottom:1px solid rgba(74,95,135,0.1); position:relative; }
.hosp-amenities li::before { content:""; position:absolute; left:0; top:1.05rem; width:6px; height:6px; border-radius:50%; background:var(--gold); }
.hosp-gallery-head { display:flex; justify-content:space-between; align-items:baseline; gap:1rem; flex-wrap:wrap; margin-bottom:1.5rem; }
.hosp-gallery-note { font-size:0.9rem; color:var(--ink-soft); font-style:italic; }
.hosp-carousel { position:relative; display:flex; align-items:center; gap:1rem; }
.hosp-track { position:relative; display:flex; overflow-x:auto; gap:1.5rem; flex:1; min-width:0; scrollbar-width:none; -webkit-overflow-scrolling:touch; }
.hosp-track::-webkit-scrollbar { display:none; }
.hosp-slide { flex:0 0 100%; }
.hosp-slide image-slot { display:block; width:100%; height:480px; }
.hosp-caption { margin-top:0.9rem; font-size:0.85rem; letter-spacing:0.04em; color:var(--ink-soft); }
.hosp-arrow { flex:0 0 auto; width:52px; height:52px; border-radius:50%; border:none; background:var(--indigo-deep); color:var(--cream); font-size:1.6rem; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.hosp-arrow:hover:not(:disabled) { background:var(--terracotta); }
.hosp-arrow:disabled { opacity:0.25; cursor:default; }
.hosp-dots { display:flex; gap:0.55rem; justify-content:center; margin-top:1.6rem; }
.hosp-dot { width:8px; height:8px; border-radius:50%; background:rgba(74,95,135,0.25); border:none; cursor:pointer; padding:0; transition:background .2s; }
.hosp-dot.active { background:var(--terracotta); }
@media (max-width:900px){ .hosp { padding:4.5rem 1.2rem; } .hosp-cols { grid-template-columns:1fr; } .hosp-amenities { grid-template-columns:1fr; } .hosp-slide image-slot { height:300px; } .hosp-arrow { display:none; } }


/* encadrant vignette — photo circulaire façon I-Learn */
.encadrant-grid { grid-template-columns: 300px 1fr; align-items: start; gap: 3.5rem; }
.encadrant-img { width: 300px; height: 300px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; }
.encadrant-img img, .encadrant-img image-slot { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
@media (max-width: 900px) { .encadrant-grid { grid-template-columns: 1fr; } .encadrant-img { width: 220px; height: 220px; margin: 0 auto; } }
