    :root {
      --bg: #f6f3ee;
      --ink: #111111;
      --muted: #5b5b5b;
      --accent: #c56a2a;
      --accent-2: #2a4d45;
      --card: #ffffff;
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      --radius: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Space Grotesk", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(900px 600px at 10% -10%, #fbd9b1 0%, transparent 60%),
        radial-gradient(700px 500px at 90% -5%, #c8f0e6 0%, transparent 55%),
        var(--bg);
    }

    .container {
      width: min(1100px, 92vw);
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(8px);
      background: rgba(246, 243, 238, 0.85);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      gap: 20px;
    }

    .brand {
      font-family: "Playfair Display", serif;
      font-size: 22px;
      letter-spacing: 0.5px;
    }

    .nav a {
      color: var(--ink);
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
    }

    .nav-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 100px;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border-radius: 999px;
      background: #111111;
      border: 1px solid #111111;
      font-weight: 700;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      color: #fff !important;
      text-decoration: none;
    }

    .nav-cta:hover {
      background: #ffffff;
      border-color: #111111;
      color: #111 !important;
    }

    .hero {
      padding: 90px 0 70px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 36px;
      align-items: center;
    }

    .hero h1 {
      font-family: "Playfair Display", serif;
      font-size: clamp(36px, 4vw, 54px);
      margin: 0 0 16px;
    }

    .hero p {
      font-size: 18px;
      color: var(--muted);
      margin: 0 0 22px;
    }

    .price-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--ink);
      color: #fff;
      font-weight: 700;
      font-size: 16px;
    }

    .price-hero {
      background: linear-gradient(135deg, #1a1a1a 0%, #3c2b1f 100%);
      color: #fff;
      padding: 32px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      display: grid;
      gap: 12px;
    }

    .price-hero::after {
      content: "";
      position: absolute;
      inset: -40% -10% auto auto;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(197, 106, 42, 0.45), transparent 70%);
      border-radius: 50%;
    }

    .price-hero .eyebrow {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 20px;
    }

    .price-hero .value {
      font-family: "Playfair Display", serif;
      font-size: clamp(60px, 9vw, 92px);
      line-height: 0.95;
      margin: 0;
      color: #f2b26c;
      text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .price-hero .subtitle {
      margin: 15px 0 0 0;
      font-size: 16px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      opacity: 0.9;
    }

    .section {
      padding: 70px 0;
    }

    .section h3 {
      font-family: "Playfair Display", serif;
      font-size: 32px;
      margin: 0 0 18px;
    }

    .grid {
      display: grid;
      gap: 18px;
    }

    .cards-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card {
      background: var(--card);
      padding: 18px;
      border-radius: 14px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .card-photo {
      background: var(--card);
      padding: 18px;
      border-radius: 14px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 0, 0, 0.08);
      background-color: #f2b26c;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card-photo:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    }

    .photo-frame {
      aspect-ratio: 1 / 1;
      height: auto;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      display: grid;
      place-items: center;
      color: var(--muted);
      background: #ffffff;
      overflow: hidden;
      position: relative;
    }

    .photo-frame img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .photo-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0;
      padding: 6px 10px;
      font-size: 13px;
      color: #ffffff;
      text-align: center;
      letter-spacing: 0.8px;
      font-weight: 700;
      text-transform: uppercase;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
      pointer-events: none;
    }

    .photo-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      display: grid;
      place-items: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
      z-index: 200;
    }

    .photo-modal.open {
      opacity: 1;
      pointer-events: auto;
    }

    .photo-modal-card {
      width: min(520px, 92vw);
      background: #f2b26c;
      border-radius: 16px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
      text-align: left;
      overflow: hidden;
    }

    .photo-modal-title {
      margin: 0 0 10px;
      font-family: "Playfair Display", serif;
      font-size: 28px;
      letter-spacing: 0.6px;
      color: var(--ink);
    }

    .photo-modal-text {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.5;
    }

    .photo-modal-image {
      width: 100%;
      aspect-ratio: 1 / 1;
      height: auto;
      object-fit: cover;
      display: block;
      border: none;
      border-radius: 0;
    }

    .photo-modal-content {
      padding: 20px 24px 24px;
    }

    .work-preview {
      margin-top: 28px;
      text-align: left;
    }

    .work-preview h4 {
      margin: 0 0 10px;
      font-size: 18px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--ink);
    }

    .divider {
      width: 120px;
      height: 3px;
      background: var(--accent);
      border-radius: 999px;
    }

    .day-view {
      margin: 28px 0 20px;
      padding: 22px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 16px;
      background: #ffffff;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .day-view-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      margin-bottom: 16px;
    }

    .day-view-title {
      font-family: "Playfair Display", serif;
      font-size: 24px;
      margin: 0;
      color: #111111;
      text-align: center;
    }

    .day-view-sub {
      margin: 0;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #111111;
      opacity: 0.7;
      text-align: center;
    }

    .day-arrow {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid #111111;
      background: #ffffff;
      color: #111111;
      font-weight: 700;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .day-arrow:hover {
      background: #111111;
      color: #ffffff;
    }

    .day-view-center {
      text-align: center;
      flex: 1;
    }

    .hours-scroll {
      height: 420px;
      overflow-y: auto;
      border-left: 3px solid #111111;
      padding-left: 16px;
    }

    #hoursScroll {
      position: relative;
      min-height: 880px;
    }

    #hoursScroll .slots-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

#hoursScroll .slot-item {
  position: absolute;
  left: 84px;
  right: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  background: rgba(242, 178, 108, 0.8);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: transform 0.2s ease, background 0.25s ease, color 0.2s ease;
  z-index: 6;
}

