  :root {
    --ink: #1a1714;
    --ink-soft: #3a342e;
    --paper: #f4ede1;
    --paper-warm: #ebe1d0;
    --accent: #57a2d8;
    --accent-deep: #2c6a99;
    --gold: #b08a4a;
    --line: rgba(26, 23, 20, 0.18);
    --line-soft: rgba(26, 23, 20, 0.08);
    --display: 'Fraunces', Georgia, serif;
    --body: 'Inter Tight', -apple-system, sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    overflow-x: hidden;
    font-feature-settings: "ss01", "cv11";
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(87, 162, 216, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(176, 138, 74, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: multiply;
  }

  main, header, footer { position: relative; z-index: 3; }

  /* Navigation */
  nav.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(244, 237, 225, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-soft);
    transition: padding 0.3s ease;
  }

  .nav-logo {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-style: italic;
  }
  .nav-logo span { color: var(--accent); font-style: normal; font-weight: 700; }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
  }
  .nav-links a {
    color: var(--ink);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s ease;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-links a:hover::after { width: 100%; }

  .nav-phone {
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent-deep);
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  @media (max-width: 880px) {
    nav.top-nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    padding: 8rem 2.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--accent);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
  }

  .hero-title {
    font-family: var(--display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    font-variation-settings: 'opsz' 144;
  }
  .hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
  }
  .hero-title .accent-word {
    display: block;
    font-weight: 600;
  }

  .hero-tagline {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--ink-soft);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    max-width: 480px;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2rem;
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.3s ease;
    border: 1px solid var(--ink);
  }
  .hero-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
  }
  .hero-cta svg { transition: transform 0.3s ease; }
  .hero-cta:hover svg { transform: translateX(4px); }

  .hero-visual {
    position: relative;
    aspect-ratio: 5/4;
    max-width: 720px;
    justify-self: center;
    width: 100%;
  }

  .hero-photo-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(26, 23, 20, 0.25);
  }

  .hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: contrast(1.02) saturate(0.9);
    transition: transform 0.8s ease;
  }

  .hero-visual:hover .hero-photo-frame img {
    transform: scale(1.03);
  }

  /* Color overlay for editorial feel */
  .hero-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(44, 106, 153, 0.12) 100%);
    pointer-events: none;
  }

  /* Decorative tag */
  .hero-tag {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: var(--accent);
    color: var(--paper);
    padding: 0.85rem 1.4rem;
    font-family: var(--display);
    font-style: italic;
    font-size: 1rem;
    z-index: 3;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 24px rgba(44, 106, 153, 0.35);
  }
  .hero-tag .num {
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
    margin-right: 0.5rem;
  }

  .hero-decoration {
    position: absolute;
    font-family: var(--display);
    font-style: italic;
    font-size: 9rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    top: -3rem;
    right: -2rem;
    font-weight: 300;
    z-index: 0;
    pointer-events: none;
  }

  /* Marquee */
  .marquee {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--ink);
    color: var(--paper);
    padding: 1.25rem 0;
  }
  .marquee-track {
    display: flex;
    gap: 4rem;
    animation: scroll 35s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .marquee span {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
  .marquee .dot { color: var(--gold); font-style: normal; }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @media (max-width: 880px) {
    .hero {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 6rem 1.25rem 3rem;
    }
    .hero-visual { max-width: 350px; }
  }

  /* Sections génériques */
  section {
    padding: 7rem 2.5rem;
    position: relative;
  }
  @media (max-width: 880px) { section { padding: 4rem 1.25rem; } }

  .section-header {
    max-width: 1280px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: end;
  }
  .section-number {
    font-family: var(--display);
    font-style: italic;
    font-size: 1rem;
    color: var(--accent);
    font-weight: 400;
  }
  .section-number::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    max-width: 14ch;
  }
  .section-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
  }

  @media (max-width: 880px) {
    .section-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  }

  /* QUI SOMMES NOUS */
  .about {
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .about-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .about-text {
    font-family: var(--display);
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 300;
    color: var(--ink-soft);
  }
  .about-text strong {
    font-weight: 500;
    color: var(--ink);
    font-style: italic;
  }

  .about-text .drop-cap::first-letter {
    font-family: var(--display);
    font-size: 5.5rem;
    float: left;
    line-height: 0.85;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    color: var(--accent);
    font-weight: 600;
  }

  .about-pullquote {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--accent-deep);
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.4;
  }

  .stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 1rem;
  }
  .stat {
    border-bottom: 1px solid var(--line);
    padding-bottom: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: baseline;
  }
  .stat-number {
    font-family: var(--display);
    font-size: 4.5rem;
    line-height: 0.9;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.03em;
  }
  .stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    font-weight: 500;
  }

  @media (max-width: 880px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .stat-number { font-size: 3.2rem; }
  }

  /* POURQUOI NOUS CHOISIR */
  .why {
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .why-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .why-pillar {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper-warm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    transition: background 0.4s ease;
  }
  .why-pillar:hover { background: var(--paper); }
  .why-pillar-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--accent);
  }
  .why-pillar-icon {
    width: 56px;
    height: 56px;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }
  .why-pillar h3 {
    font-family: var(--display);
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .why-pillar h3 em { font-style: italic; font-weight: 300; color: var(--accent); }
  .why-pillar p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  @media (max-width: 720px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-pillar { padding: 2.25rem 1.5rem; }
  }

  /* QUEL PRATICIEN CONSULTER */
  .guide {
    background: var(--ink);
    color: var(--paper);
  }
  .guide .section-title { color: var(--paper); }
  .guide .section-title em { color: var(--gold); }
  .guide .section-number { color: var(--gold); }
  .guide .section-number::before { background: var(--gold); }

  .guide-intro {
    max-width: 1280px;
    margin: 0 auto 4rem;
    font-family: var(--display);
    font-style: italic;
    font-size: 1.3rem;
    color: rgba(244, 237, 225, 0.8);
    line-height: 1.5;
    max-width: 60ch;
  }

  .guide-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .guide-card {
    background: rgba(244, 237, 225, 0.04);
    border: 1px solid rgba(244, 237, 225, 0.1);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.4s ease;
    border-radius: 2px;
  }
  .guide-card:hover {
    background: rgba(176, 138, 74, 0.08);
    border-color: rgba(176, 138, 74, 0.25);
    transform: translateY(-3px);
  }

  .guide-card-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(244, 237, 225, 0.12);
  }
  .guide-card-icon {
    width: 26px;
    height: 26px;
    color: var(--gold);
    flex-shrink: 0;
  }
  .guide-card-zone {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--paper);
    letter-spacing: -0.01em;
  }

  .guide-symptoms {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .guide-symptoms li {
    font-size: 0.88rem;
    color: rgba(244, 237, 225, 0.75);
    line-height: 1.45;
    padding-left: 1.1rem;
    position: relative;
  }
  .guide-symptoms li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
  }

  .guide-card-link {
    margin-top: auto;
    padding-top: 1rem;
    font-family: var(--display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
  }
  .guide-card-link:hover { gap: 0.8rem; }

  @media (max-width: 880px) {
    .guide-grid { grid-template-columns: 1fr; }
    .guide-intro { font-size: 1.1rem; }
  }

  /* SPECIALITES */
  .specialties-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .specialty-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    text-decoration: none;
    color: var(--paper);
    display: block;
    cursor: pointer;
    border-radius: 2px;
    background: var(--ink);
  }
  .specialty-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    filter: grayscale(1) contrast(1.05);
  }
  .specialty-card-img.pos-top { object-position: center 25%; }
  .specialty-card-img.pos-bottom { object-position: center 75%; }
  .specialty-card-img.pos-center-low { object-position: center 60%; }
  .specialty-card:hover .specialty-card-img {
    transform: scale(1.06);
  }

  /* Bottom-up gradient overlay */
  .specialty-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(26, 23, 20, 0) 30%,
        rgba(26, 23, 20, 0.4) 60%,
        rgba(26, 23, 20, 0.92) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
  }
  /* Color accent overlay on hover */
  .specialty-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(44, 106, 153, 0) 0%,
      rgba(44, 106, 153, 0.55) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .specialty-card:hover::after { opacity: 1; }

  .specialty-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .specialty-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold);
    display: block;
    letter-spacing: 0.04em;
  }

  .specialty-bottom { display: flex; flex-direction: column; gap: 1rem; }

  .specialty-title {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0;
  }
  .specialty-title em { font-style: italic; font-weight: 300; color: var(--gold); }

  .specialty-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(244, 237, 225, 0.85);
    max-width: 38ch;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease 0.1s;
  }
  .specialty-card:hover .specialty-desc {
    max-height: 200px;
    opacity: 1;
  }

  .specialty-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--paper);
    font-weight: 500;
    padding-top: 0.5rem;
  }
  .specialty-arrow svg {
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .specialty-card:hover .specialty-arrow svg { transform: translateX(8px); }

  /* Featured card spans both columns */
  .specialty-card.featured {
    grid-column: 1 / -1;
    aspect-ratio: 21/9;
  }

  @media (max-width: 720px) {
    .specialties-grid { grid-template-columns: 1fr; }
    .specialty-card, .specialty-card.featured { aspect-ratio: 4/5; }
    .specialty-content { padding: 1.75rem; }
  }

  /* NOTRE LIEU */
  .place {
    background: var(--paper);
    overflow: hidden;
  }
  .place-hero {
    max-width: 1280px;
    margin: 0 auto 4rem;
    position: relative;
  }
  .place-hero-img {
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
    border-radius: 2px;
    background: var(--ink);
  }
  .place-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .place-hero-img:hover img { transform: scale(1.04); }
  .place-hero-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--paper);
    padding: 1rem 1.4rem;
    font-family: var(--display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--ink);
    box-shadow: 0 8px 24px rgba(26, 23, 20, 0.15);
    max-width: 280px;
    line-height: 1.4;
  }
  .place-hero-caption strong {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
  }

  .place-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: stretch;
  }

  .place-secondary-img {
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 5/4;
    background: var(--ink);
  }
  .place-secondary-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .place-secondary-img:hover img { transform: scale(1.04); }

  .place-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
  }
  .place-caption {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    font-weight: 500;
  }
  .place-info h3 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
  }
  .place-info h3 em { font-style: italic; color: var(--accent); font-weight: 300; }
  .place-info > p {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  .place-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
  }
  .place-fact { display: flex; flex-direction: column; gap: 0.4rem; }
  .place-fact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-weight: 500;
  }
  .place-fact-value {
    font-family: var(--display);
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.4;
    font-weight: 400;
  }
  .place-fact-value a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: color 0.3s, border-color 0.3s;
  }
  .place-fact-value a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }

  @media (max-width: 880px) {
    .place-hero-img { aspect-ratio: 16/10; }
    .place-hero-caption { bottom: 0.75rem; left: 0.75rem; max-width: 220px; padding: 0.75rem 1rem; font-size: 0.85rem; }
    .place-content { grid-template-columns: 1fr; gap: 2rem; }
    .place-facts { grid-template-columns: 1fr; gap: 1.25rem; }
  }

  /* MAP EMBED */
  .place-map {
    max-width: 1280px;
    margin: 4rem auto 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 23, 20, 0.12);
    border: 1px solid var(--line);
  }
  .place-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: grayscale(0.4) contrast(1.05);
    transition: filter 0.5s ease;
  }
  .place-map:hover iframe { filter: grayscale(0) contrast(1); }

  @media (max-width: 720px) {
    .place-map iframe { height: 340px; }
    .place-map { margin-top: 2.5rem; }
  }

  /* FAQ */
  .faq {
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .faq-grid {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
    transition: background 0.3s ease;
  }
  .faq-item summary {
    padding: 1.75rem 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--accent); }
  .faq-item[open] summary { color: var(--accent); }

  .faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 0.15rem;
  }
  .faq-item:hover .faq-toggle, .faq-item[open] .faq-toggle {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--paper);
  }
  .faq-toggle svg {
    transition: transform 0.3s ease;
  }
  .faq-item[open] .faq-toggle svg { transform: rotate(45deg); }

  .faq-answer {
    padding: 0 0 1.75rem;
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 70ch;
  }
  .faq-answer p { margin-bottom: 0.85rem; }
  .faq-answer p:last-child { margin-bottom: 0; }
  .faq-answer a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
  }

  @media (max-width: 720px) {
    .faq-item summary { font-size: 1.05rem; padding: 1.4rem 0; gap: 1rem; }
    .faq-toggle { width: 28px; height: 28px; }
  }

  .practitioners {
    background: var(--ink);
    color: var(--paper);
  }
  .practitioners .section-title { color: var(--paper); }
  .practitioners .section-title em { color: var(--gold); }
  .practitioners .section-number { color: var(--gold); }
  .practitioners .section-number::before { background: var(--gold); }

  .pract-group {
    max-width: 1280px;
    margin: 0 auto 4rem;
  }

  .pract-group-title {
    font-family: var(--display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(176, 138, 74, 0.3);
    padding-bottom: 1rem;
    font-weight: 400;
  }

  .pract-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0;
    border-left: 1px solid rgba(244, 237, 225, 0.1);
  }

  .pract-card {
    padding: 2rem 1.75rem;
    border-right: 1px solid rgba(244, 237, 225, 0.1);
    border-bottom: 1px solid rgba(244, 237, 225, 0.1);
    border-top: 1px solid rgba(244, 237, 225, 0.1);
    text-decoration: none;
    color: var(--paper);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.4s ease;
    position: relative;
    background: transparent;
  }
  .pract-card:hover {
    background: rgba(176, 138, 74, 0.08);
  }
  .pract-card::after {
    content: '↗';
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: all 0.3s ease;
  }
  .pract-card:hover::after {
    opacity: 1;
    transform: translate(0, 0);
  }

  .pract-name {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
    padding-right: 1.5rem;
  }
  .pract-spec {
    font-size: 0.82rem;
    color: rgba(244, 237, 225, 0.65);
    font-style: italic;
    font-family: var(--display);
    line-height: 1.4;
  }

  /* RDV CTA SECTION */
  .rdv-section {
    background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
    color: var(--paper);
    text-align: center;
    overflow: hidden;
  }
  .rdv-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  .rdv-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .rdv-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }
  .rdv-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }
  .rdv-subtitle {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(244, 237, 225, 0.85);
    margin-bottom: 3rem;
  }

  .rdv-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .rdv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.2rem;
    background: var(--paper);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.3s ease;
  }
  .rdv-btn:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-2px);
  }
  .rdv-btn.secondary {
    background: transparent;
    color: var(--paper);
    border: 1px solid rgba(244, 237, 225, 0.4);
  }
  .rdv-btn.secondary:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
  }

  /* FOOTER */
  footer {
    background: var(--paper-warm);
    padding: 5rem 2.5rem 2rem;
    border-top: 1px solid var(--line);
  }
  .footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  .footer-grid:has(> :nth-child(3):last-child) {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-brand {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1rem;
  }
  .footer-brand span { color: var(--accent); font-style: italic; }
  .footer-mission {
    font-family: var(--display);
    font-style: italic;
    color: var(--ink-soft);
    max-width: 38ch;
    line-height: 1.5;
  }
  .footer-col-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .footer-col p, .footer-col a {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.7;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--accent); }

  .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--ink-soft);
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-bottom .signature {
    font-family: var(--display);
    font-style: italic;
  }

  @media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }

  /* Animations on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hero entrance */
  .hero-eyebrow, .hero-title, .hero-tagline, .hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: heroIn 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  }
  .hero-title { animation-delay: 0.15s; }
  .hero-tagline { animation-delay: 0.3s; }
  .hero-cta { animation-delay: 0.45s; }
  .hero-visual {
    opacity: 0;
    transform: scale(0.95);
    animation: heroVisualIn 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
  }
  @keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes heroVisualIn {
    to { opacity: 1; transform: scale(1); }
  }

  /* Floating animation for hero photo */
  .hero-photo-frame {
    animation: float 9s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

/* ===========================
   PAGES SPÉCIALITÉS
   =========================== */

/* Hero spécialité */
.specialty-hero {
  min-height: 70vh;
  padding: 9rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.specialty-hero-text { max-width: 580px; }
.specialty-hero .breadcrumb {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-weight: 500;
}
.specialty-hero .breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.specialty-hero .breadcrumb a:hover { color: var(--accent); border-color: var(--accent); }
.specialty-hero .breadcrumb span { color: var(--accent); }

.specialty-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.specialty-hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }

.specialty-hero .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.specialty-hero-photo {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26, 23, 20, 0.2);
}
.specialty-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.specialty-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(44, 106, 153, 0.25) 100%);
  pointer-events: none;
}

