/* =========================================================
   guidechirurgieesthetique.com - Design System v1.0
   ========================================================= */

:root {
  --navy: #0A2540;
  --ivory: #FAF7F2;
  --blue: #1E4FD8;
  --blue-dark: #183FAA;
  --blue-soft: rgba(30, 79, 216, 0.08);
  --white: #FFFFFF;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --hairline: #E5E7EB;
  --charcoal: #111827;
  --success: #047857;
  --success-bg: #ECFDF5;
  --accent-cyan: #40C8FF;
  --accent-violet: #6E7CFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow { max-width: 780px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
  z-index: 50;
  overflow: hidden;
}
.nav::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(30, 79, 216, 0.55) 30%, rgba(64, 200, 255, 0.7) 60%, transparent 100%);
  animation: navLineMove 9s linear infinite;
  pointer-events: none;
}
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 40px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  flex-shrink: 0;
}
.nav__brand svg { width: 28px; height: 24px; }
.nav__brand-text {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.nav__brand-text em {
  font-style: normal;
  color: var(--blue);
}
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  color: var(--gray);
  transition: color 0.15s;
  font-weight: 500;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--accent-cyan) 100%);
  transition: width 0.25s ease;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--navy); }
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__cta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 7px;
  transition: background 0.15s;
  position: relative;
  overflow: hidden;
}
.nav__cta:hover { background: #081D33; }
.nav__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 90%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.25) 48%, transparent 100%);
  transition: left 0.6s ease;
}
.nav__cta:hover::before { left: 130%; }
.nav__cta--buy,
a.nav__cta.nav__cta--buy {
  background-color: #1E4FD8 !important;
  background-image: none !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  border: 1px solid #1E4FD8;
  padding: 10px 20px !important;
  text-shadow: 0 1px 2px rgba(10, 37, 64, 0.4);
  box-shadow:
    inset 0 -2px 0 rgba(10, 37, 64, 0.35),
    0 6px 16px -4px rgba(30, 79, 216, 0.55);
  position: relative;
  z-index: 1;
}
/* Disable the inherited sheen pseudo-element on the buy variant so the
   solid blue background is fully visible at rest */
.nav__cta--buy::before {
  display: none !important;
}
.nav__cta--buy::after {
  content: "✦";
  margin-left: 6px;
  color: #FFD479;
  font-size: 11px;
  display: inline-block;
  vertical-align: middle;
  text-shadow: 0 0 8px rgba(255, 212, 121, 0.6);
}
.nav__cta--buy:hover,
a.nav__cta.nav__cta--buy:hover {
  background-color: #183FAA !important;
  box-shadow:
    inset 0 -2px 0 rgba(10, 37, 64, 0.5),
    0 0 0 4px rgba(30, 79, 216, 0.18),
    0 10px 26px -6px rgba(30, 79, 216, 0.6);
  transform: translateY(-1px);
}

/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.h1 em { font-style: italic; font-weight: 300; color: var(--blue); }
.h2 {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.lead {
  font-size: 20px;
  color: var(--gray);
  line-height: 1.5;
}
.body-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
}
.body-text p { margin-bottom: 20px; }
.body-text h2 { margin: 48px 0 20px; }
.body-text h3 { margin: 36px 0 16px; }
.body-text ul, .body-text ol {
  margin: 0 0 24px 20px;
  padding-left: 4px;
}
.body-text li { margin-bottom: 10px; padding-left: 8px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, #3062EA 70%, var(--accent-violet) 100%);
  background-size: 180% 180%;
  color: var(--white);
  animation: btnGradientFlow 7s ease infinite;
}
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn--secondary { background: var(--navy); color: var(--white); }
.btn--secondary:hover { background: #081D33; }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 12.5px 24.5px;
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: rgba(10, 37, 64, 0.06); }
.section--navy .btn--ghost {
  color: var(--ivory);
  border: 1.5px solid rgba(250, 247, 242, 0.25);
  padding: 12.5px 24.5px;
}
.section--navy .btn--ghost:hover {
  background: rgba(250, 247, 242, 0.08);
  border-color: rgba(250, 247, 242, 0.5);
}
.section--navy .btn--outline {
  color: var(--ivory);
  border-color: rgba(250, 247, 242, 0.4);
}
.section--navy .btn--outline:hover {
  background: var(--ivory);
  color: var(--navy);
  border-color: var(--ivory);
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* =========================================================
   BADGES
   ========================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 20px;
}
.badge svg { width: 12px; height: 12px; }
.badge--verified { background: var(--blue); color: var(--white); }
.badge--available {
  background: var(--success-bg);
  color: var(--success);
}
.badge--available::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
}
.badge--soft { background: var(--blue-soft); color: var(--blue); }
.badge--neutral { background: rgba(10, 37, 64, 0.06); color: var(--navy); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 96px 0;
}
.section--tight { padding: 64px 0; }
.section--divider { border-bottom: 1px solid var(--hairline); }
.section--navy { background: var(--navy); color: var(--ivory); }
.section--navy .eyebrow { color: #7DA3FF; }
.section--navy .h2 { color: var(--ivory); }
.section--navy .lead { color: rgba(250, 247, 242, 0.7); }

.section__head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 100px 0 80px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 6%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(64, 200, 255, 0.35), rgba(30, 79, 216, 0) 70%);
  filter: blur(1px);
  pointer-events: none;
  animation: floatDrift 12s ease-in-out infinite;
}
.hero--editorial {
  padding: 120px 0 100px;
  text-align: center;
}
.hero__title { margin-bottom: 24px; max-width: 900px; }
.hero--editorial .hero__title { margin-left: auto; margin-right: auto; }
.hero__lead { max-width: 600px; margin-bottom: 36px; }
.hero--editorial .hero__lead { margin-left: auto; margin-right: auto; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero--editorial .hero__ctas { justify-content: center; }

.disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  max-width: 680px;
  margin-top: 32px;
}
.disclaimer svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================================
   SEARCH BAR
   ========================================================= */
.search-bar {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  max-width: 720px;
  box-shadow: 0 8px 24px -12px rgba(10, 37, 64, 0.12);
}
.search-bar input {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border: none;
  background: transparent;
  color: var(--charcoal);
  border-radius: 8px;
}
.search-bar input:focus { outline: none; background: var(--ivory); }

/* =========================================================
   CARDS
   ========================================================= */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px -18px rgba(10, 37, 64, 0.28);
  border-color: rgba(30, 79, 216, 0.24);
}
.card__image {
  height: 200px;
  background: linear-gradient(135deg, #0A2540 0%, #1E4FD8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.02em;
  position: relative;
}
.card__image--alt {
  background: linear-gradient(135deg, #1E4FD8 0%, #0A2540 100%);
}
.card__image--soft {
  background: linear-gradient(135deg, #E8EEF9 0%, #FAF7F2 100%);
  color: var(--navy);
}
.card__badge-wrap {
  position: absolute;
  top: 14px;
  right: 14px;
}
.card__body { padding: 26px; }
.card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.card__title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.card__meta {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.5;
}
.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.card__location {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
}

.card--intervention { text-align: left; }
.card--intervention .card__body { padding: 32px; }
.card--intervention .card__title { font-size: 26px; margin-bottom: 10px; }

.card--article {
  display: flex;
  flex-direction: column;
}
.card--article .card__image {
  height: 180px;
  font-size: 32px;
}
.card--article .card__title { font-size: 20px; }

/* =========================================================
   FORMS
   ========================================================= */
.form {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 40px;
  max-width: 560px;
}
.field { margin-bottom: 20px; }
.field__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.field__input,
.field__select,
.field__textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 79, 216, 0.12);
}
.field__input::placeholder { color: var(--gray-light); }
.field__textarea { resize: vertical; min-height: 120px; }
.field__help {
  font-size: 12px;
  color: var(--gray);
  margin-top: 6px;
}

/* =========================================================
   FILTER SIDEBAR (for chirurgiens listing)
   ========================================================= */
.listing {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}
.filters {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 28px;
}
.filters__title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.filter-group { margin-bottom: 24px; }
.filter-group__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--charcoal);
  cursor: pointer;
}
.checkbox input {
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
}

