@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap");

/* ==========================================================================
   SudBed theme custom overrides (loaded AFTER dist/output.css)
   - Dark mode corrections
   - Header/footer separation
   - Content contrast (articles, cards)
   - Testimonial arrows spacing
   ========================================================================== */

/* Light mode body baseline matches Next.js site (gris très clair) */
:root {
  --sudbed-body-bg-light: #f7f7f8;
}

html, body {
  background-color: var(--background);
}

/* In light mode, give the body a subtle tint so sections don't all look pure white */
body {
  background-color: var(--sudbed-body-bg-light);
}

/* Dark mode supprimé : la classe .dark sur <html> est ignorée */
html.dark { color-scheme: light; }
.sudbed-mobile-bar { display: none; }
@media (max-width: 767px) {
  .sudbed-mobile-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .sudbed-mobile-bar__item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 60px;
    padding: 8px 4px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    color: #374151;
    text-decoration: none;
    border-left: 1px solid #f3f4f6;
  }
  .sudbed-mobile-bar__item:first-child { border-left: 0; }
  .sudbed-mobile-bar__item svg { width: 22px; height: 22px; }
  .sudbed-mobile-bar__item:active { background: #f9fafb; }
  .sudbed-mobile-bar__item--cta { background: #009ABF; color: #fff; border-left: 0; }
  .sudbed-mobile-bar__item--cta:active { background: #007a9a; }
  body:not(.home) { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

/* ==========================================================================
   Dark mode header / navigation detachment
   ========================================================================== */
html.dark nav[role="navigation"],
html.dark .site-header {
  background-color: #1a2340;               /* slightly lighter than body #243358 */
  box-shadow: 0 2px 12px rgba(0, 0, 0, .35);
  position: relative;
  z-index: 40;
}

html.dark nav[role="navigation"] a,
html.dark nav[role="navigation"] button {
  color: #e6ecf7;
}

/* Dropdown menu panel - ensure readable background in dark mode */
html.dark nav[role="navigation"] [role="menu"],
html.dark nav[role="navigation"] .mobile-submenu {
  background-color: #1f2b50 !important;
  color: #e6ecf7 !important;
}

html.dark nav[role="navigation"] [role="menu"] a,
html.dark nav[role="navigation"] .mobile-submenu a {
  color: #e6ecf7 !important;
}

/* ==========================================================================
   Remove the visible blue band before the footer in dark mode
   Root cause: <footer> used mt-12 which exposed body bg between sections.
   We zero that gap out in dark mode and let the footer sit flush.
   ========================================================================== */
footer.bg-sudbed-footer {
  margin-top: 0;
}

html.dark footer.bg-sudbed-footer {
  background-color: #0f1730;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, .04);
}

/* Kill empty colored strips that sections sometimes leave above the footer */
html.dark main + footer,
html.dark main ~ footer {
  border-top: 0;
}

/* ==========================================================================
   Content contrast fixes for article pages / le bon coin / etc.
   ========================================================================== */
/* Muted helper text: ensure readable in dark mode */
html.dark .text-gray-500,
html.dark .text-gray-400 {
  color: #c6cad3 !important;
}

/* Blue links on dark blue cards: bump contrast */
html.dark a[href]:not(.bg-\[\#009ABF\]):not(.theme-toggle) {
  color: inherit;
}

html.dark .prose a,
html.dark article a,
html.dark .text-\[\#009ABF\] {
  color: #4ec6e7 !important;
}

/* Editorial / article body text: enforce legible color in dark mode */
html.dark .entry-content,
html.dark .single-post .prose,
html.dark article p,
html.dark article li {
  color: #dde3ef;
}

html.dark .entry-content h1,
html.dark .entry-content h2,
html.dark .entry-content h3,
html.dark .entry-content h4,
html.dark article h1,
html.dark article h2,
html.dark article h3 {
  color: #ffffff;
}

/* Cards (offers, destockage, etc.) - give them a clearly different bg so they
   "lift" from the page background in dark mode */
html.dark .bg-white {
  background-color: #2b3963 !important;
  color: #e6ecf7;
}

html.dark .bg-gray-50 {
  background-color: #1f2b50 !important;
}

html.dark .bg-gray-100 {
  background-color: #243358 !important;
}

html.dark .border-gray-100,
html.dark .border-gray-200 {
  border-color: rgba(255, 255, 255, .08) !important;
}

/* ==========================================================================
   Testimonial carousel: fix arrows to sit OUTSIDE the cards with breathing room
   ========================================================================== */
#test-prev,
#test-next {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
  transition: background-color .2s ease, transform .15s ease;
}

#test-prev { left: -8px; }
#test-next { right: -8px; }

@media (min-width: 768px) {
  #test-prev { left: -22px; }
  #test-next { right: -22px; }
}

#test-prev:hover,
#test-next:hover {
  transform: translateY(-50%) scale(1.05);
}

html.dark #test-prev,
html.dark #test-next {
  background-color: #2b3963;
}

html.dark #test-prev svg,
html.dark #test-next svg {
  color: #ffffff;
}

/* Give the testimonial section internal horizontal padding so cards don't
   collide with arrow buttons on small widths */
section .relative.overflow-hidden {
  padding-inline: clamp(0.5rem, 2vw, 1.5rem);
}

/* ==========================================================================
   Hero carousel arrows: consistent size/hit area
   ========================================================================== */
#hero-prev,
#hero-next {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Remove any stray blue strip (border-t border-white on footer inner) in dark
   ========================================================================== */
html.dark footer .border-t.border-white {
  border-top-color: rgba(255, 255, 255, .12);
}

/* ==========================================================================
   Forms: WPForms inherits the site look in both modes.
   ========================================================================== */
.wpforms-container {
  max-width: 100%;
}

.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form input[type="tel"],
.wpforms-container .wpforms-form input[type="number"],
.wpforms-container .wpforms-form select,
.wpforms-container .wpforms-form textarea {
  width: 100%;
  padding: .55rem .85rem;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .5rem;
  background: #ffffff;
  color: #1a1a1a;
}

html.dark .wpforms-container .wpforms-form input[type="text"],
html.dark .wpforms-container .wpforms-form input[type="email"],
html.dark .wpforms-container .wpforms-form input[type="tel"],
html.dark .wpforms-container .wpforms-form input[type="number"],
html.dark .wpforms-container .wpforms-form select,
html.dark .wpforms-container .wpforms-form textarea {
  background: #1f2b50;
  color: #e6ecf7;
  border-color: rgba(255, 255, 255, .18);
}

.wpforms-container .wpforms-form button[type="submit"],
.wpforms-container .wpforms-submit-container button {
  background-color: #009ABF !important;
  color: #ffffff !important;
  border: 0 !important;
  padding: .8rem 1.8rem !important;
  border-radius: .625rem !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: background-color .2s ease;
}

.wpforms-container .wpforms-form button[type="submit"]:hover,
.wpforms-container .wpforms-submit-container button:hover {
  background-color: #007a9a !important;
}

.wpforms-container .wpforms-field-label {
  color: inherit !important;
  font-weight: 500 !important;
}

/* ==========================================================================
   Reduced-motion guard already exists in input.css — nothing to add.
   ========================================================================== */

/* ==========================================================================
   FAQ SudBed (bloc Gutenberg sudbed/faq)
   ========================================================================== */
.sudbed-faq { max-width: 880px; margin: 3rem auto; padding: 0 1rem; }
.sudbed-faq__title { font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 600; color: #111827; margin: 0 0 1.5rem; text-align: center; }
.sudbed-faq__list { display: flex; flex-direction: column; gap: .75rem; }
.sudbed-faq__item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.sudbed-faq__item[open] {
  border-color: #009ABF;
  box-shadow: 0 8px 24px -12px rgba(0, 154, 191, 0.25);
}
.sudbed-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  user-select: none;
}
.sudbed-faq__q::-webkit-details-marker { display: none; }
.sudbed-faq__q-text { flex: 1; line-height: 1.4; }
.sudbed-faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #f3f4f6;
  transition: background .25s ease, transform .3s ease;
}
.sudbed-faq__icon::before,
.sudbed-faq__icon::after {
  content: "";
  position: absolute;
  background: #111827;
  border-radius: 2px;
  transition: transform .3s ease, background .25s ease;
}
.sudbed-faq__icon::before { top: 50%; left: 25%; right: 25%; height: 2px; transform: translateY(-50%); }
.sudbed-faq__icon::after  { left: 50%; top: 25%; bottom: 25%; width: 2px; transform: translateX(-50%); }
.sudbed-faq__item[open] .sudbed-faq__icon { background: #009ABF; }
.sudbed-faq__item[open] .sudbed-faq__icon::before,
.sudbed-faq__item[open] .sudbed-faq__icon::after { background: #ffffff; }
.sudbed-faq__item[open] .sudbed-faq__icon::after { transform: translateX(-50%) scaleY(0); }
.sudbed-faq__a {
  padding: 0 1.25rem 1.25rem;
  color: #4b5563;
  line-height: 1.65;
  font-size: .95rem;
  animation: sudbedFaqFade .25s ease both;
}
.sudbed-faq__a p { margin: 0 0 .75rem; }
.sudbed-faq__a p:last-child { margin-bottom: 0; }
@keyframes sudbedFaqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .sudbed-faq__item, .sudbed-faq__icon, .sudbed-faq__icon::before, .sudbed-faq__icon::after, .sudbed-faq__a { transition: none; animation: none; }
}

/* --- Variante 1 : Compact (discret, court) --- */
.sudbed-faq--compact { max-width: 760px; margin: 2rem auto; }
.sudbed-faq--compact .sudbed-faq__title { font-size: clamp(1.25rem, 2vw, 1.75rem); margin-bottom: 1rem; text-align: left; }
.sudbed-faq--compact .sudbed-faq__list { gap: .35rem; }
.sudbed-faq--compact .sudbed-faq__item { border-radius: 8px; border-color: #e5e7eb; box-shadow: none; }
.sudbed-faq--compact .sudbed-faq__item[open] { box-shadow: none; background: #f9fafb; }
.sudbed-faq--compact .sudbed-faq__q { padding: .8rem 1rem; font-size: .95rem; font-weight: 500; }
.sudbed-faq--compact .sudbed-faq__a { padding: 0 1rem 1rem; font-size: .9rem; }
.sudbed-faq--compact .sudbed-faq__icon { width: 18px; height: 18px; background: transparent; }

/* --- Variante 2 : Éditorial (intermédiaire, plus de souffle) --- */
.sudbed-faq--editorial { max-width: 880px; margin: 3.5rem auto; }
.sudbed-faq--editorial .sudbed-faq__title { font-size: clamp(1.6rem, 2.6vw, 2.25rem); margin-bottom: 1.75rem; text-align: center; letter-spacing: -.01em; }
.sudbed-faq--editorial .sudbed-faq__list { gap: 0; border-top: 1px solid #e5e7eb; }
.sudbed-faq--editorial .sudbed-faq__item { border: none; border-bottom: 1px solid #e5e7eb; border-radius: 0; background: transparent; }
.sudbed-faq--editorial .sudbed-faq__item[open] { box-shadow: none; background: transparent; }
.sudbed-faq--editorial .sudbed-faq__q { padding: 1.25rem .25rem; font-size: 1.05rem; font-weight: 600; }
.sudbed-faq--editorial .sudbed-faq__a { padding: 0 .25rem 1.5rem; font-size: 1rem; line-height: 1.7; }
.sudbed-faq--editorial .sudbed-faq__icon { background: transparent; }
.sudbed-faq--editorial .sudbed-faq__item[open] .sudbed-faq__icon { background: transparent; }
.sudbed-faq--editorial .sudbed-faq__item[open] .sudbed-faq__icon::before,
.sudbed-faq--editorial .sudbed-faq__item[open] .sudbed-faq__icon::after { background: #009ABF; }

/* --- Variante 3 : Premium (présent, généreux) --- */
.sudbed-faq--premium { max-width: 980px; margin: 4rem auto; padding: 2rem 1rem; }
.sudbed-faq--premium .sudbed-faq__title { font-size: clamp(1.875rem, 3vw, 2.75rem); font-weight: 700; margin-bottom: 2.25rem; text-align: center; letter-spacing: -.02em; color: #0f172a; }
.sudbed-faq--premium .sudbed-faq__list { gap: 1rem; }
.sudbed-faq--premium .sudbed-faq__item { border-radius: 18px; border: 1px solid #e2e8f0; background: #ffffff; box-shadow: 0 4px 14px -8px rgba(15, 23, 42, .08); }
.sudbed-faq--premium .sudbed-faq__item[open] { border-color: #009ABF; box-shadow: 0 18px 40px -18px rgba(0, 154, 191, .35); transform: translateY(-1px); }
.sudbed-faq--premium .sudbed-faq__q { padding: 1.4rem 1.75rem; font-size: 1.1rem; font-weight: 600; }
.sudbed-faq--premium .sudbed-faq__a { padding: 0 1.75rem 1.75rem; font-size: 1rem; line-height: 1.75; color: #334155; }
.sudbed-faq--premium .sudbed-faq__icon { width: 28px; height: 28px; background: #f1f5f9; }
.sudbed-faq--premium .sudbed-faq__item[open] .sudbed-faq__icon { background: #009ABF; }

/* --- Variante 4 : Soft (inspiration capture, pleine largeur, gris clair, chevron) --- */
.sudbed-faq--soft { max-width: 920px; margin: 4rem auto 6rem; padding: 0 1.25rem; font-family: "Geist", "Geist Sans", system-ui, sans-serif; }
.sudbed-faq--soft .sudbed-faq__title { font-size: clamp(1.875rem, 3vw, 2.75rem); font-weight: 700; color: #3F3F3F; letter-spacing: -.01em; margin: 0 0 2.25rem; text-align: center; }
.sudbed-faq--soft .sudbed-faq__list { gap: .75rem; }
.sudbed-faq--soft .sudbed-faq__item { background: #F4F1EC; border: 1px solid transparent; border-radius: 12px; box-shadow: none; transition: background .25s ease, border-color .25s ease; }
.sudbed-faq--soft .sudbed-faq__item[open] { background: #ffffff; border-color: #009ABF; box-shadow: 0 8px 24px -12px rgba(0,154,191,.3); transform: none; }
.sudbed-faq--soft .sudbed-faq__q { padding: 1.15rem 1.5rem; font-size: 1.05rem; font-weight: 600; color: #3F3F3F; }
.sudbed-faq--soft .sudbed-faq__item[open] .sudbed-faq__q { border-bottom: 1px solid #f0ece4; }
.sudbed-faq--soft .sudbed-faq__a { padding: 1.1rem 1.5rem 1.4rem; font-size: 1rem; line-height: 1.7; color: #4b5563; background: #ffffff; }
/* Chevron à droite (remplace le +/–) */
.sudbed-faq--soft .sudbed-faq__icon { width: 22px; height: 22px; background: transparent; border-radius: 0; }
.sudbed-faq--soft .sudbed-faq__icon::before,
.sudbed-faq--soft .sudbed-faq__icon::after { content: ""; position: absolute; top: 50%; width: 11px; height: 2px; background: #3F3F3F; border-radius: 2px; transform-origin: center; transition: transform .25s ease, background .25s ease; }
.sudbed-faq--soft .sudbed-faq__icon::before { left: 1px;  transform: translateY(-1px) rotate(45deg); }
.sudbed-faq--soft .sudbed-faq__icon::after  { right: 1px; transform: translateY(-1px) rotate(-45deg); }
.sudbed-faq--soft .sudbed-faq__item[open] .sudbed-faq__icon { background: transparent; }
.sudbed-faq--soft .sudbed-faq__item[open] .sudbed-faq__icon::before { transform: translateY(-1px) rotate(-45deg); background: #009ABF; }
.sudbed-faq--soft .sudbed-faq__item[open] .sudbed-faq__icon::after  { transform: translateY(-1px) rotate(45deg);  background: #009ABF; }
@media (max-width: 640px) {
  .sudbed-faq--soft { margin: 3rem auto 4.5rem; }
  .sudbed-faq--soft .sudbed-faq__q { padding: 1rem 1.1rem; font-size: 1rem; }
  .sudbed-faq--soft .sudbed-faq__a { padding: 0 1.1rem 1.2rem; font-size: .95rem; }
}

/* Spacing généreux sous toutes les FAQ avant le bloc suivant */
.sudbed-faq-autoslot { padding-bottom: clamp(2rem, 5vw, 5rem); }

/* --- Lien d'ancre vers la FAQ en bas de page --- */
.sudbed-faq-anchor-link { max-width: 880px; margin: 2.5rem auto 0; padding: 0 1rem; text-align: center; }
.sudbed-faq-anchor-link a { display: inline-block; font-size: .95rem; font-weight: 500; color: #009ABF; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: color .2s ease, border-color .2s ease; }
.sudbed-faq-anchor-link a:hover { color: #007a9a; }

.sudbed-faq[id]:target { scroll-margin-top: 90px; }

/* ==========================================================================
   Hero d'accueil split (Particulier / Professionnel)
   ========================================================================== */
.sudbed-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: #ffffff;
  overflow: hidden;
  font-family: "Geist", "Geist Sans", system-ui, -apple-system, sans-serif;
}
@media (min-width: 1024px) {
  .sudbed-hero {
    grid-template-columns: 50% 50%;
    min-height: clamp(460px, 50vw, 580px);
  }
}
.sudbed-hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #d6e1e6;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sudbed-hero__media {
    aspect-ratio: auto;
    height: 100%;
    width: calc(100% + 6%);
    order: 2;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -6%;
  }
}
.sudbed-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.sudbed-hero__slide.is-active { opacity: 1; }
.sudbed-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sudbed-hero__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 4;
}
.sudbed-hero__dots .hero-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 0;
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.sudbed-hero__dots .hero-dot.is-active {
  background: #fff;
  width: 28px;
}

.sudbed-hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .sudbed-hero__content {
    padding: 4rem clamp(2.5rem, 5vw, 5.5rem);
    order: 1;
    justify-content: flex-start;
  }
}
.sudbed-hero__inner { max-width: 560px; width: 100%; margin: 0 auto; }
@media (min-width: 1024px) { .sudbed-hero__inner { margin: 0; } }
.sudbed-hero__eyebrow {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #009ABF;
  font-weight: 600;
  margin: 0 0 1.25rem;
}
.sudbed-hero__title {
  font-family: inherit;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: #111827;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.sudbed-hero__title em {
  font-family: "Dancing Script", cursive;
  font-style: normal;
  font-weight: 600;
  color: #009ABF;
  display: inline-block;
}
.sudbed-hero__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 2rem;
  max-width: 44ch;
}
.sudbed-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: .25rem;
}
.sudbed-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #009ABF;
  color: #fff;
  padding: .85rem 1.6rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  border: 1.5px solid #009ABF;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
  letter-spacing: .01em;
  white-space: nowrap;
}
.sudbed-hero__cta:hover {
  background: #007a9a;
  border-color: #007a9a;
  color: #fff;
}
.sudbed-hero__cta--ghost {
  background: transparent;
  color: #009ABF;
}
.sudbed-hero__cta--ghost:hover {
  background: #009ABF;
  color: #fff;
  border-color: #009ABF;
}

/* Mini barre fixe desktop only */
.sudbed-hero__strip {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  background: #3F3F3F;
  color: #fff;
  transition: transform .35s ease, opacity .35s ease;
  will-change: transform, opacity;
}
.sudbed-hero__strip.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.sudbed-hero__strip-list {
  list-style: none;
  margin: 0;
  padding: .9rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sudbed-hero__strip-item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 500;
}
.sudbed-hero__strip-bullet { color: #4ec6e7; font-size: .9rem; }
@media (min-width: 1024px) {
  .sudbed-hero__strip { display: block; }
}

/* Empêche toute collision avec la barre mobile fixe (.sudbed-mobile-bar) :
   sur mobile la strip est masquée, sur desktop la mobile-bar l'est déjà via media query. */

/* ==========================================================================
   SudBed — Page header éditorial pour pages internes (Qui sommes nous)
   ========================================================================== */
.sb-pageheader {
  position: relative;
  background: #009ABF;
  color: #ffffff;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px) 24px clamp(28px, 4vw, 54px);
  font-family: "Geist", "Geist Sans", system-ui, -apple-system, sans-serif;
  text-align: center;
}
.sb-pageheader__bg { display: none; }
.sb-pageheader__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.sb-pageheader__crumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-size: .68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: .9rem;
}
.sb-pageheader__crumbs a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color .2s ease; }
.sb-pageheader__crumbs a:hover { color: #fff; }
.sb-pageheader__sep { color: rgba(255,255,255,0.55); }
.sb-pageheader__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 .6rem;
  color: #ffffff;
}
.sb-pageheader__accent {
  font-style: italic;
  color: #ffffff;
  font-weight: 500;
}
.sb-pageheader__subtitle {
  max-width: 620px;
  margin: .35rem auto 0;
  font-size: clamp(.85rem, .95vw, .95rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.sb-pageheader__caption {
  position: absolute;
  left: 18px;
  bottom: 8px;
  margin: 0;
  font-family: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .65rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  z-index: 2;
}
@media (max-width: 640px) {
  .sb-pageheader { padding: 26px 20px 26px; }
  .sb-pageheader__crumbs { font-size: .62rem; margin-bottom: .6rem; }
  .sb-pageheader__caption { left: 12px; bottom: 6px; font-size: .6rem; }
}

/* ==========================================================================
   SudBed — Page Nos références (split éditorial sombre + image)
   ========================================================================== */
.sb-refs__hero {
  display: grid;
  grid-template-columns: 1fr;
  background: #3F3F3F;
  color: #ffffff;
  font-family: "Geist", "Geist Sans", system-ui, sans-serif;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sb-refs__hero { grid-template-columns: 1fr 1fr; min-height: clamp(440px, 50vw, 600px); }
}
.sb-refs__hero-text {
  position: relative;
  padding: clamp(64px, 8vw, 110px) clamp(28px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.sb-refs__eyebrow {
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6FB7C9;
  font-weight: 600;
  margin: 0 0 1.75rem;
}
.sb-refs__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 1.75rem;
}
.sb-refs__title em { font-style: italic; color: #6FB7C9; }
.sb-refs__lede {
  max-width: 460px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0 0 2.5rem;
}
.sb-refs__crumbs {
  font-size: .72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.sb-refs__crumbs a { color: rgba(255,255,255,0.45); text-decoration: none; }
.sb-refs__crumbs a:hover { color: #fff; }
.sb-refs__crumbs .sep { color: rgba(255,255,255,0.3); margin: 0 .5rem; }

.sb-refs__hero-media {
  position: relative;
  background: #c5d8df;
  min-height: 320px;
  overflow: hidden;
}
.sb-refs__hero-media::after { content: none; }
.sb-refs__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.sb-refs__slide.is-active { opacity: 1; }
.sb-refs__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sb-refs__slide-caption {
  position: absolute; right: 18px; bottom: 14px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: .72rem; color: rgba(255,255,255,0.85);
  background: rgba(11, 18, 24, 0.55);
  padding: .25rem .6rem;
  border-radius: 999px;
  z-index: 3;
}
.sb-refs__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.85);
  border: 0; border-radius: 999px;
  cursor: pointer; color: #0b1218;
  z-index: 4; box-shadow: 0 4px 12px rgba(0,0,0,.18);
  transition: background .2s ease;
}
.sb-refs__nav:hover { background: #fff; }
.sb-refs__nav svg { width: 16px; height: 16px; }
.sb-refs__nav--prev { left: 14px; }
.sb-refs__nav--next { right: 14px; }
.sb-refs__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 4; }
.sb-refs__dots button { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.6); border: 0; cursor: pointer; transition: background .2s ease, width .25s ease; padding: 0; }
.sb-refs__dots button.is-active { background: #fff; width: 24px; }

/* KPI bandeau crème + cyan clair */
.sb-refs__kpis {
  display: grid;
  grid-template-columns: 1fr;
  font-family: "Geist", "Geist Sans", system-ui, sans-serif;
}
@media (min-width: 1024px) {
  .sb-refs__kpis { grid-template-columns: 1fr 1fr; }
}
.sb-refs__kpis-text {
  background: #ffffff;
  color: #1a2329;
  padding: clamp(48px, 6vw, 90px) clamp(28px, 5vw, 80px);
}
.sb-refs__kpis-text p { font-size: 1.0625rem; line-height: 1.75; color: #4a5860; max-width: 540px; margin: 0 0 1.25rem; }
.sb-refs__kpis-text p:last-child { margin-bottom: 0; }
.sb-refs__kpis-text .sb-link-num { color: #009ABF; font-weight: 600; }

.sb-refs__kpis-grid {
  background: #DFF3F6;
  padding: clamp(48px, 6vw, 90px) clamp(28px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center; gap: 0;
}
.sb-refs__kpi {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(11, 18, 24, 0.10);
}
.sb-refs__kpi:last-child { border-bottom: 0; }
.sb-refs__kpi-num {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1;
  color: #0b1218;
  letter-spacing: -.01em;
}
.sb-refs__kpi-label {
  margin-top: .5rem;
  font-size: .95rem;
  color: #2c3a44;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   SudBed — Slider logos premium (marquee continu, sobre)
   ========================================================================== */
.sb-logos {
  background: #FBF8F1;
  padding: clamp(56px, 7vw, 96px) 0;
  overflow: hidden;
  font-family: "Geist", "Geist Sans", system-ui, sans-serif;
}
.sb-logos__head {
  text-align: center;
  margin: 0 auto clamp(28px, 4vw, 48px);
  padding: 0 24px;
  max-width: 720px;
}
.sb-logos__eyebrow {
  font-size: .72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #009ABF; font-weight: 600; margin: 0 0 .9rem;
}
.sb-logos__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin: 0;
  color: #1a2329;
}
.sb-logos__title em { font-style: italic; color: #009ABF; }
.sb-logos__viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.sb-logos__track {
  display: flex;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  width: max-content;
  animation: sbLogosScroll 40s linear infinite;
  will-change: transform;
}
.sb-logos__viewport:hover .sb-logos__track { animation-play-state: paused; }
.sb-logos__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}
.sb-logos__item img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .65;
  transition: filter .3s ease, opacity .3s ease;
}
.sb-logos__item:hover img { filter: grayscale(0); opacity: 1; }
@keyframes sbLogosScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .sb-logos__item { height: 56px; }
  .sb-logos__item img { height: 42px; max-width: 150px; }
}
@media (prefers-reduced-motion: reduce) {
  .sb-logos__track { animation: none; }
}

/* ==========================================================================
   Premium light footer (refonte)
   ========================================================================== */
.sb-footer-cta {
  background: #F9FAFB;
  color: #1a1a1a;
  padding: 56px 24px;
  margin-top: 96px;
  border-bottom: 1px solid #e8e2d6;
}
.sb-footer-cta__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.sb-footer-cta__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #009ABF;
  margin: 0 0 14px;
}
.sb-footer-cta__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #1a1a1a;
}
.sb-footer-cta__title em { font-style: italic; color: #009ABF; }
.sb-footer-cta__lead {
  max-width: 60ch;
  color: #4a4a4a;
  line-height: 1.55;
  margin: 0;
}
.sb-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #009ABF;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  padding: 18px 28px;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
  white-space: nowrap;
}
.sb-footer-cta__btn:hover { background: #007a9a; transform: translateY(-1px); }

.sb-footer {
  background: #f5f1ea;
  color: #1a1a1a;
  padding: 72px 24px 32px;
  border-top: 1px solid #e8e2d6;
  margin-top: 0;
}
.sb-footer__inner { max-width: 1240px; margin: 0 auto; }
.sb-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.sb-foot__logo {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
  line-height: 0;
}
.sb-foot__logo .sb-foot__logo-img,
.sb-foot__logo img,
.sb-foot__logo svg {
  height: 48px;
  width: auto;
  display: block;
}
.sb-foot__tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: #3a3a3a;
  margin: 0 0 22px;
  line-height: 1.4;
}
.sb-foot__addr {
  font-style: normal;
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 18px;
}
.sb-foot__addr a { color: inherit; text-decoration: none; }
.sb-foot__addr a:hover { color: #009ABF; }
.sb-foot__phone {
  font-family: inherit;
  font-size: 15px;
  color: #5a5a5a;
  text-decoration: none;
  display: inline-block;
  line-height: 1.6;
}
.sb-foot__phone:hover { text-decoration: underline; }

.sb-foot__heading {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 14px;
  font-weight: 600;
}
.sb-foot__rule {
  border: 0;
  border-top: 1px solid #d9d2c2;
  margin: 0 0 22px;
}

.sb-foot__menu { display: flex; flex-direction: column; gap: 10px; }
.sb-foot__menu ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sb-foot__menu a, .sb-foot__link {
  color: #2a2a2a;
  text-decoration: none;
  font-size: 15px;
  transition: color .15s ease;
}
.sb-foot__menu a:hover, .sb-foot__link:hover { color: #009ABF; }

.sb-foot__hours-list { margin: 0; }
.sb-foot__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  font-size: 15px;
}
.sb-foot__hours-row dt { color: #2a2a2a; margin: 0; }
.sb-foot__hours-row dd { color: #5a5a5a; margin: 0; font-variant-numeric: tabular-nums; }
.sb-foot__hours-row dd.closed { color: #c97a6a; font-style: italic; }

.sb-footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #e0d9c8;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.sb-foot__copy {
  margin: 0;
  font-size: 13px;
  color: #6a6a6a;
}
.sb-foot__copy .sb-foot__credit { color: #009ABF; text-decoration: none; }
.sb-foot__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.sb-foot__legal a {
  color: #5a5a5a;
  font-size: 13px;
  text-decoration: none;
}
.sb-foot__legal a:hover { color: #009ABF; }
.sb-foot__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.sb-foot__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d9d2c2;
  color: #2a2a2a;
  border-radius: 4px;
  transition: all .15s ease;
}
.sb-foot__social a:hover { color: #fff; background: #009ABF; border-color: #009ABF; }

@media (max-width: 960px) {
  .sb-footer-cta { padding: 44px 20px; margin-top: 64px; }
  .sb-footer-cta__inner { grid-template-columns: 1fr; gap: 24px; }
  .sb-footer-cta__btn { justify-content: center; width: 100%; }
  .sb-footer { padding: 56px 20px 28px; }
  .sb-footer__grid { grid-template-columns: 1fr; gap: 44px; }
  .sb-footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 40px; }
  .sb-footer__bottom .sb-foot__legal { order: 1; }
  .sb-footer__bottom .sb-foot__social { order: 2; }
  .sb-footer__bottom .sb-foot__copy { order: 3; }
  .sb-foot__legal { gap: 16px; }
}

/* Override the legacy dark footer if any leftover markup */
footer.bg-sudbed-footer { background: transparent !important; color: inherit !important; padding-top: 0 !important; }

/* ==========================================================================
   Visite virtuelle — refonte 2/3 + 1/3
   ========================================================================== */
.sb-vv-main { background: #f5f1ea; }
.sb-vv { padding: 64px 24px 96px; }
.sb-vv__container { max-width: 1320px; margin: 0 auto; }

.sb-vv__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}
.sb-vv__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #009ABF;
  margin: 0 0 14px;
}
.sb-vv__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 14px;
  color: #1a1a1a;
}
.sb-vv__title em { font-style: italic; color: #1a1a1a; }
.sb-vv__lead {
  max-width: 60ch;
  color: #5a5a5a;
  margin: 0;
  line-height: 1.55;
}
.sb-vv__badge {
  background: #0d2030;
  color: #fff;
  padding: 22px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 220px;
}
.sb-vv__badge-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  line-height: 1;
  color: #4ec6e7;
}
.sb-vv__badge-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sb-vv__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Plan interactif (col gauche) */
.sb-vv__map-wrap {
  display: flex;
  flex-direction: column;
  background: #0d2030;
  overflow: hidden;
  min-height: 520px;
}
.sb-vv__map-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  background: #1a1a1a;
  color: #cbd5e1;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sb-vv__map-bar-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
  letter-spacing: normal;
  color: #9ca3af;
  font-size: 13px;
}
.sb-vv__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ec6e7; display: inline-block;
}
.sb-vv__map {
  position: relative;
  flex: 1;
  width: 100%;
  background: #1f3144;
  overflow: hidden;
}
.sb-vv__map-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .25s ease;
}
.sb-vv__pin {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #4ec6e7;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.35), 0 0 0 4px rgba(78,198,231,.25);
  transform: translate(-50%, -50%);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none;
  cursor: pointer;
}
.sb-vv__pin:hover,
.sb-vv__pin.is-active {
  transform: translate(-50%, -50%) scale(1.12);
  background: #1a1a1a;
  box-shadow: 0 4px 14px rgba(0,0,0,.4), 0 0 0 6px rgba(78,198,231,.35);
}
.sb-vv__pin-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #009ABF;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}
.sb-vv__pin:hover .sb-vv__pin-tip,
.sb-vv__pin.is-active .sb-vv__pin-tip { opacity: 1; }

/* Liste chambres (col droite) */
.sb-vv__side {
  display: flex;
  flex-direction: column;
  background: transparent;
  min-height: 0;
}
.sb-vv__side-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 14px;
  font-weight: 600;
}
.sb-vv__side-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
  /* Hauteur calée sur la carte (520px) - titre */
  max-height: 520px;
  scrollbar-width: thin;
  scrollbar-color: #c7c0b1 transparent;
}
.sb-vv__side-list::-webkit-scrollbar { width: 8px; }
.sb-vv__side-list::-webkit-scrollbar-thumb { background: #c7c0b1; border-radius: 4px; }
.sb-vv__side-list::-webkit-scrollbar-track { background: transparent; }

.sb-vv__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e8e2d6;
  text-decoration: none;
  color: #1a1a1a;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.sb-vv__item:hover,
.sb-vv__item.is-active {
  border-color: #009ABF;
  background: #F2F2F2;
  transform: translateX(2px);
}
.sb-vv__item-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #4ec6e7;
  color: #009ABF;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  transition: background .15s ease, color .15s ease;
}
.sb-vv__item:hover .sb-vv__item-num,
.sb-vv__item.is-active .sb-vv__item-num {
  background: #009ABF; color: #fff; border-color: #009ABF;
}
.sb-vv__item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sb-vv__item-title {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}
.sb-vv__item-price {
  font-size: 13px;
  color: #009ABF;
}
.sb-vv__item-arrow {
  color: #9ca3af;
  flex-shrink: 0;
  transition: color .15s ease, transform .15s ease;
}
.sb-vv__item:hover .sb-vv__item-arrow,
.sb-vv__item.is-active .sb-vv__item-arrow {
  color: #009ABF;
  transform: translateX(2px);
}

.sb-vv__info {
  margin-top: 48px;
  background: #fff;
  border: 1px solid #e8e2d6;
  padding: 36px;
}
.sb-vv__info h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px;
  color: #1a1a1a;
}
.sb-vv__info p { margin: 0 0 20px; color: #5a5a5a; line-height: 1.6; }
.sb-vv__info-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.sb-vv__btn {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 26px;
  text-decoration: none;
  transition: all .18s ease;
}
.sb-vv__btn--primary { background: #009ABF; color: #fff; }
.sb-vv__btn--primary:hover { background: #007a9a; }
.sb-vv__btn--ghost { background: transparent; color: #009ABF; border: 1px solid #009ABF; }
.sb-vv__btn--ghost:hover { background: #009ABF; color: #fff; }

/* Tablet */
@media (max-width: 1024px) {
  .sb-vv__grid { grid-template-columns: 1fr; }
  .sb-vv__map-wrap { min-height: 460px; }
  .sb-vv__side-list { max-height: 360px; }
}

/* Mobile */
@media (max-width: 640px) {
  .sb-vv { padding: 40px 16px 64px; }
  .sb-vv__header { grid-template-columns: 1fr; gap: 20px; }
  .sb-vv__badge { align-self: flex-start; min-width: 0; padding: 16px 20px; flex-direction: row; align-items: center; gap: 14px; }
  .sb-vv__badge-num { font-size: 28px; }
  .sb-vv__map-wrap { min-height: 360px; }
  .sb-vv__pin { width: 36px; height: 36px; font-size: 13px; }
  .sb-vv__info { padding: 24px; }
  .sb-vv__btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Trustindex widget — homepage Particulier / Professionnel
   ========================================================================== */
.sudbed-trustindex { border-top: 1px solid rgba(0,0,0,.04); }
.sudbed-trustindex__widget { max-width: 1200px; margin: 0 auto; }
.sudbed-trustindex__widget .ti-widget,
.sudbed-trustindex__widget .ti-widget * { font-family: inherit !important; }
.sudbed-trustindex__widget .ti-widget { background: transparent !important; }
.sudbed-trustindex__widget .ti-header { padding-top: 0 !important; }
.sudbed-trustindex + .sudbed-faq-autoslot,
.sudbed-trustindex + .sudbed-faq-anchor-link { margin-top: 0; }
@media (max-width: 640px) {
  .sudbed-trustindex { padding-left: .25rem; padding-right: .25rem; }
}


/* ==========================================================================
   Nos solutions par secteurs — Ruban horizontal sombre (6 colonnes)
   Variante SudBed : bleu maison à la place du bleu nuit.
   ========================================================================== */
.sudbed-sectors {
  background: #F2F2F2;
  color: #111827;
  padding: 6rem 1.5rem 7rem;
}
@media (min-width: 768px) { .sudbed-sectors { padding: 8rem 2rem 9rem; } }

.sudbed-sectors__inner {
  max-width: 1280px; margin: 0 auto;
}

.sudbed-sectors__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.sudbed-sectors__eyebrow {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: #009ABF; font-weight: 600;
  margin: 0 0 1rem;
}
.sudbed-sectors__title {
  font-family: inherit;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 500; color: #111827; line-height: 1.1;
  margin: 0; letter-spacing: -.01em;
}
.sudbed-sectors__title em {
  font-family: "Dancing Script", cursive;
  font-style: normal; font-weight: 600; color: #000;
}
.sudbed-sectors__lead {
  max-width: 32ch; margin: 0;
  color: #4b5563;
  font-size: .9rem; line-height: 1.55;
  text-align: right;
  align-self: flex-end;
}

.sudbed-sectors__rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(209,213,219,0) 0%, rgba(209,213,219,.6) 50%, rgba(209,213,219,0) 100%);
  margin: 2.5rem 0 3rem;
}

.sudbed-sectors__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .sudbed-sectors__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 900px)  { .sudbed-sectors__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1200px) { .sudbed-sectors__grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.sudbed-sectors__col {
  position: relative;
  display: flex; flex-direction: column;
  padding: 2.25rem 2rem 2.25rem;
  text-decoration: none; color: #111827;
  background: #ffffff;
  border-radius: 24px;
  box-shadow:
    0 1px 2px rgba(15,23,42,0.04),
    0 8px 24px -12px rgba(15,23,42,0.08);
  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s cubic-bezier(.22,.61,.36,1),
    background .25s ease;
}
.sudbed-sectors__col:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15,23,42,0.04),
    0 22px 48px -18px rgba(0,154,191,0.28);
}
.sudbed-sectors__col:hover .sudbed-sectors__num { color: #009ABF; }
.sudbed-sectors__col:hover .sudbed-sectors__col-cta { color: #009ABF; }
.sudbed-sectors__col:hover .sudbed-sectors__col-cta::before { width: 100%; opacity: 1; }

.sudbed-sectors__num {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: #9ca3af; font-weight: 600;
  margin-bottom: 1.25rem; display: block;
  transition: color .25s ease;
}
.sudbed-sectors__col-title {
  font-family: inherit;
  font-size: 1.25rem; font-weight: 500; line-height: 1.25;
  color: #111827; margin: 0 0 .9rem;
  letter-spacing: -.01em;
}
.sudbed-sectors__col-title em {
  font-family: "Dancing Script", cursive;
  font-style: normal; font-weight: 600; color: #000;
}
.sudbed-sectors__col-desc {
  font-size: .9rem; line-height: 1.65;
  color: #5b6370; margin: 0 0 2rem;
}
.sudbed-sectors__col-cta {
  position: relative;
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .55rem;
  padding-bottom: .35rem;
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: #111827;
  align-self: flex-start;
  transition: color .25s ease;
}
.sudbed-sectors__col-cta::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 24px; height: 1px;
  background: #009ABF;
  opacity: .55;
  transition: width .35s cubic-bezier(.22,.61,.36,1), opacity .25s ease;
}
.sudbed-sectors__col-cta svg { width: 14px; height: 14px; transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.sudbed-sectors__col:hover .sudbed-sectors__col-cta svg { transform: translateX(5px); }

@media (max-width: 640px) {
  .sudbed-sectors__head { flex-direction: column; }
  .sudbed-sectors__lead { text-align: left; align-self: flex-start; }
}

/* ============================================================
   Catalogue Pro — formulaire de demande
============================================================ */
.sb-cat-form {
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sb-cat-form__field { display: flex; flex-direction: column; gap: 8px; }
.sb-cat-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: #3F3F3F;
  letter-spacing: .01em;
}
.sb-cat-form__field input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  font-size: 15px;
  color: #3F3F3F;
  background: #fafafa;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.sb-cat-form__field input:focus {
  outline: none;
  border-color: #009ABF;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0,154,191,0.12);
}
.sb-cat-form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f7fbfc;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e2eef2;
}
.sb-cat-form__consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #009ABF;
  flex-shrink: 0;
  cursor: pointer;
}
.sb-cat-form__consent label {
  font-size: 13px;
  line-height: 1.55;
  color: #555;
  cursor: pointer;
}
.sb-cat-form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.sb-cat-form__submit {
  position: relative;
  background: #009ABF;
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 14px 30px rgba(0,154,191,0.25);
}
.sb-cat-form__submit:hover:not(:disabled) {
  background: #007a9a;
  transform: translateY(-1px);
}
.sb-cat-form__submit:disabled { opacity: .7; cursor: not-allowed; }
.sb-cat-form__submit-loading { display: none; }
.sb-cat-form.is-loading .sb-cat-form__submit-label { display: none; }
.sb-cat-form.is-loading .sb-cat-form__submit-loading { display: inline; }
.sb-cat-form__legal {
  font-size: 12px;
  color: #9aa0a6;
  text-align: center;
  line-height: 1.55;
  margin: 0;
}
.sb-cat-form__feedback {
  font-size: 14px;
  text-align: center;
  padding: 0;
  border-radius: 12px;
  line-height: 1.55;
}
.sb-cat-form__feedback.is-success {
  background: #ecfdf5;
  color: #047857;
  padding: 14px 18px;
  border: 1px solid #a7f3d0;
}
.sb-cat-form__feedback.is-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 14px 18px;
  border: 1px solid #fecaca;
}
@media (max-width: 640px) {
  .sb-cat-form { padding: 28px 22px; border-radius: 22px; }
}