#hoursScroll .slot-item:hover {
  background: rgba(242, 178, 108, 0.5);
  color: #111111;
  transform: translateY(-1px);
}

#hoursScroll .hour-row {
  position: relative;
  height: 80px;
  padding: 0;
  z-index: 1;
}

.hour-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
  gap: 14px;
  height: 80px;
  padding: 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.hour-row span {
  color: #111111;
  font-weight: 600;
  transform: translateY(-50%);
}

.slots-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.slot-item {
  position: absolute;
  left: 84px;
  right: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  background: rgba(242, 178, 108, 0.8);
  color: #111;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.slot-item:hover {
  background: rgba(242, 178, 108, 0.6);
  color: #111111;
  transform: translateY(-1px);
  transform: scale(1.02);
  border-color: #fff;
}

.slot-item.booked {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.12);
  color: #555555;
  opacity: 0.65;
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
}

    .agenda-wrap {
      margin-top: 12px;
    }

    .month {
      background: var(--card);
      border-radius: 16px;
      padding: 14px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    }

    .month h4 {
      margin: 0 0 8px;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--accent-2);
    }

    .days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 6px;
      font-size: 12px;
      color: var(--muted);
    }

    .day {
      text-align: center;
      padding: 4px 0;
      border-radius: 6px;
      background: rgba(0, 0, 0, 0.04);
    }

    .day-button {
      width: 100%;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: #ffffff;
      color: #111111;
      border-radius: 6px;
      padding: 4px 0;
      font-size: 12px;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .day-button:hover {
      background: #111111;
      color: #ffffff;
    }

    .day-button.active {
      background: #111111;
      color: #ffffff;
      border-color: #111111;
    }

    .day-button.yellow {
      background: #f2b26c;
      border-color: #f2b26c;
      color: #111111;
    }

    .day-button.yellow:hover {
      background: #111111;
      color: #ffffff;
      border-color: #111111;
    }

    footer {
      padding: 80px 0 140px;
      background: #111111;
      color: #ffffff;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: space-between;
      align-items: center;
    }

    .social-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
      color: #ffffff;
    }

    .social-icon {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .social-icon img {
      width: 18px;
      height: 18px;
      display: block;
      object-fit: contain;
    }

    .social-label {
      opacity: 0.8;
    }

    .footer-coords {
      min-width: 220px;
      text-align: left;
    }

    .footer-coords-title {
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .footer-coords-text {
      opacity: 0.85;
      font-size: 14px;
      line-height: 1.5;
    }

    .fade-in {
      animation: fadeUp 0.7s ease both;
    }

    .stagger > * {
      animation: fadeUp 0.7s ease both;
    }

    .stagger > *:nth-child(2) { animation-delay: 0.12s; }
    .stagger > *:nth-child(3) { animation-delay: 0.24s; }
    .stagger > *:nth-child(4) { animation-delay: 0.36s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; }
      .nav { flex-direction: column; align-items: flex-start; }
      .nav-right { flex-direction: column; align-items: flex-start; gap: 12px; }
    }

    @media (max-width: 600px) {
      .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    /* ── Nouvelle disposition agenda ──────────────────────────────────────── */

    .agenda-layout {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 18px;
      margin-top: 22px;
      align-items: start;
    }

    /* ─ Semainier ─────────────────────────────────────────────────────────── */
    .week-panel {
      background: var(--card);
      border-radius: 16px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .week-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 12px 8px;
    }

    .week-label {
      font-size: 11px;
      font-weight: 700;
      text-align: center;
      flex: 1;
      color: var(--ink);
      letter-spacing: 0.3px;
    }

    .week-arrow {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1px solid #111111;
      background: #ffffff;
      color: #111111;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: grid;
      place-items: center;
      line-height: 1;
      transition: background 0.2s ease, color 0.2s ease;
      flex-shrink: 0;
    }

    .week-arrow:hover {
      background: #111111;
      color: #ffffff;
    }

    .week-initials {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      padding: 0 10px;
      gap: 3px;
    }

    .week-initials span {
      text-align: center;
      font-size: 10px;
      font-weight: 600;
      color: var(--muted);
      padding: 2px 0;
    }

    .week-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      padding: 4px 10px 14px;
      gap: 3px;
    }

    .week-legend {
      border-top: 1px solid rgba(0, 0, 0, 0.07);
      padding: 9px 12px;
      font-size: 10px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 5px;
      flex-wrap: wrap;
    }

    .legend-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ─ Panneau du jour ───────────────────────────────────────────────────── */
    .day-panel {
      background: var(--card);
      border-radius: 16px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .day-panel-header {
      background: #111111;
      padding: 12px 18px;
    }

    .day-panel-header .day-view-sub {
      margin: 0;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.55);
    }

    .day-panel-header .day-view-title {
      margin: 5px 0 0;
      color: #ffffff;
    }

    /* Conteneur scrollable de la timeline */
    .hours-scroll-outer {
      height: 420px;
      overflow-y: auto;
      border-left: 3px solid #111111;
      margin: 16px 16px 16px 20px;
    }

    /* Réinitialise les anciens styles sur #hoursScroll dans le nouveau contexte */
    .day-panel .hours-scroll {
      height: auto;
      overflow-y: visible;
      border-left: none;
      padding-left: 16px;
      position: relative;
    }

    /* ─ Mobile : panneaux collés sans espace ─────────────────────────────── */
    @media (max-width: 900px) {
      .agenda-layout {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .week-panel {
        border-radius: 16px 16px 0 0;
        border-bottom: none;
        box-shadow: none;
      }

      .day-panel {
        border-radius: 0 0 16px 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
      }
    }