.results__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.results__count {
  font-size: 14px;
  color: var(--gray);
}
.results__count strong { color: var(--navy); font-weight: 600; }

/* =========================================================
   INTERVENTION PAGE (article-like)
   ========================================================= */
.article-header {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--hairline);
}
.article-header__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.article-header__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 20px;
  max-width: 780px;
}
.article-header__lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--gray);
  max-width: 680px;
}
.article-header__byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--gray);
}
.byline-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #1E4FD8);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 500;
}

.article-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  padding: 64px 0;
  align-items: start;
}
.toc {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
}
.toc__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc li { padding: 8px 0; border-top: 1px solid var(--hairline); }
.toc li:first-child { border-top: none; }
.toc a {
  font-size: 14px;
  color: var(--charcoal);
  transition: color 0.15s;
}
.toc a:hover { color: var(--blue); }

.price-box {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 32px;
  margin: 32px 0;
}
.price-box__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.price-box__range {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.price-box__note {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.faq-item {
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item__q {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.faq-item__a {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.65;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.value {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.value:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -20px rgba(10, 37, 64, 0.26);
  border-color: rgba(30, 79, 216, 0.22);
}
.value__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value__title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.value__text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  padding: 80px 0 40px;
  background: var(--navy);
  color: rgba(250, 247, 242, 0.85);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
  margin-bottom: 32px;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ivory);
  margin-bottom: 20px;
}
.site-footer__brand svg { width: 30px; height: 26px; }
.site-footer__brand-text {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
}
.site-footer__brand-text em { font-style: normal; color: #7DA3FF; }
.site-footer__about {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.65);
  max-width: 320px;
}
.site-footer__col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 18px;
}
.site-footer__links { list-style: none; padding: 0; margin: 0; }
.site-footer__links li { margin-bottom: 10px; }
.site-footer__links a {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.7);
  transition: color 0.15s;
}
.site-footer__links a:hover { color: var(--ivory); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.03em;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .listing { grid-template-columns: 1fr; }
  .filters { position: static; }
  .article-body { grid-template-columns: 1fr; }
  .toc { position: static; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .container { padding: 0 20px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0; }
  .nav__links a:not(.nav__cta) { display: none; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .h2 { font-size: 32px; }
  .search-bar { grid-template-columns: 1fr; }
  .article-header { padding: 48px 0 32px; }
}

/* =========================================================
   V2 ENHANCEMENTS - Editorial polish
   ========================================================= */

/* Split hero with photography */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 620px;
  padding: 0;
  border-bottom: 1px solid var(--hairline);
}
.hero-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  max-width: 720px;
  margin-left: auto;
  width: 100%;
}
.hero-split__image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A2540 0%, #1E4FD8 100%);
}
.hero-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}
.hero-split__caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 37, 64, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ivory);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Photo card (replaces gradient cards with real imagery) */
.card__photo {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #E8EEF9 0%, #FAF7F2 100%);
}
.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover .card__photo img {
  transform: scale(1.04);
}
.card__photo--tall { height: 280px; }
.card__photo--short { height: 180px; }

.card__photo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 37, 64, 0.25) 100%);
  pointer-events: none;
}

/* Surgeon card refined (portrait photo) */
.surgeon-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.surgeon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -14px rgba(10, 37, 64, 0.2);
}
.surgeon-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #0A2540 0%, #1E4FD8 100%);
}
.surgeon-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}
.surgeon-card:hover .surgeon-card__photo img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.02);
}
.surgeon-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
}

/* Editorial article breakout image */
.article-figure {
  margin: 48px -40px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #0A2540 0%, #1E4FD8 100%);
}
.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-figure__caption {
  font-size: 13px;
  color: var(--gray);
  padding: 14px 20px;
  background: var(--white);
  font-style: italic;
  line-height: 1.5;
}

/* Drop cap for editorial body */
.body-text > p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 68px;
  line-height: 0.85;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--navy);
  font-weight: 400;
}

/* Feature tile with photo + text overlay */
.feature-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  background: #0A2540;
  transition: transform 0.3s ease;
}
.feature-tile:hover { transform: translateY(-3px); }
.feature-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}
.feature-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.4) 50%, transparent 80%);
}
.feature-tile__body {
  position: relative;
  padding: 40px 36px;
  z-index: 2;
}
.feature-tile__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7DA3FF;
  margin-bottom: 12px;
}
.feature-tile__title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.feature-tile__meta {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.75);
}

