:root {
    --creme: #eae7df;
    --gold: #dec08f;
    --brun: #673302;
    --brun-dark: #4a2402;
    --white: #faf9f7;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--creme);
    color: var(--brun-dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: rgba(234,231,223,0.92);
  }
  .logo-link img {
    height: 60px;
    width: auto;
    display: block;
  }
  nav ul { display: flex; gap: 36px; list-style: none; }
  nav ul li a {
    text-decoration: none;
    font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
    color: var(--brun); text-transform: uppercase;
    transition: opacity 0.2s;
  }
  nav ul li a:hover { opacity: 0.6; }
  nav ul li a.active { color: var(--brun-dark); }
  .btn-rdv {
    background: var(--brun);
    color: var(--creme) !important;
    padding: 11px 24px; border-radius: 30px;
    font-size: 13px !important; font-weight: 500 !important;
    text-transform: uppercase; letter-spacing: 0.06em;
    transition: background 0.25s, transform 0.2s !important;
  }
  .btn-rdv:hover { background: var(--brun-dark) !important; transform: translateY(-1px); opacity: 1 !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 88px;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 64px 80px 72px;
    position: relative;
  }
  .hero-left::after {
    content: '';
    position: absolute; right: 0; top: 10%; bottom: 10%;
    width: 1px; background: rgba(103,51,2,0.15);
  }
  .hero-adresse {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: #8a6a50;
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.2s;
    animation: fadeUp 0.7s 0.05s ease both;
  }
  .hero-adresse:hover { color: var(--brun); }
  .hero-adresse span {
    color: var(--gold); font-weight: 500;
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(222,192,143,0.25);
    border: 1px solid rgba(222,192,143,0.5);
    border-radius: 30px; padding: 8px 18px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--brun);
    margin-bottom: 32px; width: fit-content;
    animation: fadeUp 0.7s ease both;
  }
  .hero-tag span.dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold); display: inline-block;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900; line-height: 1.08;
    color: var(--brun-dark);
    margin-bottom: 28px;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  .hero h1 em {
    font-style: italic; color: var(--brun);
    display: block;
  }
  .hero-desc {
    font-size: 17px; line-height: 1.7; color: #5a4030;
    max-width: 440px; margin-bottom: 48px;
    animation: fadeUp 0.7s 0.2s ease both;
  }
  .hero-ctas {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
  }
  .cta-primary {
    background: var(--brun);
    color: var(--creme);
    padding: 16px 36px; border-radius: 50px;
    font-size: 15px; font-weight: 500;
    text-decoration: none; letter-spacing: 0.03em;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(103,51,2,0.25);
  }
  .cta-primary:hover { background: var(--brun-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(103,51,2,0.3); }
  .cta-secondary {
    border: 1.5px solid var(--brun);
    color: var(--brun);
    padding: 16px 36px; border-radius: 50px;
    font-size: 15px; font-weight: 500;
    text-decoration: none; letter-spacing: 0.03em;
    transition: background 0.25s, color 0.25s, transform 0.2s;
  }
  .cta-secondary:hover { background: var(--brun); color: var(--creme); transform: translateY(-2px); }

  .hero-stats {
    display: flex; gap: 40px; margin-top: 64px;
    padding-top: 32px; border-top: 1px solid rgba(103,51,2,0.12);
    animation: fadeUp 0.7s 0.4s ease both;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 900; color: var(--brun);
    line-height: 1;
  }
  .stat-label { font-size: 12px; color: #8a6a50; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 4px; }

  /* ── HERO RIGHT ── */
  .hero-right {
    position: relative; overflow: hidden;
    animation: fadeIn 1s 0.2s ease both;
  }
  .hero-right .photo-main {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
  }
  .hero-right::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(234,231,223,0.15) 0%, transparent 60%);
    z-index: 1;
  }
  .photo-badge {
    position: absolute; bottom: 40px; left: 40px; z-index: 2;
    background: rgba(234,231,223,0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px; padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(222,192,143,0.4);
  }
  .photo-badge .badge-title { font-size: 13px; font-weight: 500; color: var(--brun); text-transform: uppercase; letter-spacing: 0.06em; }
  .photo-badge .badge-desc { font-size: 12px; color: #8a6a50; margin-top: 4px; }

  /* ── FEATURES BAND ── */
  .features-band {
    background: var(--brun);
    padding: 24px 72px;
    display: flex; align-items: center; justify-content: center; gap: 0;
    overflow: hidden;
  }
  .feature-item {
    display: flex; align-items: center; gap: 12px;
    padding: 0 40px;
    border-right: 1px solid rgba(222,192,143,0.3);
    flex-shrink: 0;
  }
  .feature-item:last-child { border-right: none; }
  .feature-icon { font-size: 20px; }
  .feature-text { font-size: 13px; font-weight: 500; color: var(--gold); letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }

  /* ── SECTION PLATEAU ── */
  .section-plateau {
    padding: 120px 72px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .section-label {
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold);
  }
  .section-plateau h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; line-height: 1.15;
    color: var(--brun-dark); margin-bottom: 24px;
  }
  .section-plateau p {
    font-size: 16px; line-height: 1.75; color: #6b4f38; margin-bottom: 40px;
  }
  .feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .feature-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15px; line-height: 1.5; color: #5a4030;
  }
  .feature-list li .check {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--gold); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
    font-size: 11px; color: var(--brun-dark);
  }
  .photo-grid {
    display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 280px 200px;
    gap: 12px; border-radius: 20px; overflow: hidden;
  }
  .photo-grid img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s ease;
  }
  .photo-grid img:hover { transform: scale(1.03); }
  .photo-grid .full-row { grid-column: 1 / -1; }
  .photo-grid .photo-wrap { overflow: hidden; position: relative; }
  .photo-grid .photo-wrap::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(103,51,2,0.15) 0%, transparent 50%);
  }

  /* ── BOXES SECTION ── */
  .section-boxes {
    background: var(--brun-dark);
    padding: 100px 72px;
    color: var(--creme);
  }
  .section-boxes-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center;
  }
  .section-boxes .section-label { color: var(--gold); }
  .section-boxes h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3vw, 44px); font-weight: 700; line-height: 1.2;
    color: var(--creme); margin-bottom: 24px;
  }
  .section-boxes p { font-size: 16px; line-height: 1.75; color: rgba(234,231,223,0.75); }
  .boxes-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .box-card {
    background: rgba(222,192,143,0.08);
    border: 1px solid rgba(222,192,143,0.2);
    border-radius: 16px; padding: 28px 24px;
    transition: background 0.25s, transform 0.25s;
  }
  .box-card:hover { background: rgba(222,192,143,0.15); transform: translateY(-4px); }
  .box-card .card-icon { font-size: 28px; margin-bottom: 14px; }
  .box-card .card-title { font-size: 15px; font-weight: 600; color: var(--gold); margin-bottom: 8px; }
  .box-card .card-text { font-size: 13px; line-height: 1.6; color: rgba(234,231,223,0.65); }

  /* ── CTA FINAL ── */
  .section-cta {
    background: var(--gold);
    padding: 80px 72px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
  }
  .section-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px); font-weight: 700;
    color: var(--brun-dark); max-width: 500px;
  }
  .section-cta .cta-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
  .cta-dark {
    background: var(--brun-dark); color: var(--creme);
    padding: 16px 36px; border-radius: 50px;
    font-size: 15px; font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  .cta-dark:hover { background: #2d1400; transform: translateY(-2px); }
  .cta-phone {
    display: flex; align-items: center; gap: 10px;
    color: var(--brun-dark); font-size: 15px; font-weight: 500; text-decoration: none;
  }
  .cta-phone .phone-icon { font-size: 18px; }

  /* ── FOOTER ── */
  footer {
    background: var(--brun-dark);
    padding: 40px 72px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  }
  footer img.logo-footer { height: 40px; filter: brightness(0) invert(1) opacity(0.7); }
  footer p { font-size: 13px; color: rgba(234,231,223,0.45); }
  footer address { font-size: 13px; color: rgba(234,231,223,0.6); font-style: normal; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }

  /* ── CABINET PHOTO GRID ── */
  .cabinet-photo-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 520px;
    gap: 12px;
    border-radius: 20px;
    overflow: hidden;
  }
  .cabinet-photo-main, .cabinet-photo-side {
    position: relative; overflow: hidden;
  }
  .cabinet-photo-main { border-radius: 16px 0 0 16px; }
  .cabinet-photo-side { border-radius: 0 16px 16px 0; }
  .cabinet-photo-main img, .cabinet-photo-side img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
  }
  .cabinet-photo-main:hover img,
  .cabinet-photo-side:hover img { transform: scale(1.04); }
  .cabinet-label-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(74,36,2,0.65) 0%, transparent 60%);
    padding: 20px 20px 16px;
    display: flex; align-items: flex-end;
  }
  .cabinet-label-overlay span {
    font-size: 13px; font-weight: 600; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.07em;
  }
  .pmr-badge {
    position: absolute; top: 16px; left: 16px;
    background: rgba(234,231,223,0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px; padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 1px solid rgba(222,192,143,0.4);
  }

  /* ── PHOTO SINGLE (Notre cabinet) ── */
  .photo-single-wrap { position: relative; }
  .photo-single-inner {
    position: relative; border-radius: 20px; overflow: hidden;
    height: 520px;
  }
  .photo-single-inner img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
  }
  .photo-single-inner:hover img { transform: scale(1.03); }
  .photo-single-badge {
    position: absolute; bottom: 28px; left: 28px;
    background: rgba(234,231,223,0.95);
    backdrop-filter: blur(8px);
    border-radius: 14px; padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    border: 1px solid rgba(222,192,143,0.4);
  }
  .photo-single-badge .badge-icon { font-size: 26px; }
  .photo-single-badge .badge-title { font-size: 13px; font-weight: 600; color: var(--brun); text-transform: uppercase; letter-spacing: 0.05em; }
  .photo-single-badge .badge-desc { font-size: 12px; color: #8a6a50; margin-top: 3px; }

  /* ── BOXES PHOTO GRID ── */
  .boxes-photo-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  }
  .box-photo-wrap {
    position: relative; overflow: hidden; border-radius: 14px;
    height: 200px;
  }
  .box-photo-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s ease;
  }
  .box-photo-wrap:hover img { transform: scale(1.06); }
  .box-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(74,36,2,0.7) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 14px 16px;
  }
  .box-overlay span {
    font-size: 13px; font-weight: 500; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.06em;
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 14px 20px; }
    nav ul { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 40px 24px 48px; }
    .hero-left::after { display: none; }
    .hero-right { height: 55vw; min-height: 260px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .features-band { padding: 16px 20px; gap: 0; flex-wrap: wrap; justify-content: flex-start; }
    .feature-item { padding: 8px 16px; border-right: none; border-bottom: 1px solid rgba(222,192,143,0.2); width: 100%; }
    .section-plateau { grid-template-columns: 1fr; padding: 64px 24px; gap: 48px; }
    .photo-grid { grid-template-rows: 200px 140px; }
    .section-boxes { padding: 64px 24px; }
    .section-boxes-inner { grid-template-columns: 1fr; gap: 40px; }
    .boxes-cards { grid-template-columns: 1fr; }
    .section-cta { padding: 56px 24px; flex-direction: column; align-items: flex-start; }
    footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  }

  /* ==== SOINS / KINE SHARED COMPONENTS ==== */
  .page-hero,
  .ph {
    padding: 140px 72px 80px;
    background: var(--brun-dark);
    position: relative;
    overflow: hidden;
  }
  .page-hero::before,
  .ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(222,192,143,0.1) 0%, transparent 65%);
  }
  .page-hero-inner,
  .phi {
    max-width: 680px;
    position: relative;
    z-index: 1;
  }
  .breadcrumb,
  .bc {
    font-size: 13px;
    color: rgba(222,192,143,0.6);
    margin-bottom: 20px;
  }
  .breadcrumb a,
  .bc a {
    color: var(--gold);
    text-decoration: none;
  }
  .page-hero h1,
  .ph h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--creme);
    margin-bottom: 20px;
  }
  .page-hero h1 em,
  .ph h1 em {
    font-style: italic;
    color: var(--gold);
    display: block;
  }
  .page-hero .desc,
  .hd {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(234,231,223,0.75);
    margin-bottom: 36px;
  }
  .cta-gold,
  .cg {
    background: var(--gold);
    color: var(--brun-dark);
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cta-gold:hover,
  .cg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(222,192,143,0.4);
  }

  .section,
  .s {
    padding: 80px 72px;
  }
  .section-white,
  .sw { background: var(--white); }
  .section-dark,
  .sd {
    background: var(--brun-dark);
    color: var(--creme);
  }
  .section-dark h2,
  .sd h2 { color: var(--creme); }
  .inner,
  .inn { max-width: 1100px; margin: 0 auto; }
  .label,
  .lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .label::before,
  .lbl::before {
    content: '';
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold);
  }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--brun-dark);
  }
  .section-dark h2 { color: var(--creme); }
  .text,
  .tx,
  .txl {
    font-size: 16px;
    line-height: 1.75;
    color: #6b4f38;
    margin-bottom: 28px;
  }
  .text-light { color: rgba(234,231,223,0.75); }
  .text--narrow { max-width: 640px; }

  .two-col,
  .two { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .photo-block,
  .ph2 { border-radius: 20px; overflow: hidden; height: 460px; }
  .photo-block img,
  .ph2 img { width: 100%; height: 100%; object-fit: cover; }

  .checklist,
  .cl {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 28px;
  }
  .checklist li,
  .cl li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.55;
    color: #5a4030;
  }
  .ck { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; color: var(--brun-dark); margin-top: 1px; font-weight: 700; }

  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
  }
  .cards.columns-4 { grid-template-columns: repeat(4, 1fr); }
  .card { background: var(--creme); border-radius: 16px; padding: 26px 22px; border: 1px solid rgba(103,51,2,0.08); transition: transform 0.25s, box-shadow 0.25s; }
  .card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(103,51,2,0.1); }
  .card--centered { text-align: center; }
  .card-icon { font-size: 30px; margin-bottom: 12px; }
  .card-title { font-size: 15px; font-weight: 600; color: var(--brun); margin-bottom: 8px; }
  .card-text { font-size: 13px; line-height: 1.65; color: #6b4f38; }
  .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brun);
    color: var(--creme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 900;
    margin: 0 auto 14px;
  }

  .dark-cards,
  .dc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .dark-card,
  .dcard { background: rgba(222,192,143,0.08); border: 1px solid rgba(222,192,143,0.2); border-radius: 14px; padding: 24px 22px; }
  .dark-card-title,
  .dct { font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
  .dark-card-text,
  .dcx { font-size: 13px; line-height: 1.6; color: rgba(234,231,223,0.7); }

  .highlight { background: rgba(222,192,143,0.15); border: 1.5px solid rgba(222,192,143,0.35); border-radius: 14px; padding: 24px 28px; margin-top: 24px; }
  .highlight-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brun); margin-bottom: 8px; }
  .highlight-text { font-size: 15px; line-height: 1.65; color: #5a4030; }

  .offre-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
  .offre-card { border-radius: 18px; padding: 32px 28px; }
  .offre-card-programme { background: var(--brun); color: var(--creme); }
  .offre-card-objectifs { background: rgba(222,192,143,0.15); border: 1.5px solid rgba(222,192,143,0.35); }
  .offre-card-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
  .offre-card-objectifs .offre-card-title { color: var(--brun); }
  .offre-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.55; margin-bottom: 12px; }
  .offre-item:last-child { margin-bottom: 0; }
  .offre-item-light strong { color: var(--gold); }
  .offre-item-dark strong { color: var(--brun); }
  .offre-item-dark .ck { background: var(--brun); color: var(--creme); }
  .offre-badge { display: inline-block; background: var(--gold); color: var(--brun-dark); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 16px; }

  .contact-block { background: var(--brun-dark); border-radius: 16px; padding: 28px 32px; margin-top: 32px; display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
  .contact-item { display: flex; align-items: center; gap: 12px; }
  .contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 4px; }
  .contact-val { font-size: 15px; font-weight: 600; color: var(--creme); }
  .contact-val a { color: var(--creme); text-decoration: none; }
  .contact-val a:hover { color: var(--gold); }

  .pmr-strip { background: var(--gold); padding: 20px 72px; display: flex; align-items: center; justify-content: center; gap: 16px; }
  .pmr-strip span { font-size: 15px; font-weight: 600; color: var(--brun-dark); }

  .pmr-badge { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.85); border-radius: 16px; padding: 12px 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
  .pmr-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--creme); display: inline-block; }
  .pmr-badge-content { display: flex; flex-direction: column; }
  .pmr-badge-title { font-size: 12px; font-weight: 600; letter-spacing: 0.055em; color: var(--brun); text-transform: uppercase; }
  .pmr-badge-subtitle { font-size: 11px; color: #8a6a50; margin-top: 2px; }

  .adresse-note { display: block; font-size: 13px; color: #8a6a50; margin-top: 4px; }
  .adresse-note--gold { color: var(--gold); }

  .localisation-map iframe { border: 0; border-radius: 20px; }

  .valeur-text a { color: var(--brun); text-decoration: none; }

  @media (max-width: 900px) {
    .page-hero,
    .ph { padding: 110px 24px 60px; }
    .section,
    .s { padding: 56px 24px; }
    .two-col,
    .two { grid-template-columns: 1fr; gap: 36px; }
    .cards { grid-template-columns: 1fr; }
    .dark-cards,
    .dc { grid-template-columns: 1fr; }
    .cta-band { padding: 48px 24px; flex-direction: column; align-items: flex-start; }
    .pmr-strip { flex-wrap: wrap; padding: 18px 24px; }
    .contact-block { flex-direction: column; }
  }

  /* ── SECTION LOCALISATION ── */
  .section-localisation {
    padding: 100px 72px;
    background: var(--white);
  }
  .localisation-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .localisation-infos h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700; line-height: 1.2;
    color: var(--brun-dark); margin-bottom: 16px;
  }
  .localisation-infos > p {
    font-size: 15px; line-height: 1.7;
    color: #6b4f38; margin-bottom: 36px;
  }
  .adresse-block {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(103,51,2,0.08);
  }
  .adresse-block:not(:last-child) {
    margin-bottom: 20px;
  }
  .adresse-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brun);
    flex-shrink: 0;
  }
  .adresse-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    fill: currentColor;
  }
  .adresse-title {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gold); margin-bottom: 5px;
  }
  .adresse-text {
    font-size: 15px; line-height: 1.6; color: var(--brun-dark);
  }
  .localisation-map {
    position: relative;
    height: 540px;
    border-radius: 20px;
    overflow: visible;
  }
  .localisation-map iframe {
    height: 100%;
    box-shadow: 0 12px 40px rgba(103,51,2,0.12);
  }
  .btn-itineraire {
    position: absolute;
    bottom: -20px; left: 50%; transform: translateX(-50%);
    background: var(--brun);
    color: var(--creme);
    padding: 14px 32px; border-radius: 50px;
    font-size: 14px; font-weight: 500;
    text-decoration: none; white-space: nowrap;
    box-shadow: 0 6px 24px rgba(103,51,2,0.3);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
  }
  .btn-itineraire:hover { background: var(--brun-dark); transform: translateX(-50%) translateY(-2px); }

  @media (max-width: 900px) {
    .section-localisation { padding: 64px 24px; }
    .localisation-inner { grid-template-columns: 1fr; gap: 48px; }
    .localisation-map { height: 320px; }
  }
