/* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #C9A84C;
      --gold-light: #F5E8C4;
      --gold-dark: #8A6720;
      --night: #0D0D0F;
      --night-2: #18181C;
      --night-3: #23232A;
      --white: #FFFFFF;
      --off-white: #F8F6F1;
      --text-main: #FAFAF8;
      --text-muted: #A8A49A;
      --text-dark: #1A1A1F;
      --text-dark-muted: #6B6860;
      --radius: 12px;
      --radius-sm: 8px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background: var(--off-white);
      color: var(--text-dark);
      line-height: 1.7;
      font-size: 16px;
    }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4 {
      font-family: Georgia, 'Times New Roman', serif;
      line-height: 1.2;
    }
    h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
    h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
    h3 { font-size: 1.2rem; font-weight: 600; }
    p { margin-bottom: 1rem; }
    strong { font-weight: 600; }
    a { color: var(--gold-dark); text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* ===== LAYOUT ===== */
    .container {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    .section { padding: 4rem 0; }
    .section-alt { background: var(--white); }

    /* ===== HERO ===== */
    .hero {
      background: var(--night);
      color: var(--text-main);
      padding: 5rem 1.5rem 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-inner {
      max-width: 960px;
      margin: 0 auto;
      position: relative;
    }
    /* ===== BREADCRUMB (dans le hero, même position que les pages départements) ===== */
    .breadcrumb-bar {
      margin-top: 1.25rem;
      margin-bottom: 0.9rem;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      list-style: none;
      font-size: 0.82rem;
      margin: 0;
    }
    .breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
    .breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
    .breadcrumb a:hover { color: var(--gold); text-decoration: none; }
    .breadcrumb .sep { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
    .breadcrumb .current { color: var(--gold); font-weight: 600; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--gold);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.35rem 0.9rem;
      border-radius: 999px;
      margin-bottom: 1.5rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .hero h1 {
      color: var(--white);
      margin-bottom: 1.5rem;
    }
    .hero h1 span { color: var(--gold); }
    .hero-intro {
      font-size: 1.1rem;
      color: #C8C4BB;
      max-width: 640px;
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }
    .stat-item { text-align: left; }
    .stat-num {
      font-family: Georgia, serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
      display: block;
      line-height: 1;
    }
    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 0.25rem;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold);
      color: var(--night);
      padding: 0.85rem 2rem;
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: #B8932F; text-decoration: none; transform: translateY(-1px); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.25);
      transition: border-color 0.2s;
    }
    .btn-outline:hover { border-color: rgba(255,255,255,0.6); text-decoration: none; }

    /* ===== SNIPPET BLOCK ===== */
    .snippet-block {
      background: var(--white);
      border-left: 4px solid var(--gold);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 2rem 2rem 2rem 2.5rem;
      margin: 3rem 0;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }
    .snippet-block .snippet-title {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold-dark);
      margin-bottom: 1.25rem;
    }
    .snippet-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
    }
    .snippet-item {
      background: var(--off-white);
      border-radius: var(--radius-sm);
      padding: 1rem 1.25rem;
    }
    .snippet-item .q {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-dark-muted);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }
    .snippet-item .a {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
    }

    /* ===== SERVICES GRID ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.25rem;
      margin-top: 2.5rem;
    }
    .service-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.5rem;
      border: 1px solid #E8E4DB;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
    .service-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }
    .service-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-dark); }
    .service-card p { font-size: 0.9rem; color: var(--text-dark-muted); margin: 0; line-height: 1.55; }

    /* ===== EVENTS ===== */
    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .event-card {
      background: var(--night);
      color: var(--text-main);
      border-radius: var(--radius);
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
    }
    .event-card::after {
      content: '';
      position: absolute;
      bottom: -20px; right: -20px;
      width: 80px; height: 80px;
      border-radius: 50%;
      background: rgba(201,168,76,0.08);
    }
    .event-card .event-type {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .event-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 0.5rem; font-family: Georgia, serif; }
    .event-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

    /* ===== PROCESS ===== */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1rem;
      margin-top: 2.5rem;
      counter-reset: steps;
    }
    .process-step {
      text-align: center;
      padding: 1.75rem 1rem;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid #E8E4DB;
      position: relative;
    }
    .step-number {
      font-family: Georgia, serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
      margin-bottom: 0.75rem;
    }
    .process-step h3 { font-size: 0.95rem; margin-bottom: 0.4rem; font-family: 'Segoe UI', sans-serif; }
    .process-step p { font-size: 0.83rem; color: var(--text-dark-muted); margin: 0; }

    /* ===== PRICING ===== */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.25rem;
      margin-top: 2.5rem;
    }
    .price-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem 1.5rem;
      border: 1px solid #E8E4DB;
      position: relative;
    }
    .price-card.featured {
      border: 2px solid var(--gold);
    }
    .price-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--night);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.25rem 0.9rem;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }
    .price-name { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dark-muted); font-weight: 600; margin-bottom: 0.5rem; }
    .price-amount {
      font-family: Georgia, serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1;
      margin-bottom: 0.25rem;
    }
    .price-amount span { font-size: 1rem; font-weight: 400; color: var(--text-dark-muted); }
    .price-desc { font-size: 0.87rem; color: var(--text-dark-muted); margin-bottom: 1.5rem; }
    .price-features { list-style: none; margin-bottom: 1.75rem; }
    .price-features li {
      font-size: 0.88rem;
      padding: 0.35rem 0;
      border-bottom: 1px solid #F0EDE6;
      color: var(--text-dark);
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .price-features li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }
    .btn-reserve {
      display: block;
      text-align: center;
      padding: 0.75rem;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      background: var(--night);
      color: var(--white);
      transition: background 0.2s;
    }
    .price-card.featured .btn-reserve { background: var(--gold); color: var(--night); }
    .btn-reserve:hover { opacity: 0.88; text-decoration: none; }

    /* ===== ZONE GEO ===== */
    .zone-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 1.5rem;
    }
    .zone-pill {
      background: var(--white);
      border: 1px solid #DDD9D0;
      border-radius: 999px;
      padding: 0.4rem 1rem;
      font-size: 0.875rem;
      color: var(--text-dark);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .zone-pill.primary {
      background: var(--gold-light);
      border-color: var(--gold);
      color: var(--gold-dark);
      font-weight: 700;
    }
    .zone-pill .dept {
      font-size: 0.72rem;
      color: var(--text-dark-muted);
      font-weight: 400;
    }

    /* ===== REVIEWS ===== */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.25rem;
      margin-top: 2.5rem;
    }
    .review-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.5rem;
      border: 1px solid #E8E4DB;
    }
    .review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 0.05em; }
    .review-text { font-size: 0.9rem; color: var(--text-dark); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
    .review-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .review-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--gold-light);
      color: var(--gold-dark);
      font-weight: 700;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .review-name { font-weight: 600; font-size: 0.875rem; color: var(--text-dark); }
    .review-meta { font-size: 0.78rem; color: var(--text-dark-muted); }
    .rating-summary {
      text-align: center;
      padding: 2rem;
      background: var(--night);
      border-radius: var(--radius);
      color: var(--white);
      margin-top: 2rem;
    }
    .rating-big { font-size: 3.5rem; font-weight: 700; color: var(--gold); font-family: Georgia, serif; line-height: 1; }
    .rating-stars-big { color: var(--gold); font-size: 1.3rem; margin: 0.4rem 0; }
    .rating-label { font-size: 0.85rem; color: var(--text-muted); }

    /* ===== FAQ ===== */
    .faq-list { margin-top: 2.5rem; }
    .faq-item {
      background: var(--white);
      border-radius: var(--radius);
      margin-bottom: 0.75rem;
      border: 1px solid #E8E4DB;
      overflow: hidden;
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 1.25rem 1.5rem;
      text-align: left;
      font-size: 0.97rem;
      font-weight: 600;
      color: var(--text-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
      line-height: 1.4;
    }
    .faq-q:hover { background: #FAFAF8; }
    .faq-chevron {
      color: var(--gold-dark);
      font-size: 1rem;
      transition: transform 0.2s;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-a {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.2s;
    }
    .faq-item.open .faq-a {
      max-height: 500px;
      padding: 0 1.5rem 1.25rem;
    }
    .faq-a p { font-size: 0.92rem; color: var(--text-dark-muted); margin: 0; line-height: 1.7; }

    /* ===== CTA FINALE ===== */
    .cta-section {
      background: var(--night);
      padding: 5rem 1.5rem;
      text-align: center;
    }
    .cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
    .cta-section h2 span { color: var(--gold); }
    .cta-section p { color: #A8A49A; font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem; }
    .cta-urgency {
      display: inline-block;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.25);
      color: var(--gold);
      font-size: 0.82rem;
      font-weight: 600;
      padding: 0.4rem 1rem;
      border-radius: 999px;
      margin-bottom: 1.75rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ===== SECTION HEADER ===== */
    .section-header { margin-bottom: 0.5rem; }
    .section-eyebrow {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
      color: var(--gold-dark);
      margin-bottom: 0.75rem;
    }
    .section-intro {
      font-size: 1.05rem;
      color: var(--text-dark-muted);
      max-width: 680px;
      margin-top: 0.75rem;
    }

    /* ===== HEADER & FOOTER PARTAGÉS (alignés avec la page d'accueil) ===== */
    .nav,
    footer {
      font-family: var(--font-body);
    }
    footer { color: var(--white); }
    .nav .container,
    footer .container {
      max-width: 1200px;
      padding: 0 24px;
    }
    .nav a:hover,
    footer a:hover { text-decoration: none; }
    .nav-logo {
      color: inherit;
      letter-spacing: normal;
    }
    .nav-cta {
      background: transparent;
      color: inherit;
      padding: 0;
      border-radius: 0;
      font-size: inherit;
      font-weight: inherit;
    }
    .nav-cta:hover { background: transparent; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 640px) {
      .hero { padding: 3rem 1.25rem; }
      .hero-stats { gap: 1.5rem; }
      .section { padding: 3rem 0; }
      h1 { font-size: 1.9rem; }
      h2 { font-size: 1.5rem; }
    }