/* Asymmetric masonry for editorial feel */
.editorial-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.editorial-grid__secondary {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

/* Photo-less editorial tile variants */
.feature-tile--navy {
  background:
    radial-gradient(circle at 20% 80%, rgba(30,79,216,0.32), transparent 60%),
    linear-gradient(135deg, #0A2540 0%, #122E50 100%);
  color: var(--ivory);
}
.feature-tile--ivory {
  background:
    radial-gradient(circle at 80% 20%, rgba(30,79,216,0.05), transparent 55%),
    linear-gradient(135deg, #FAF7F2 0%, #EFE7DA 100%);
  color: var(--navy);
}
.feature-tile--ivory .feature-tile__tag { color: var(--blue); }
.feature-tile--ivory .feature-tile__meta { color: var(--gray); }

.feature-tile--soft {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.35), transparent 60%),
    linear-gradient(135deg, #DCE5F4 0%, #B5C5E4 100%);
  color: var(--navy);
}
.feature-tile--soft .feature-tile__tag { color: var(--blue); }
.feature-tile--soft .feature-tile__meta { color: var(--navy); opacity: 0.65; }

.feature-tile__issue {
  position: absolute;
  top: 28px;
  left: 36px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  z-index: 3;
}
.feature-tile__pull {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0.5;
  z-index: 3;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.feature-tile:hover .feature-tile__pull { opacity: 0.9; transform: translateX(2px); }
.feature-tile__rule {
  position: absolute;
  bottom: 28px;
  left: 36px;
  right: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.16;
}
.feature-tile--ivory .feature-tile__issue,
.feature-tile--soft .feature-tile__issue { padding-left: 0; }
.editorial-grid__secondary .feature-tile__issue { left: 28px; top: 22px; }
.editorial-grid__secondary .feature-tile__pull { right: 22px; top: 22px; width: 28px; height: 28px; }
.editorial-grid__secondary .feature-tile__rule { left: 28px; right: 28px; bottom: 22px; }

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat__number {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
  max-width: 180px;
}

/* Subtle entrance animation */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise-in {
  animation: riseIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.rise-in--d1 { animation-delay: 0.1s; }
.rise-in--d2 { animation-delay: 0.2s; }
.rise-in--d3 { animation-delay: 0.3s; }

/* Refined shadows */
.shadow-soft { box-shadow: 0 1px 2px rgba(10, 37, 64, 0.04), 0 4px 16px -8px rgba(10, 37, 64, 0.12); }
.shadow-lift { box-shadow: 0 4px 12px -4px rgba(10, 37, 64, 0.08), 0 16px 40px -16px rgba(10, 37, 64, 0.18); }

/* Better btn treatment with arrow */
.btn--arrow::after {
  content: '→';
  font-weight: 400;
  transition: transform 0.2s ease;
  margin-left: 4px;
}
.btn--arrow:hover::after { transform: translateX(3px); }

/* Image frame / thumbnail */
.img-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--white);
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tag cloud for interventions */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
  transition: all 0.15s ease;
}
.tag-cloud a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

/* Newsletter signup block */
.newsletter {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.newsletter__form {
  display: flex;
  gap: 8px;
}
.newsletter__form input {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--ivory);
}
.newsletter__form input:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}

@media (max-width: 1000px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split__image { min-height: 360px; order: -1; }
  .hero-split__content { padding: 56px 32px; max-width: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .article-figure { margin: 40px 0; }
}

@media (max-width: 700px) {
  .hero-split__content { padding: 48px 20px; }
  .stats { grid-template-columns: 1fr; gap: 24px; }
  .stat__number { font-size: 44px; }
  .feature-tile__title { font-size: 24px; }
  .body-text > p:first-of-type::first-letter { font-size: 52px; }
  .newsletter__form { flex-direction: column; }
}

/* Surgeon avatar block (typographic, no external photo) */
.surgeon-card__avatar {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Fraunces', serif;
}
.surgeon-card__avatar--ivory {
  background:
    radial-gradient(circle at 80% 20%, rgba(30,79,216,0.05), transparent 55%),
    linear-gradient(135deg, #FAF7F2 0%, #EFE7DA 100%);
  color: var(--navy);
}
.surgeon-card__avatar--navy {
  background:
    radial-gradient(circle at 20% 80%, rgba(30,79,216,0.32), transparent 60%),
    linear-gradient(135deg, #0A2540 0%, #122E50 100%);
  color: var(--ivory);
}
.surgeon-card__avatar--soft {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.35), transparent 60%),
    linear-gradient(135deg, #DCE5F4 0%, #B5C5E4 100%);
  color: var(--navy);
}
.surgeon-card__initials {
  font-size: 68px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.surgeon-card__initials em {
  font-style: italic;
  font-weight: 300;
}
.surgeon-card__avatar .surgeon-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
}
.surgeon-card__avatar-mark {
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
}
.surgeon-card__avatar-rule {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.18;
}

/* Editorial card visual block (replacement for photo thumbnails) */
.card__editorial {
  position: relative;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
}
.card__editorial--ivory {
  background:
    radial-gradient(circle at 80% 20%, rgba(30,79,216,0.05), transparent 55%),
    linear-gradient(135deg, #FAF7F2 0%, #EFE7DA 100%);
  color: var(--navy);
}
.card__editorial--navy {
  background:
    radial-gradient(circle at 20% 80%, rgba(30,79,216,0.35), transparent 60%),
    linear-gradient(135deg, #0A2540 0%, #122E50 100%);
  color: var(--ivory);
}
.card__editorial--soft {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.4), transparent 60%),
    linear-gradient(135deg, #DCE5F4 0%, #B8C7E5 100%);
  color: var(--navy);
}
.card__editorial-label {
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}
.card__editorial-mark {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  opacity: 0.55;
}
.card__editorial-title {
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
  padding: 0 24px;
}
.card__editorial-title em {
  font-style: italic;
  display: block;
  font-size: 0.72em;
  margin-top: 6px;
  opacity: 0.85;
}
.card__editorial-rule {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.18;
}
.card--intervention:hover .card__editorial-mark { opacity: 0.85; }

/* Subtle tonal unification filter on remaining photos */
.feature-tile img {
  filter: saturate(0.8) contrast(0.97) brightness(0.98);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.feature-tile:hover img {
  filter: saturate(1) contrast(1);
}

/* Inline horizontal filter bar */
.filter-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 20px 24px;
  align-items: end;
}
.filter-bar__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.filter-bar__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.filter-bar__select,
.filter-bar__input {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 11px 14px;
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.filter-bar__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%236B7280'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}
.filter-bar__input { cursor: text; }
.filter-bar__select:focus,
.filter-bar__input:focus {
  outline: none;
  border-color: var(--blue);
  background-color: var(--white);
}
.filter-bar .btn { white-space: nowrap; height: 44px; }

@media (max-width: 900px) {
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .filter-bar .btn { grid-column: span 2; }
}
@media (max-width: 560px) {
  .filter-bar { grid-template-columns: 1fr; padding: 18px; }
  .filter-bar .btn { grid-column: span 1; }
}

/* =========================================================
   TRUST ROW (hero credibility signals)
   ========================================================= */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.trust-row__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.trust-row__item svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  flex-shrink: 0;
}
.trust-row__item strong {
  color: var(--navy);
  font-weight: 600;
}

/* =========================================================
   CITY GRID (annuaire par ville)
   ========================================================= */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.city-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 22px 20px;
  min-height: 110px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--navy);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.city-tile::after {
  content: "→";
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--gray-light);
  transition: color 0.2s, transform 0.2s;
}
.city-tile:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px rgba(10, 37, 64, 0.18);
}
.city-tile:hover::after {
  color: var(--blue);
  transform: translateX(2px);
}
.city-tile__name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.city-tile__count {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .city-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   CRITERION (badge vérifié - 3 critères)
   ========================================================= */
.criterion {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  position: relative;
}
.criterion__num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.criterion__title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 12px;
}
.criterion__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

/* =========================================================
   PRACTITIONER CTA (bloc inscription praticiens)
   ========================================================= */
.practitioner-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.practitioner-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
}
.practitioner-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.practitioner-cta__actions .btn {
  justify-content: center;
  text-align: center;
}

@media (max-width: 800px) {
  .practitioner-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 28px;
  }
}

/* =========================================================
   FOOTER DISCLAIMER (mentions YMYL en pied)
   ========================================================= */
.site-footer__disclaimer {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.55);
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 2px solid #7DA3FF;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 4px 4px 0;
  font-style: italic;
}

/* =========================================================
   HERO BACKGROUND (image plein écran derrière le texte)
   ========================================================= */
.hero--background {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.78) contrast(0.96);
}
.hero-bg__tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.62) 0%, rgba(10, 37, 64, 0.78) 60%, rgba(10, 37, 64, 0.92) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(30, 79, 216, 0.22), transparent 60%);
  pointer-events: none;
}
.hero-bg__inner {
  position: relative;
  z-index: 1;
}
.eyebrow--light {
  color: #BBD0FF;
}
.hero__title--light {
  color: var(--ivory);
  margin-left: auto;
  margin-right: auto;
}
.hero__title--light em {
  color: #BBD0FF;
  font-style: italic;
  font-weight: 300;
}
.hero__lead--light {
  color: rgba(250, 247, 242, 0.85);
  margin-left: auto;
  margin-right: auto;
}
.hero--background .search-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px -12px rgba(10, 37, 64, 0.45);
  margin-left: auto;
  margin-right: auto;
}
.disclaimer--glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-left: auto;
  margin-right: auto;
}
.disclaimer--glass svg {
  color: #BBD0FF;
}
.trust-row--light {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  justify-content: center;
}
.trust-row--light .trust-row__item {
  color: rgba(250, 247, 242, 0.85);
}
.trust-row--light .trust-row__item svg {
  color: #BBD0FF;
}
.trust-row--light .trust-row__item strong {
  color: var(--ivory);
}

@media (max-width: 760px) {
  .hero--background {
    padding: 90px 0 80px;
  }
  .trust-row--light {
    gap: 18px;
  }
}

/* =========================================================
   HERO SPLIT (avec photo - conservé pour autres pages)
   ========================================================= */
.hero--split {
  padding: 0;
}
.hero--split .hero-split {
  border-bottom: none;
}
.hero--split .hero-split__content {
  padding: 80px 56px 80px 0;
  max-width: 640px;
  margin-left: 0;
}
.hero--split .hero__title { max-width: none; }
.hero--split .hero__lead { max-width: none; }
.hero--split .trust-row {
  justify-content: flex-start;
  gap: 24px;
}
.hero-split__tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 37, 64, 0.35) 0%, rgba(30, 79, 216, 0.18) 60%, rgba(10, 37, 64, 0.45) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

@media (max-width: 980px) {
  .hero--split .hero-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero--split .hero-split__content {
    padding: 60px 0 40px;
  }
  .hero-split__image {
    min-height: 320px;
  }
}

/* =========================================================
   CARD PHOTO EDITORIAL (photo + label éditorial overlay)
   ========================================================= */
.card__photo-editorial {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #0A2540;
}
.card__photo-editorial img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.78) contrast(0.94) brightness(0.92);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card__photo-editorial--portrait img {
  object-position: center 24%;
}
.card__photo-editorial--detail img {
  object-position: center 38%;
}
.card__photo-editorial--soft img {
  object-position: center 30%;
  filter: saturate(0.72) contrast(0.93) brightness(0.96);
}
.card:hover .card__photo-editorial img {
  transform: scale(1.05);
}
.card__photo-editorial-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.15) 0%, rgba(10, 37, 64, 0.55) 75%, rgba(10, 37, 64, 0.85) 100%);
  pointer-events: none;
}
.card__photo-editorial-tint--navy {
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.45) 0%, rgba(10, 37, 64, 0.7) 60%, rgba(10, 37, 64, 0.92) 100%);
}
.card__photo-editorial-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 28px 24px;
  z-index: 2;
  color: var(--ivory);
}
.card__photo-editorial-overlay .card__editorial-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.85);
  align-self: flex-start;
  background: rgba(10, 37, 64, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.card__photo-editorial-overlay .card__editorial-title {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ivory);
  text-shadow: 0 2px 12px rgba(10, 37, 64, 0.4);
}
.card__photo-editorial-overlay .card__editorial-title em {
  font-style: italic;
  font-weight: 300;
  color: #BBD0FF;
}