@media (max-width: 880px) {
  .specialty-hero { grid-template-columns: 1fr; padding: 7rem 1.25rem 3rem; gap: 2.5rem; }
}

/* Section "Quand consulter" */
.symptoms {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.symptoms-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.symptom-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: all 0.3s ease;
}
.symptom-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 23, 20, 0.08);
  border-color: var(--accent);
}
.symptom-card-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.symptom-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--ink);
}
.symptom-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Section pathologies */
.conditions {
  background: var(--paper);
}
.conditions-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.condition-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.3s ease;
}
.condition-card:hover { background: var(--paper-warm); }
.condition-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.condition-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.condition-card h3 em { font-style: italic; font-weight: 300; color: var(--accent); }
.condition-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .conditions-grid { grid-template-columns: 1fr; }
  .condition-card { padding: 2rem 1.5rem; }
}

/* Section approches thérapeutiques */
.approach {
  background: var(--ink);
  color: var(--paper);
}
.approach .section-title { color: var(--paper); }
.approach .section-title em { color: var(--gold); }
.approach .section-number { color: var(--gold); }
.approach .section-number::before { background: var(--gold); }

.approach-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.approach-card {
  background: rgba(244, 237, 225, 0.04);
  border: 1px solid rgba(244, 237, 225, 0.1);
  padding: 2.25rem 1.75rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s ease;
}
.approach-card:hover {
  background: rgba(176, 138, 74, 0.08);
  border-color: rgba(176, 138, 74, 0.25);
  transform: translateY(-3px);
}
.approach-card-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
}
.approach-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.approach-card p {
  font-size: 0.92rem;
  color: rgba(244, 237, 225, 0.75);
  line-height: 1.6;
}

/* Section "En savoir plus" */
.deep-dive {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  text-align: center;
}
.deep-dive-content {
  max-width: 720px;
  margin: 0 auto;
}
.deep-dive .eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.deep-dive h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.deep-dive h2 em { font-style: italic; color: var(--accent); font-weight: 300; }
.deep-dive p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 2rem;
}
.deep-dive-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 2rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.deep-dive-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
