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

  :root {
    --navy: #1a2940;
    --navy-light: #253650;
    --teal: #2a7f6f;
    --teal-light: #3a9f8c;
    --teal-pale: #e8f4f1;
    --cream: #f8f6f2;
    --warm-white: #fdfcfa;
    --text: #1a2940;
    --text-muted: #5a6a7e;
    --text-light: #8a9ab0;
    --border: #e2e8ef;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Inter', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .nav-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    object-fit: cover;
    flex-shrink: 0;
  }
  .nav-logo span {
    display: block;
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-top: -2px;
  }
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.02em;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta {
    background: var(--teal);
    color: white !important;
    padding: 0.45rem 1.1rem;
    border-radius: 6px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--teal-light) !important; color: white !important; }

  /* HERO */
  .hero {
    padding: 120px 2rem 80px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(42,127,111,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(42,127,111,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1.2rem;
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: 3.2rem;
    line-height: 1.08;
    color: white;
    margin-bottom: 1.4rem;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic;
    color: rgba(255,255,255,0.7);
  }
  .hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
  }
  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal);
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: rgba(255,255,255,0.5); color: white; }

  /* Hero photo placeholder */
  .hero-photo {
    display: flex;
    justify-content: flex-end;
  }
  .photo-frame {
    width: 380px;
    height: 420px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  }
  .photo-frame svg {
    opacity: 0.3;
  }
  .photo-frame .photo-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* INFOS RAPIDES */
  .quick-info {
    background: var(--teal-pale);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
  }
  .quick-info-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .qi-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--navy);
  }
  .qi-item svg { flex-shrink: 0; color: var(--teal); }
  .qi-item strong { font-weight: 600; }

  /* SECTIONS */
  section { padding: 80px 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: var(--serif);
    font-size: 2.4rem;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }
  .section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3rem;
  }

  /* SOINS */
  #soins { background: var(--cream); }
  .soins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .soin-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .soin-card:hover {
    box-shadow: 0 8px 30px rgba(26,41,64,0.08);
    transform: translateY(-2px);
  }
  .soin-icon {
    width: 44px;
    height: 44px;
    background: var(--teal-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .soin-icon svg { color: var(--teal); }
  .soin-card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
  }
  .soin-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
  }
  .soin-tag {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-pale);
    padding: 3px 10px;
    border-radius: 20px;
  }

  /* PLATEAU TECHNIQUE */
  #technique { background: white; }
  .technique-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .technique-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .tech-photo {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
  }
  .tech-photo:first-child {
    grid-column: span 2;
    aspect-ratio: 16/7;
  }
  .tech-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .photo-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(26,41,64,0.82);
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 6px;
  }
  .technique-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .tech-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .tech-bullet {
    width: 36px;
    height: 36px;
    background: var(--teal-pale);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tech-bullet svg { color: var(--teal); }
  .tech-item h4 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
  }
  .tech-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* AVIS */
  #avis { background: var(--navy); }
  #avis .section-title { color: white; }
  #avis .section-lead { color: rgba(255,255,255,0.5); }
  .avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .avis-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.75rem;
  }
  .stars { color: #f0a500; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
  .avis-card blockquote {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.2rem;
  }
  .avis-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-light);
    letter-spacing: 0.05em;
  }

  /* INFOS PRATIQUES */
  #infos { background: var(--cream); }
  .infos-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .info-block {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
  }
  .info-block h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
  }
  .horaires-table { width: 100%; border-collapse: collapse; }
  .horaires-table tr td {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
  }
  .horaires-table tr:last-child td { border-bottom: none; }
  .horaires-table td:first-child { color: var(--text-muted); font-weight: 500; }
  .horaires-table td:last-child { text-align: right; color: var(--navy); font-weight: 500; }
  .horaires-table tr.fermé td { color: var(--text-light); }
  .info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
  }
  .info-row:last-child { border-bottom: none; }
  .info-row svg { flex-shrink: 0; margin-top: 1px; color: var(--teal); }
  .info-row-content strong { display: block; font-weight: 600; color: var(--navy); }
  .info-row-content span { color: var(--text-muted); }
  .tarif-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
  }
  .tarif-row:last-child { border-bottom: none; }
  .tarif-row span:first-child { color: var(--text-muted); }
  .tarif-row span:last-child { font-weight: 600; color: var(--navy); }
  .tarif-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.5;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: 8px;
  }

  /* MAP PLACEHOLDER */
  .map-placeholder {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 1rem;
    text-align: center;
  }
  .map-placeholder svg { opacity: 0.4; }

  /* RDV SECTION */
  #rdv {
    background: linear-gradient(135deg, var(--teal) 0%, #1a6358 100%);
    padding: 60px 2rem;
    text-align: center;
  }
  #rdv h2 {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.75rem;
  }
  #rdv p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    font-size: 1.05rem;
  }
  .rdv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    color: var(--teal);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .rdv-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

  /* FOOTER */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.45);
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.8;
  }
  footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
  footer a:hover { color: var(--teal-light); }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-inner, .technique-layout, .infos-layout { grid-template-columns: 1fr; }
    .hero-photo { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .nav-links { gap: 0; }
    .nav-links li:not(:last-child) { display: none; }
    .technique-photos { grid-template-columns: 1fr; }
    .technique-photos .tech-photo:first-child { grid-column: span 1; aspect-ratio: 4/3; }
    .quick-info-inner { gap: 1.2rem; }
    nav { padding: 0 1rem; }
    .nav-logo { font-size: 1rem; gap: 0.5rem; white-space: nowrap; }
    .nav-logo-img { width: 30px; height: 30px; }
    .nav-logo span { display: none; }
    .nav-cta { padding: 0.4rem 0.85rem; font-size: 0.82rem; white-space: nowrap; }
  }

  /* ANIMATIONS */
  @media (prefers-reduced-motion: no-preference) {
    .soin-card, .avis-card, .info-block {
      animation: fadeUp 0.5s ease both;
    }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* PAGES DE SOIN — DÉTAIL */
  .breadcrumb {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.2rem;
  }
  .breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
  .breadcrumb a:hover { color: white; }
  .hero-single .hero-inner { grid-template-columns: 1fr; max-width: 760px; }
  .hero-single .hero-desc { max-width: 100%; }

  .detail-content { background: white; }
  .detail-content .section-inner { max-width: 780px; }
  .detail-content h2 {
    font-family: var(--serif);
    font-size: 1.7rem;
    color: var(--navy);
    margin: 2.5rem 0 1rem;
  }
  .detail-content h2:first-child { margin-top: 0; }
  .detail-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  .detail-content p a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--teal-light);
  }
  .detail-content p a:hover { color: var(--teal-light); }
  .detail-content ul {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
  }
  .detail-content ul li {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.5rem;
  }
  .detail-content ul li strong { color: var(--navy); }
  .detail-tarif {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0;
  }
  .detail-tarif .tarif-row { font-size: 0.95rem; }
  .related-soins { background: var(--cream); }
  .related-soins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  .related-soin-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    display: block;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .related-soin-card:hover { box-shadow: 0 8px 30px rgba(26,41,64,0.08); transform: translateY(-2px); }
  .related-soin-card h4 {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
  }
  .related-soin-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  /* PAGE PARCOURS — FRISE */
  .parcours-block { margin-bottom: 3rem; }
  .parcours-block:last-child { margin-bottom: 0; }
  .parcours-block > h2 {
    font-family: var(--serif);
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
  }
  .parcours-block > p.intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }
  .timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    border-left: 2px solid var(--border);
    padding-left: 1.75rem;
  }
  .timeline li {
    position: relative;
    padding-bottom: 1.6rem;
  }
  .timeline li:last-child { padding-bottom: 0; }
  .timeline li::before {
    content: '';
    position: absolute;
    left: calc(-1.75rem - 6px);
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    border: 2px solid var(--warm-white);
  }
  .timeline .tl-year {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--teal);
    background: var(--teal-pale);
    padding: 2px 9px;
    border-radius: 20px;
    margin-bottom: 0.35rem;
  }
  .timeline .tl-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: 0.15rem;
  }
  .timeline .tl-org {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .timeline.tl-major li::before {
    width: 13px;
    height: 13px;
    left: calc(-1.75rem - 7px);
    background: var(--navy);
  }
  .parcours-highlight {
    background: var(--teal-pale);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
  }
  .parcours-highlight p {
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.7;
    margin: 0;
  }

  /* ENCART AVERTISSEMENT MEDICAL */
  .medical-notice {
    background: var(--cream);
    border-left: 3px solid var(--teal);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 2rem 0 0;
  }
  .medical-notice p {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }
  /* Encart "quand consulter" */
  .alert-box {
    background: #fff8ed;
    border: 1px solid #f0d9b5;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
  }
  .alert-box h3 {
    font-family: var(--sans) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #8a5a00 !important;
    margin: 0 0 0.6rem !important;
  }
  .alert-box ul { margin-bottom: 0 !important; }
  .alert-box li { font-size: 0.92rem !important; color: #6b4a10 !important; }

  /* SOURCES SCIENTIFIQUES */
  .sources {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin-top: 2.5rem;
  }
  .sources h3 {
    font-family: var(--sans) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy) !important;
    margin: 0 0 1rem !important;
  }
  .sources ol { margin: 0; padding-left: 1.1rem; }
  .sources li {
    font-size: 0.83rem !important;
    color: var(--text-muted) !important;
    line-height: 1.6 !important;
    margin-bottom: 0.7rem !important;
  }
  .sources li:last-child { margin-bottom: 0 !important; }
  .sources a { color: var(--teal); text-decoration: none; border-bottom: 1px solid var(--border); }
  .sources a:hover { border-color: var(--teal); }

  /* PHOTO CLINIQUE */
  .clinical-figure {
    margin: 1.75rem 0;
    max-width: 340px;
  }
  .clinical-figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid var(--border);
  }
  .clinical-figure figcaption {
    font-size: 0.82rem !important;
    color: var(--text-light) !important;
    line-height: 1.55 !important;
    margin-top: 0.6rem !important;
    font-style: italic;
  }
  @media (max-width: 768px) {
    .clinical-figure { max-width: 100%; }
  }