/* Force feature-tile photos visible regardless of variant */
.feature-tile--photo img {
  filter: saturate(0.85) contrast(0.97);
}

/* =========================================================
   FOR SALE BANNER (projet à vendre - non en production)
   ========================================================= */
.for-sale-banner {
  background: linear-gradient(135deg, #0A2540 0%, #1E4FD8 100%);
  color: var(--ivory);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}
.for-sale-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}
.for-sale-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--ivory);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.for-sale-banner__pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFD479;
  box-shadow: 0 0 0 4px rgba(255, 212, 121, 0.18);
}
.for-sale-banner__text {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.92);
  font-weight: 500;
}
.for-sale-banner__text strong {
  color: var(--ivory);
  font-weight: 700;
}
.for-sale-banner__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--ivory);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.for-sale-banner__cta:hover {
  opacity: 0.8;
}

/* =========================================================
   FOR SALE NOTICE (encadré dans le corps des pages légales)
   ========================================================= */
.for-sale-notice {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 32px 0 40px;
  position: relative;
}
.for-sale-notice__label {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.for-sale-notice__title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 12px;
}
.for-sale-notice__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal);
}
.for-sale-notice__text + .for-sale-notice__text {
  margin-top: 10px;
}
.for-sale-notice__contact {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--gray);
}
.for-sale-notice__contact strong {
  color: var(--navy);
}

/* =========================================================
   LEGAL PAGE LAYOUT (mentions, CGU, RGPD)
   ========================================================= */
.legal-hero {
  background: var(--ivory);
  padding: 64px 0 32px;
  border-bottom: 1px solid var(--hairline);
}
.legal-hero__inner {
  max-width: 780px;
  margin: 0 auto;
}
.legal-hero__crumb {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.legal-hero__title {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.legal-hero__title em {
  font-style: italic;
  color: var(--blue);
  font-weight: 300;
}
.legal-hero__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray);
  max-width: 640px;
}
.legal-hero__updated {
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 20px;
  font-style: italic;
}

.legal-body {
  padding: 48px 0 96px;
}
.legal-body__inner {
  max-width: 780px;
  margin: 0 auto;
}
.legal-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 56px 0 18px;
  line-height: 1.25;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
  line-height: 1.3;
}
.legal-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.legal-body ul, .legal-body ol {
  margin: 0 0 22px 22px;
  padding: 0;
}
.legal-body li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 8px;
  padding-left: 4px;
}
.legal-body a {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.legal-body a:hover {
  color: var(--blue-dark);
}
.legal-body strong {
  color: var(--navy);
  font-weight: 600;
}
.legal-toc {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-toc__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: decimal;
  margin: 0 0 0 20px;
  padding: 0;
}
.legal-toc li {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--gray);
}
.legal-toc li a {
  color: var(--navy);
  border-bottom: none;
}
.legal-toc li a:hover {
  color: var(--blue);
}

@media (max-width: 600px) {
  .legal-hero { padding: 40px 0 24px; }
  .legal-hero__title { font-size: 34px; }
  .legal-body { padding: 32px 0 64px; }
  .legal-body h2 { font-size: 24px; margin-top: 40px; }
  .for-sale-notice { padding: 22px 20px; }
  .for-sale-notice__title { font-size: 20px; }
}

/* =========================================================
   ✦ VISUAL ENHANCEMENTS — animations & modern hacks
   ========================================================= */

/* ---------- SCROLL PROGRESS BAR (top of page) ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #1E4FD8, #7DA3FF, #1E4FD8);
  background-size: 200% 100%;
  z-index: 100;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(30, 79, 216, 0.6);
  animation: progressShimmer 3s linear infinite;
}
@keyframes progressShimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ---------- ANIMATED MARQUEE TICKER ---------- */
.site-ticker {
  background: var(--navy);
  color: var(--ivory);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-ticker::before,
.site-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

/* ========== SCROLL REVEAL ========== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1), transform 0.9s cubic-bezier(0.2,0.8,0.2,1), filter 0.9s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-on-scroll.reveal-stagger-1 { transition-delay: 0.08s; }
.reveal-on-scroll.reveal-stagger-2 { transition-delay: 0.16s; }
.reveal-on-scroll.reveal-stagger-3 { transition-delay: 0.24s; }
.reveal-on-scroll.reveal-stagger-4 { transition-delay: 0.32s; }

/* ========== NAV SHRINK ========== */
.nav { transition: padding 0.3s, background 0.3s, box-shadow 0.3s; }
.nav.is-shrunk { background: rgba(250,247,242,0.96); box-shadow: 0 1px 16px rgba(10,37,64,0.08); }
.nav.is-shrunk .nav__inner { padding: 12px 0; }

/* ========== HERO SPOTLIGHT ========== */
.hero--background { --spot-x: 50%; --spot-y: 40%; }
.hero--background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 600px at var(--spot-x) var(--spot-y), rgba(125,163,255,0.18), transparent 70%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}
.hero--background .hero-bg__inner { position: relative; z-index: 2; }

/* ========== STATS GRADIENT TEXT ========== */
.stat__number {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--navy) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* ========== BADGE PULSE ========== */
.badge--verified { position: relative; }
.badge--verified::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--blue);
  opacity: 0;
  animation: badgePulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes badgePulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.6); }
}

/* ========== FAB BACK TO TOP ========== */
.fab-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 60;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 8px 24px -8px rgba(10,37,64,0.4);
}
.fab-top.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.fab-top:hover { background: var(--blue); }
.fab-top svg { width: 18px; height: 18px; }

/* ========== H1 WORD REVEAL ========== */
.h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  animation: wordReveal 0.9s cubic-bezier(0.2,0.8,0.2,1) forwards;
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ========== MOBILE BURGER + DRAWER ========== */
.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav__burger svg { width: 20px; height: 20px; }
.nav__burger:hover { background: rgba(10,37,64,0.04); border-color: var(--navy); }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100dvh;
  background: var(--ivory);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -16px 0 48px -16px rgba(10,37,64,0.25);
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--hairline);
}
.mobile-drawer__close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mobile-drawer__close svg { width: 18px; height: 18px; }
.mobile-drawer__brand {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--navy);
  font-weight: 500;
}
.mobile-drawer__brand em { font-style: normal; color: var(--blue); }
.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  gap: 4px;
}
.mobile-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 10px;
  transition: background 0.15s;
}
.mobile-drawer__link::after {
  content: "→";
  color: var(--gray-light);
  font-family: 'Fraunces', serif;
  font-size: 18px;
}
.mobile-drawer__link:hover { background: rgba(10,37,64,0.04); color: var(--blue); }
.mobile-drawer__cta {
  margin: 16px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-drawer__buy {
  background: #1E4FD8;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px -8px rgba(30,79,216,0.45);
  min-height: 52px;
}
.mobile-drawer__buy::before { content: "✦"; color: #FFD479; }
.mobile-drawer__buy:hover { background: #183FAA; }
.mobile-drawer__cta .btn { justify-content: center; min-height: 52px; }
.mobile-drawer__footer {
  margin-top: auto;
  padding: 20px 24px;
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  color: var(--gray);
  line-height: 1.55;
}
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,37,64,0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
body.drawer-open { overflow: hidden; }

/* ========== STICKY MOBILE BUY ========== */
.sticky-buy {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1E4FD8;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  min-height: 52px;
  border-radius: 12px;
  box-shadow: 0 12px 32px -8px rgba(30,79,216,0.45);
  text-align: center;
  transition: opacity 0.3s, transform 0.2s;
}
.sticky-buy::before { content: "✦"; color: #FFD479; }
.sticky-buy:active { transform: scale(0.98); }

/* ========== MOBILE BREAKPOINT ≤900px ========== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { gap: 16px; padding: 14px 0; }
  .nav.is-shrunk .nav__inner { padding: 10px 0; }
  .nav__brand-text { font-size: 15px; }
  .container { padding: 0 20px; }

  .for-sale-banner__inner {
    flex-direction: column;
    gap: 8px;
    padding: 4px 0;
    text-align: center;
  }
  .for-sale-banner__text { font-size: 13px; line-height: 1.45; }

  .hero--background { padding: 64px 0 72px; }
  .hero__title { font-size: clamp(32px, 7vw, 44px); margin-bottom: 18px; }
  .hero__lead { font-size: 16px; line-height: 1.55; }

  .search-bar { grid-template-columns: 1fr; padding: 12px; gap: 8px; }
  .search-bar input { min-height: 48px; font-size: 16px; padding: 0 16px; }
  .search-bar .btn { min-height: 48px; font-size: 15px; }

  .disclaimer--glass { font-size: 13px; padding: 12px 14px; }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 22px;
    margin-top: 28px;
  }
  .trust-row--light { align-items: flex-start; justify-content: flex-start; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 36px 0; }
  .stat__number { font-size: 40px; }
  .stat__label { font-size: 12px; }

  .section { padding: 56px 0; }
  .section--tight { padding: 48px 0; }
  .h2 { font-size: clamp(26px, 6vw, 34px); }
  .lead { font-size: 16px; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; gap: 18px; }
  .editorial-grid { grid-template-columns: 1fr; gap: 16px; }
  .editorial-grid__secondary { grid-template-columns: 1fr; grid-template-rows: auto auto; gap: 16px; }

  .value { padding: 24px; }
  .card__body { padding: 22px; }
  .card__photo-editorial { height: 200px; }
  .card__photo-editorial-overlay .card__editorial-title { font-size: 28px; }

  .city-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .city-tile { min-height: 92px; padding: 16px 16px 14px; }
  .city-tile__name { font-size: 18px; }

  .criterion { padding: 24px 22px; }

  .practitioner-cta { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .practitioner-cta__actions { flex-direction: column; align-items: stretch; }
  .practitioner-cta__actions .btn { width: 100%; }

  .newsletter { padding: 32px 24px; grid-template-columns: 1fr; gap: 20px; }
  .newsletter__form { grid-template-columns: 1fr; gap: 10px; }
  .newsletter__form input { min-height: 48px; font-size: 16px; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; text-align: left; }

  .filter-bar { grid-template-columns: 1fr; padding: 14px; }
  .filter-bar .btn { width: 100%; }

  .legal-hero { padding: 40px 0 24px; }
  .legal-hero__title { font-size: clamp(28px, 7vw, 38px); }
  .legal-body { padding: 28px 0 56px; }
  .legal-body h2 { font-size: 22px; margin-top: 36px; }
  .legal-body p, .legal-body li { font-size: 15px; line-height: 1.65; }
  .for-sale-notice { padding: 22px 20px; }
  .for-sale-notice__title { font-size: 19px; line-height: 1.3; }

  .nav__cta { min-height: 44px; padding: 10px 16px; }
  .btn { min-height: 44px; }

  .sticky-buy { display: flex; }
  .fab-top { bottom: 80px; right: 16px; width: 44px; height: 44px; }
}

/* ========== SMALL MOBILE ≤480px ========== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .for-sale-banner { padding: 12px 0; }
  .for-sale-banner__pill { font-size: 10px; padding: 5px 10px; }
  .for-sale-banner__text { font-size: 12px; }
  .nav__inner { padding: 12px 0; }
  .nav__brand-text { font-size: 14px; }
  .hero--background { padding: 48px 0 56px; }
  .hero__title { font-size: clamp(28px, 8vw, 36px); }
  .stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat__number { font-size: 36px; }
  .city-grid { grid-template-columns: 1fr; }
  .feature-tile { min-height: 320px; }
  .feature-tile__title { font-size: 22px; }
  .practitioner-cta { padding: 28px 20px; }
  .newsletter { padding: 28px 20px; }
  .sticky-buy { left: 12px; right: 12px; bottom: 12px; font-size: 14px; padding: 12px 16px; }
  .legal-hero__title { font-size: clamp(26px, 8vw, 32px); }
  .for-sale-notice { padding: 20px 16px; }
  .card__photo-editorial { height: 180px; }
  .card__photo-editorial-overlay { padding: 18px 22px 20px; }
  .card__photo-editorial-overlay .card__editorial-title { font-size: 26px; }
}

/* ========== iOS SAFE AREA ========== */
@supports (padding: max(0px)) {
  .sticky-buy {
    bottom: max(16px, env(safe-area-inset-bottom));
    left: max(16px, env(safe-area-inset-left));
    right: max(16px, env(safe-area-inset-right));
  }
  .fab-top {
    bottom: max(80px, calc(env(safe-area-inset-bottom) + 70px));
    right: max(16px, env(safe-area-inset-right));
  }
}

/* ========== COOKIE CONSENT (RGPD) ========== */
.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  background: rgba(10, 37, 64, 0.95);
  color: var(--ivory);
  border: 1px solid rgba(250, 247, 242, 0.16);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 18px 18px 14px;
}
.cookie-consent__title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.cookie-consent__text {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.88);
  line-height: 1.55;
  margin-bottom: 14px;
}
.cookie-consent__text a {
  color: #BBD0FF;
  text-decoration: underline;
}
.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-consent__btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 10px 14px;
  cursor: pointer;
}
.cookie-consent__btn--primary {
  background: var(--blue);
  color: var(--white);
}
.cookie-consent__btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250, 247, 242, 0.32);
}
.cookie-consent__btn--muted {
  background: rgba(250, 247, 242, 0.11);
  color: var(--ivory);
}
.cookie-consent__panel {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(250, 247, 242, 0.16);
  display: none;
}
.cookie-consent__panel.is-open { display: block; }
.cookie-consent__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
}
.cookie-consent__row small {
  display: block;
  color: rgba(250, 247, 242, 0.66);
  margin-top: 2px;
}
.cookie-consent__toggle {
  width: 40px;
  height: 22px;
  appearance: none;
  border-radius: 99px;
  background: rgba(250, 247, 242, 0.25);
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cookie-consent__toggle::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.2s ease;
}
.cookie-consent__toggle:checked { background: var(--blue); }
.cookie-consent__toggle:checked::before { left: 21px; }
.cookie-consent__toggle[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-manage {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 119;
  border: 1px solid rgba(10, 37, 64, 0.2);
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 13px;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.18);
  cursor: pointer;
}
@media (max-width: 700px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 15px 14px 12px;
  }
  .cookie-consent__title { font-size: 20px; }
  .cookie-manage {
    right: 12px;
    bottom: 12px;
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== STICKY HEADER (banner + nav) ========== */
:root { --banner-h: 0px; }
.for-sale-banner {
  position: sticky;
  top: 0;
  z-index: 60;
}
.nav {
  position: sticky;
  top: var(--banner-h);
  z-index: 50;
}
.scroll-progress { z-index: 100; }
@media (max-width: 900px) {
  .for-sale-banner {
    position: sticky;
    top: 0;
    z-index: 60;
  }
}

/* ========== LOGO MARQUE VERBALE ========== */
.nav__brand,
.site-footer__brand,
.mobile-drawer__brand {
  align-items: center;
  gap: 0;
}
.nav__brand-text,
.site-footer__brand-text,
.mobile-drawer__brand {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  font-size: 17px;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.nav__brand-text em,
.site-footer__brand-text em,
.mobile-drawer__brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.nav__brand-text::before,
.site-footer__brand-text::before,
.mobile-drawer__brand::before {
  content: "✦";
  color: #FFD479;
  font-size: 0.78em;
  margin-right: 9px;
  display: inline-block;
  text-shadow: 0 0 10px rgba(255, 212, 121, 0.55);
  transform: translateY(-1px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.3s;
}
.nav__brand:hover .nav__brand-text::before,
.site-footer__brand:hover .site-footer__brand-text::before {
  transform: translateY(-1px) rotate(180deg) scale(1.15);
  filter: drop-shadow(0 0 6px rgba(255, 212, 121, 0.7));
}
.site-footer__brand-text::before { color: #FFD479; }
.mobile-drawer__brand::before { color: #FFD479; }

@media (max-width: 480px) {
  .nav__brand-text { font-size: 15px; }
  .nav__brand-text::before { margin-right: 7px; }
}

/* =========================================================
   ✦ HEADER — refinement moderne premium
   ========================================================= */
.nav {
  background: rgba(250, 247, 242, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
}
.nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 212, 121, 0.35) 25%,
    rgba(30, 79, 216, 0.45) 50%,
    rgba(255, 212, 121, 0.35) 75%,
    transparent 100%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.nav.is-shrunk::after { opacity: 1; }
.nav.is-shrunk {
  background: rgba(250, 247, 242, 0.92);
  border-bottom-color: transparent;
}
.nav__inner {
  position: relative;
  padding: 22px 0;
}

/* Brand wrap with discrete pill on hover */
.nav__brand {
  position: relative;
  padding: 6px 10px;
  margin-left: -10px;
  border-radius: 8px;
  transition: background 0.25s ease;
}
.nav__brand:hover {
  background: rgba(10, 37, 64, 0.04);
}

/* Nav links — soft pill hover, gold-blue underline */
.nav__links {
  gap: 4px;
  align-items: center;
}
.nav__links a:not(.nav__cta) {
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.005em;
  color: var(--gray);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__links a:not(.nav__cta):hover {
  color: var(--navy);
  background: rgba(10, 37, 64, 0.05);
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue), #FFD479);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a:not(.nav__cta).is-active::after {
  transform: scaleX(1);
}

/* Subtle vertical rule between links and CTA */
.nav__cta--buy {
  margin-left: 10px;
  position: relative;
}
.nav__cta--buy::before {
  /* ::before existant pour étoile dorée — garder mais aligner */
  left: 18px;
}

/* =========================================================
   ✦ FOOTER — refinement moderne premium
   ========================================================= */
.site-footer {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(30, 79, 216, 0.18), transparent 70%),
    linear-gradient(180deg, #0A2540 0%, #061A30 100%);
  color: rgba(250, 247, 242, 0.78);
  position: relative;
  padding: 88px 0 32px;
  overflow: hidden;
  isolation: isolate;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    #FFD479 25%,
    #7DA3FF 50%,
    #FFD479 75%,
    transparent 100%);
  opacity: 0.7;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.site-footer__brand {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  color: var(--ivory);
}
.site-footer__brand-text {
  color: var(--ivory);
  font-size: 22px;
}
.site-footer__brand-text em {
  color: #BBD0FF;
  font-style: italic;
}
.site-footer__brand-text::before {
  color: #FFD479;
  font-size: 0.85em;
  margin-right: 12px;
  text-shadow: 0 0 14px rgba(255, 212, 121, 0.5);
}
.site-footer__about {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.65);
  max-width: 420px;
  margin-bottom: 18px;
}
.site-footer__disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.55);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid #FFD479;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  max-width: 420px;
}

/* Column titles — gold dot accent + Fraunces caps */
.site-footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFD479;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-footer__col-title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFD479;
  box-shadow: 0 0 10px rgba(255, 212, 121, 0.5);
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-footer__links li { margin: 0; }
.site-footer__links a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: rgba(250, 247, 242, 0.7);
  padding: 6px 0 6px 0;
  transition: color 0.2s ease, padding-left 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-footer__links a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-8px);
  color: #FFD479;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  transition: opacity 0.25s, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-footer__links a:hover {
  color: var(--ivory);
  padding-left: 22px;
}
.site-footer__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Bottom row — refined */
.site-footer__bottom {
  margin-top: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.005em;
}
.site-footer__bottom > div {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.site-footer__bottom > div + div::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 212, 121, 0.6);
  box-shadow: 0 0 8px rgba(255, 212, 121, 0.4);
  margin-right: 6px;
}

/* Mobile footer adaptation */
@media (max-width: 900px) {
  .site-footer { padding: 64px 0 24px; }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  .site-footer__brand-text { font-size: 19px; }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .site-footer__bottom > div + div::before { display: none; }
  .site-footer__about { max-width: 100%; }
  .nav__inner { padding: 14px 0; }
}
@media (max-width: 480px) {
  .site-footer { padding: 48px 0 20px; }
  .site-footer__brand-text { font-size: 17px; }
}

/* =========================================================
   ✦ HEADER — accent gold on for-sale-banner pill
   ========================================================= */
.for-sale-banner {
  background: linear-gradient(135deg, #0A2540 0%, #133268 50%, #1E4FD8 100%);
  position: sticky;
  top: 0;
  z-index: 60;
}
.for-sale-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 212, 121, 0.4) 50%,
    transparent 100%);
}
.for-sale-banner__pill {
  background: rgba(255, 212, 121, 0.16);
  border: 1px solid rgba(255, 212, 121, 0.4);
  color: #FFD479;
  letter-spacing: 0.16em;
}
.for-sale-banner__cta {
  border-bottom: 1px solid rgba(255, 212, 121, 0.5);
  color: #FFD479;
}
.for-sale-banner__cta:hover {
  color: #FFFFFF;
  border-bottom-color: #FFD479;
}

/* ========== HERO MINIMAL ========== */
.hero--minimal {
  padding: 120px 0 140px;
  text-align: center;
}
.hero--minimal .hero__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 300;
  max-width: 880px;
  margin: 0 auto 28px;
}
.hero--minimal .hero__title em {
  font-style: italic;
  font-weight: 300;
  color: #BBD0FF;
}
.hero--minimal .hero__lead {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.005em;
  max-width: 540px;
  margin: 0 auto;
  color: rgba(250, 247, 242, 0.72);
}
.hero--minimal .hero-bg__tint {
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.72) 0%, rgba(10, 37, 64, 0.85) 100%);
}

@media (max-width: 900px) {
  .hero--minimal { padding: 80px 0 96px; }
  .hero--minimal .hero__title { font-size: clamp(32px, 8vw, 48px); }
  .hero--minimal .hero__lead { font-size: 15px; }
}
@media (max-width: 480px) {
  .hero--minimal { padding: 56px 0 72px; }
  .hero--minimal .hero__title { font-size: clamp(28px, 9vw, 36px); }
}

/* =========================================================
   ✦ HEADER — minimalist & classy refinement
   ========================================================= */
.nav { background: rgba(250, 247, 242, 0.85); }
.nav.is-shrunk { background: rgba(250, 247, 242, 0.95); }

/* Nav inner — air & vertical centering */
.nav__inner {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav.is-shrunk .nav__inner { padding: 16px 0; }

/* Brand — sobre & équilibré */
.nav__brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.nav__brand-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  opacity: 0.85;
}
.nav__brand-text::before {
  font-size: 11px;
  margin-right: 12px;
  color: #FFD479;
  text-shadow: none;
  filter: none;
  vertical-align: middle;
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Nav links — typo magazine épurée */
.nav__links { gap: 8px; align-items: center; }
.nav__links a:not(.nav__cta) {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gray);
  padding: 8px 14px;
  border-radius: 0;
  background: transparent !important;
  position: relative;
  transition: color 0.25s ease;
}
.nav__links a:not(.nav__cta):hover { color: var(--navy); }
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a:not(.nav__cta).is-active::after { transform: scaleX(0.55); }

/* Vertical hairline between links and CTA — détail magazine */
.nav__cta--buy {
  margin-left: 18px;
  padding: 10px 18px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  border-radius: 999px !important;
  position: relative;
  background-color: var(--navy) !important;
  color: #FFFFFF !important;
  border: 1px solid var(--navy) !important;
  text-shadow: none !important;
  box-shadow: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.nav__cta--buy::before {
  font-size: 10px;
  margin-right: 7px;
  color: #FFD479;
  text-shadow: none;
  animation: none;
}
.nav__cta--buy:hover {
  background-color: #061A30 !important;
  border-color: #061A30 !important;
  box-shadow: 0 6px 18px -6px rgba(10, 37, 64, 0.35) !important;
  transform: translateY(-1px);
}

/* Hairline under nav — 1px ivory uni au lieu du gradient or/bleu */
.nav::after {
  background: rgba(10, 37, 64, 0.08);
  opacity: 1 !important;
}
.nav.is-shrunk::after {
  background: rgba(10, 37, 64, 0.12);
}

/* Mobile keep burger refined */
@media (max-width: 900px) {
  .nav__inner { padding: 16px 0; }
  .nav.is-shrunk .nav__inner { padding: 12px 0; }
  .nav__brand-text { font-size: 15px; }
}

/* =========================================================
   ✦ HEADER — editorial salon (refined detail)
   ========================================================= */
.nav__inner {
  position: relative;
  align-items: stretch;
  padding: 22px 0;
}
.nav.is-shrunk .nav__inner { padding: 14px 0; }

/* Brand block — multi-ligne magazine */
.nav__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding: 0 18px 0 0;
  margin-left: -2px;
  background: transparent !important;
  border-right: 1px solid rgba(10, 37, 64, 0.1);
}
.nav__brand::before {
  content: "Édition 2026 · vol. 1";
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}
.nav__brand .nav__brand-text {
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.012em;
  position: relative;
  padding-left: 18px;
}
.nav__brand .nav__brand-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2BB673;
  box-shadow:
    0 0 0 0 rgba(43, 182, 115, 0.55),
    0 0 8px rgba(43, 182, 115, 0.55);
  animation: liveDot 1.8s ease-in-out infinite;
  text-shadow: none;
  margin: 0;
  font-size: 0;
}
@keyframes liveDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.6), 0 0 6px rgba(43, 182, 115, 0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(43, 182, 115, 0), 0 0 14px rgba(43, 182, 115, 0.6); }
}
.nav__brand::after {
  content: "guide indépendant · paris";
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 11px;
  font-weight: 300;
  color: var(--gray);
  margin-top: 4px;
  padding-left: 18px;
  letter-spacing: 0.01em;
}
.nav.is-shrunk .nav__brand::before,
.nav.is-shrunk .nav__brand::after { display: none; }
.nav.is-shrunk .nav__brand { border-right: none; padding-right: 0; }

/* Nav links — éditorial numéroté */
.nav__links {
  align-items: center;
  gap: 0;
  counter-reset: navItem;
  padding-left: 24px;
}
.nav__links a:not(.nav__cta) {
  counter-increment: navItem;
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--gray);
  padding: 10px 16px;
  background: transparent !important;
  transition: color 0.25s ease;
}
.nav__links a:not(.nav__cta)::before {
  content: counter(navItem, decimal-leading-zero);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 10px;
  color: var(--gray-light);
  margin-right: 8px;
  vertical-align: 2px;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}
.nav__links a:not(.nav__cta):hover {
  color: var(--navy);
}
.nav__links a:not(.nav__cta):hover::before { color: #FFD479; }
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a:not(.nav__cta).is-active::after { transform: scaleX(0.4); }

/* CTA cluster avec hairline + search icon */
.nav__cta--buy {
  margin-left: 24px !important;
  padding: 11px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  border-radius: 999px !important;
  background-color: var(--navy) !important;
  color: #FFFFFF !important;
  border: 1px solid var(--navy) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  position: relative;
  text-transform: uppercase;
  font-size: 11px !important;
}
.nav__cta--buy::before {
  content: "✦";
  font-size: 9px;
  margin-right: 8px;
  color: #FFD479;
  text-shadow: none;
  vertical-align: 1px;
}
.nav__cta--buy::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: rgba(10, 37, 64, 0.12);
}
.nav__cta--buy:hover {
  background-color: #061A30 !important;
  border-color: #061A30 !important;
  box-shadow: 0 6px 16px -4px rgba(10, 37, 64, 0.25) !important;
}

/* Hairline sous nav — discret + dégradé doré centré */
.nav::after {
  background: linear-gradient(90deg,
    rgba(10, 37, 64, 0.06) 0%,
    rgba(10, 37, 64, 0.06) 38%,
    rgba(255, 212, 121, 0.45) 50%,
    rgba(10, 37, 64, 0.06) 62%,
    rgba(10, 37, 64, 0.06) 100%);
  opacity: 0.9 !important;
}

/* Mobile — masquer la métadonnée pour éviter encombrement */
@media (max-width: 900px) {
  .nav__brand::before,
  .nav__brand::after { display: none; }
  .nav__brand { border-right: none; padding-right: 0; }
  .nav__brand .nav__brand-text { padding-left: 18px; font-size: 15px; }
  .nav__inner { padding: 14px 0; }
}

/* =========================================================
   ✦ HEADER — clean reset (final)
   Suppression des excès éditoriaux : édition, live dot, tagline,
   numérotation des liens, séparateurs verticaux.
   ========================================================= */
.nav__inner {
  align-items: center;
  padding: 22px 0;
}
.nav.is-shrunk .nav__inner { padding: 14px 0; }

.nav__brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  border-right: none;
  padding: 0;
  margin: 0;
}
.nav__brand::before,
.nav__brand::after { content: none !important; display: none !important; }

.nav__brand .nav__brand-text {
  padding-left: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
}
.nav__brand .nav__brand-text::before {
  content: "✦";
  display: inline-block;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  margin: 0 10px 0 0;
  padding: 0;
  font-size: 11px;
  color: #FFD479;
  box-shadow: none;
  animation: none;
  text-shadow: none;
  filter: none;
  transform: translateY(-1px);
  vertical-align: middle;
}

.nav__links {
  gap: 4px;
  padding-left: 0;
  counter-reset: none;
}
.nav__links a:not(.nav__cta) {
  counter-increment: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  padding: 8px 14px;
  background: transparent !important;
  letter-spacing: 0.005em;
  text-transform: none;
}
.nav__links a:not(.nav__cta)::before { content: none !important; display: none !important; }
.nav__links a:not(.nav__cta):hover { color: var(--navy); }
.nav__links a:not(.nav__cta)::after {
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: center;
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a:not(.nav__cta).is-active::after { transform: scaleX(0.5); }

.nav__cta--buy {
  margin-left: 14px !important;
  padding: 10px 18px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  border-radius: 999px !important;
  background-color: var(--navy) !important;
  color: #FFFFFF !important;
  border: 1px solid var(--navy) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.nav__cta--buy::before {
  content: "✦";
  font-size: 10px;
  margin-right: 7px;
  color: #FFD479;
  text-shadow: none;
  vertical-align: 1px;
  animation: none;
}
.nav__cta--buy::after { content: none !important; display: none !important; }
.nav__cta--buy:hover {
  background-color: #061A30 !important;
  border-color: #061A30 !important;
  box-shadow: 0 6px 16px -6px rgba(10, 37, 64, 0.3) !important;
  transform: translateY(-1px);
}

/* Filet sous nav — uni discret */
.nav::after {
  background: rgba(10, 37, 64, 0.08) !important;
  opacity: 1 !important;
}

@media (max-width: 900px) {
  .nav__inner { padding: 14px 0; }
  .nav__brand .nav__brand-text { font-size: 15px; }
}

/* =========================================================
   ✦ HEADER — center the menu, brand left, CTA right
   ========================================================= */
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav__brand {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links .nav__cta--buy {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0 !important;
}

@media (max-width: 900px) {
  .nav__inner { justify-content: space-between; }
  .nav__brand { position: static; transform: none; }
  .nav__links { display: none; }
  .nav__links .nav__cta--buy { position: static; transform: none; }
  .nav__burger { position: static; }
}

/* =========================================================
   ✦ HEADER — final layout: brand left, links + CTA right
   ========================================================= */
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between !important;
  position: relative;
}
.nav__brand {
  position: static !important;
  transform: none !important;
  flex-shrink: 0;
}
.nav__links {
  position: static !important;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav__links .nav__cta--buy {
  position: static !important;
  transform: none !important;
  margin-left: 16px !important;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .nav__links { display: none; }
}

/* =========================================================
   ✦ HEADER — brand left, menu CENTER, CTA right
   ========================================================= */
.nav__inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: initial !important;
  position: relative;
}
.nav__brand {
  grid-column: 1;
  justify-self: start;
  position: static !important;
  transform: none !important;
}
.nav__links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 0 !important;
}
.nav__links .nav__cta--buy {
  position: absolute !important;
  right: 0;
  top: 50%;
  transform: translateY(-50%) !important;
  margin-left: 0 !important;
}
@media (max-width: 900px) {
  .nav__inner {
    display: flex !important;
    justify-content: space-between !important;
    grid-template-columns: none;
  }
  .nav__links { display: none; }
  .nav__links .nav__cta--buy {
    position: static !important;
    transform: none !important;
  }
}

/* =========================================================
   ✦ LOGO IMAGE — replaces verbal mark
   ========================================================= */
.nav__brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  background: transparent !important;
  border: none !important;
}
.nav__brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s;
}
.nav__brand:hover .nav__brand-logo { opacity: 0.85; }
.nav.is-shrunk .nav__brand-logo { height: 32px; }

/* Footer logo */
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}
.site-footer__brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* Mobile drawer logo */
.mobile-drawer__brand-logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Hide any leftover brand text fallback */
.nav__brand-text,
.site-footer__brand-text {
  display: none !important;
}

/* Responsive — adjust logo height on small screens */
@media (max-width: 900px) {
  .nav__brand-logo { height: 34px; }
  .nav.is-shrunk .nav__brand-logo { height: 28px; }
}
@media (max-width: 480px) {
  .nav__brand-logo { height: 30px; max-width: 160px; }
}

/* =========================================================
   ✦ LOGO IMAGE — bigger size
   ========================================================= */
.nav__brand-logo {
  height: 72px !important;
  max-width: 360px !important;
}
.nav.is-shrunk .nav__brand-logo {
  height: 56px !important;
}
.nav__inner { padding: 14px 0 !important; }
.nav.is-shrunk .nav__inner { padding: 8px 0 !important; }

.site-footer__brand-logo {
  height: 64px !important;
  max-width: 320px !important;
}

.mobile-drawer__brand-logo {
  height: 44px !important;
  max-width: 220px !important;
}

@media (max-width: 900px) {
  .nav__brand-logo { height: 56px !important; }
  .nav.is-shrunk .nav__brand-logo { height: 44px !important; }
}
@media (max-width: 480px) {
  .nav__brand-logo { height: 48px !important; max-width: 240px !important; }
}

/* =========================================================
   ✦ LOGO IMAGE — even bigger
   ========================================================= */
.nav__brand-logo {
  height: 110px !important;
  max-width: 480px !important;
}
.nav.is-shrunk .nav__brand-logo {
  height: 80px !important;
}
.nav__inner { padding: 8px 0 !important; }
.nav.is-shrunk .nav__inner { padding: 4px 0 !important; }

.site-footer__brand-logo {
  height: 96px !important;
  max-width: 420px !important;
}

.mobile-drawer__brand-logo {
  height: 60px !important;
  max-width: 280px !important;
}

@media (max-width: 900px) {
  .nav__brand-logo { height: 80px !important; max-width: 320px !important; }
  .nav.is-shrunk .nav__brand-logo { height: 60px !important; }
}
@media (max-width: 480px) {
  .nav__brand-logo { height: 64px !important; max-width: 260px !important; }
  .nav.is-shrunk .nav__brand-logo { height: 50px !important; }
}

/* =========================================================
   ✦ LOGO IMAGE — TRES GRAND
   ========================================================= */
.nav__brand-logo {
  height: 180px !important;
  max-width: 720px !important;
}
.nav.is-shrunk .nav__brand-logo {
  height: 130px !important;
}
.nav__inner { padding: 4px 0 !important; }
.nav.is-shrunk .nav__inner { padding: 2px 0 !important; }

.site-footer__brand-logo {
  height: 140px !important;
  max-width: 600px !important;
}

.mobile-drawer__brand-logo {
  height: 80px !important;
  max-width: 360px !important;
}

@media (max-width: 900px) {
  .nav__brand-logo { height: 110px !important; max-width: 420px !important; }
  .nav.is-shrunk .nav__brand-logo { height: 80px !important; }
}
@media (max-width: 480px) {
  .nav__brand-logo { height: 80px !important; max-width: 300px !important; }
  .nav.is-shrunk .nav__brand-logo { height: 60px !important; }
}

/* =========================================================
   ✦ FOR-SALE BANNER — version compacte
   ========================================================= */
.for-sale-banner {
  padding: 6px 0 !important;
}
.for-sale-banner__inner {
  gap: 12px;
  padding: 0 !important;
  min-height: 28px;
}
.for-sale-banner__pill {
  font-size: 9px !important;
  padding: 3px 8px !important;
  letter-spacing: 0.12em !important;
}
.for-sale-banner__pill::before {
  width: 5px !important;
  height: 5px !important;
}
.for-sale-banner__text {
  font-size: 12px !important;
  line-height: 1.4;
}
.for-sale-banner__cta {
  font-size: 12px !important;
  min-height: auto !important;
  padding: 0 !important;
}

@media (max-width: 900px) {
  .for-sale-banner { padding: 5px 0 !important; }
  .for-sale-banner__inner { gap: 6px; }
  .for-sale-banner__text { font-size: 11px !important; }
  .for-sale-banner__pill { font-size: 8px !important; padding: 2px 7px !important; }
  .for-sale-banner__cta { font-size: 11px !important; }
}

/* =========================================================
   ✦ NAV — hauteur réduite (logo plus raisonnable)
   ========================================================= */
.nav__brand-logo {
  height: 60px !important;
  max-width: 280px !important;
}
.nav.is-shrunk .nav__brand-logo {
  height: 48px !important;
}
.nav__inner {
  padding: 8px 0 !important;
}
.nav.is-shrunk .nav__inner {
  padding: 4px 0 !important;
}

@media (max-width: 900px) {
  .nav__brand-logo { height: 50px !important; max-width: 220px !important; }
  .nav.is-shrunk .nav__brand-logo { height: 42px !important; }
}
@media (max-width: 480px) {
  .nav__brand-logo { height: 44px !important; max-width: 180px !important; }
  .nav.is-shrunk .nav__brand-logo { height: 38px !important; }
}

/* =========================================================
   ✦ NAV — logo bien visible, nav compacte
   ========================================================= */
.nav__brand-logo {
  height: 90px !important;
  max-width: 360px !important;
}
.nav.is-shrunk .nav__brand-logo {
  height: 64px !important;
}
.nav__inner { padding: 4px 0 !important; }
.nav.is-shrunk .nav__inner { padding: 2px 0 !important; }

@media (max-width: 900px) {
  .nav__brand-logo { height: 70px !important; max-width: 260px !important; }
  .nav.is-shrunk .nav__brand-logo { height: 54px !important; }
}
@media (max-width: 480px) {
  .nav__brand-logo { height: 56px !important; max-width: 220px !important; }
  .nav.is-shrunk .nav__brand-logo { height: 46px !important; }
}

/* =========================================================
   ✦ LOGO — agrandi sans augmenter la hauteur de la nav
   ========================================================= */
.nav { overflow: hidden !important; }
.nav__inner {
  min-height: 74px !important;
  padding: 6px 0 !important;
  overflow: visible;
}
.nav.is-shrunk .nav__inner {
  min-height: 64px !important;
  padding: 4px 0 !important;
}
.nav__brand {
  position: relative;
  z-index: 5;
  overflow: visible;
}
.nav__brand-logo {
  height: 92px !important;
  max-width: 460px !important;
  transform: scale(2.1);
  transform-origin: left center;
}
.nav.is-shrunk .nav__brand-logo {
  height: 80px !important;
  transform: scale(1.8);
}
@media (max-width: 900px) {
  .nav__inner {
    min-height: 66px !important;
    padding: 4px 0 !important;
  }
  .nav__brand-logo {
    height: 76px !important;
    max-width: 360px !important;
    transform: scale(1.8);
  }
}
@media (max-width: 480px) {
  .nav__inner {
    min-height: 60px !important;
    padding: 3px 0 !important;
  }
  .nav__brand-logo {
    height: 62px !important;
    max-width: 300px !important;
    transform: scale(1.55);
  }
}
