  /* ============================================
     RESET & DESIGN TOKENS
     ============================================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  img, svg { display: block; max-width: 100%; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  a { color: inherit; text-decoration: none; }

  :root {
    /* Palette */
    --bg:           #0a0a0a;
    --bg-2:         #111111;
    --surface:      #161616;
    --surface-2:    #1c1c1c;
    --line:         rgba(255,255,255,0.08);
    --line-strong:  rgba(255,255,255,0.16);
    --text:         #f5f1ea;
    --text-dim:     #b8b1a6;
    --text-mute:    #7a746b;
    --accent:       #14b8a6;            /* turquoise vif (signature) */
    --accent-2:     #2dd4bf;
    --accent-deep:  #0d9488;            /* turquoise profond */
    --accent-soft:  rgba(20,184,166,0.12);

    /* Typography */
    --display:      'Fraunces', Georgia, serif;
    --sans:         'Outfit', system-ui, -apple-system, sans-serif;

    /* Layout */
    --container:    1280px;
    --gutter:       clamp(18px, 4vw, 56px);
    --radius:       18px;
    --radius-lg:    28px;

    /* Easing */
    --ease:         cubic-bezier(.22,.61,.36,1);
    --ease-out:     cubic-bezier(.16,1,.3,1);
  }

  /* Empêche tout débordement horizontal sur mobile */
  html, body { overflow-x: clip; max-width: 100%; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle film grain */
    background-image:
      radial-gradient(1200px 600px at 80% -10%, rgba(20,184,166,0.08), transparent 60%),
      radial-gradient(900px 500px at -10% 30%, rgba(13,148,136,0.06), transparent 60%);
  }

  /* Grain overlay */
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    opacity: 0.05;
    z-index: 1;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }

  ::selection { background: var(--accent); color: #fff; }

  /* ============================================
     TYPOGRAPHY HELPERS
     ============================================ */
  .display {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.98;
    font-variation-settings: "opsz" 144, "SOFT" 100;
  }
  .eyebrow {
    font-family: var(--sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 500;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 28px; height: 1px; background: var(--accent);
  }

  /* ============================================
     LAYOUT
     ============================================ */
  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: var(--gutter);
    position: relative;
    z-index: 2;
  }

  section { position: relative; overflow: hidden; }

  /* ============================================
     NAVIGATION
     ============================================ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease), border-color .4s;
    border-bottom: 1px solid transparent;
  }
  .nav.scrolled {
    background: rgba(10,10,10,0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    padding: 12px 0;
    border-bottom-color: var(--line);
  }
  .nav__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .logo__mark {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    display: grid; place-items: center;
    font-family: var(--display); font-weight: 700;
    font-size: 1.1rem; color: #fff;
    box-shadow: 0 6px 20px rgba(20,184,166,0.35);
    position: relative;
  }
  .logo__mark::after {
    content: ""; position: absolute; inset: 2px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
  }
  .logo__text { font-style: italic; }
  .logo__text b { font-style: normal; font-weight: 700; }

  .nav__links {
    display: flex; align-items: center; gap: 38px;
    list-style: none;
  }
  .nav__links a {
    font-size: 0.92rem;
    color: var(--text-dim);
    transition: color .25s;
    position: relative;
  }
  .nav__links a:hover { color: var(--text); }
  .nav__links a::after {
    content: ""; position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px; background: var(--accent);
    transition: width .3s var(--ease);
  }
  .nav__links a:hover::after { width: 100%; }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.92rem;
    transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
    white-space: nowrap;
  }
  .btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(20,184,166,0.35);
  }
  .btn--primary:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(20,184,166,0.5);
  }
  .btn--ghost {
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--text);
  }
  .btn--ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--text); }

  .btn .arrow { transition: transform .3s var(--ease); }
  .btn:hover .arrow { transform: translateX(4px); }

  /* Burger menu mobile */
  .nav__burger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    place-items: center;
  }
  .nav__burger span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--text);
    position: relative;
    transition: transform .3s, opacity .3s;
  }
  .nav__burger span::before, .nav__burger span::after {
    content: ""; position: absolute; left: 0;
    width: 18px; height: 1.5px; background: var(--text);
    transition: transform .3s;
  }
  .nav__burger span::before { top: -6px; }
  .nav__burger span::after  { top: 6px; }
  .nav__burger.open span { background: transparent; }
  .nav__burger.open span::before { top: 0; transform: rotate(45deg); }
  .nav__burger.open span::after  { top: 0; transform: rotate(-45deg); }

  /* Mobile menu */
  .mobile-menu {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 99;
    padding: 100px var(--gutter) 40px;
    transform: translateY(-100%);
    transition: transform .5s var(--ease);
    display: flex; flex-direction: column;
    overflow-y: auto;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a {
    font-family: var(--display);
    font-size: clamp(1.6rem, 6vw, 2rem);
    font-weight: 400;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    transition: color .25s, padding-left .3s var(--ease);
  }
  .mobile-menu a:hover, .mobile-menu a:active { color: var(--accent); padding-left: 8px; }
  .mobile-menu .btn {
    margin-top: 28px;
    align-self: flex-start;
    border-bottom: none;
    padding: 14px 26px;
  }

  /* ============================================
     HERO
     ============================================ */
  .hero {
    min-height: 100vh;
    min-height: 100dvh; /* fix iOS Safari */
    display: flex; align-items: center;
    padding: 130px 0 90px;
    overflow: hidden;
    position: relative;
  }

  /* Decorative orange shapes (rappel du flyer client) */
  .hero__shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    pointer-events: none;
  }
  .hero__shape--1 {
    top: -120px; right: -120px;
    width: 420px; height: 420px;
    opacity: 0.85;
    animation: float 14s ease-in-out infinite;
  }
  .hero__shape--2 {
    bottom: -80px; left: -100px;
    width: 280px; height: 280px;
    opacity: 0.55;
    background: radial-gradient(circle at 30% 30%, var(--accent-2), var(--accent-deep) 70%);
    animation: float 18s ease-in-out infinite reverse;
  }
  .hero__shape--3 {
    top: 50%; right: 30%;
    width: 90px; height: 90px;
    opacity: 0.4;
    background: var(--accent);
    filter: blur(2px);
    animation: float 10s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%      { transform: translate(20px, -30px) rotate(8deg); }
  }

  .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    position: relative;
    z-index: 2;
  }
  @media (min-width: 1024px) {
    .hero__inner { grid-template-columns: 1.3fr 1fr; align-items: end; gap: 80px; }
  }

  .hero__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.6rem, 11vw, 7.5rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-top: 24px;
    margin-bottom: 28px;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    /* Préviens le débordement de très longs mots */
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .hero__title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
  }
  .hero__title .stroke {
    -webkit-text-stroke: 1.5px var(--text);
    color: transparent;
    font-weight: 500;
  }
  /* Sur mobile, on retire les sauts de ligne forcés pour laisser le texte respirer */
  @media (max-width: 640px) {
    .hero__title br { display: none; }
    .hero__title { line-height: 1.05; }
  }

  .hero__lead {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--text-dim);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .hero__cta {
    display: flex; gap: 14px; flex-wrap: wrap;
  }

  /* Right column: stat / quote card */
  .hero__side {
    display: flex; flex-direction: column; gap: 24px;
    align-items: flex-end;
  }
  .hero__quote {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 380px;
    position: relative;
    backdrop-filter: blur(10px);
  }
  .hero__quote-mark {
    position: absolute;
    top: -22px; left: 28px;
    width: 50px; height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--display);
    font-size: 2.4rem;
    color: #fff;
    line-height: 1;
    padding-top: 12px;
    box-shadow: 0 10px 25px rgba(20,184,166,0.4);
  }
  .hero__quote p {
    font-family: var(--display);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 18px;
    margin-top: 8px;
  }
  .hero__quote cite {
    font-style: normal;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-mute);
    display: block;
  }
  .hero__quote cite b { color: var(--text); font-weight: 600; }

  .hero__meta {
    display: flex; gap: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    width: 100%;
    max-width: 380px;
  }
  .hero__meta div span {
    display: block;
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
  }
  .hero__meta div small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-mute);
    margin-top: 6px;
    display: block;
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-mute);
    display: flex; align-items: center; gap: 12px;
    z-index: 3;
  }
  .scroll-hint::after {
    content: "";
    width: 1px; height: 30px;
    background: linear-gradient(var(--text-mute), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%, 100% { transform: scaleY(1); transform-origin: top; }
    50%      { transform: scaleY(0.3); transform-origin: top; }
  }

  /* ============================================
     MARQUEE STRIP
     ============================================ */
  .marquee {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: var(--bg-2);
    padding: 22px 0;
  }
  .marquee__track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll-x 40s linear infinite;
  }
  .marquee__track span {
    font-family: var(--display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text);
    white-space: nowrap;
    display: inline-flex; align-items: center; gap: 60px;
  }
  .marquee__track span::after {
    content: "✦";
    color: var(--accent);
    font-style: normal;
    font-size: 1.2rem;
  }
  @keyframes scroll-x {
    to { transform: translateX(-50%); }
  }

  /* ============================================
     ABOUT SECTION
     ============================================ */
  .about {
    padding: clamp(80px, 12vw, 160px) 0;
  }
  .about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
  }
  @media (min-width: 900px) {
    .about__grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
  }
  .about__heading {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 22px 0 0;
  }
  .about__heading em { font-style: italic; color: var(--accent); }

  .about__text p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 22px;
  }
  .about__text p:first-child::first-letter {
    font-family: var(--display);
    font-size: 4.5rem;
    line-height: 0.85;
    float: left;
    padding: 6px 14px 0 0;
    color: var(--accent);
    font-weight: 500;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
  }
  @media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }
  .stat span {
    font-family: var(--display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1;
    background: linear-gradient(135deg, var(--text) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
  }
  .stat small {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-mute);
  }

  /* ============================================
     SERVICES
     ============================================ */
  .services {
    padding: clamp(80px, 12vw, 160px) 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    position: relative;
  }
  .services__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 70px;
    align-items: end;
  }
  @media (min-width: 900px) { .services__head { grid-template-columns: 1.2fr 0.8fr; gap: 80px; } }

  .services__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-top: 22px;
  }
  .services__title em { font-style: italic; color: var(--accent); font-weight: 300; }
  .services__intro { color: var(--text-dim); font-size: 1.05rem; line-height: 1.7; }

  .services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  @media (min-width: 560px)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1100px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }

  .service-card {
    background: var(--bg-2);
    padding: 38px 30px;
    position: relative;
    transition: background .5s var(--ease);
    overflow: hidden;
    min-height: 320px;
    display: flex; flex-direction: column;
  }
  .service-card::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--accent-soft), transparent 60%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
  }
  .service-card:hover { background: var(--surface); }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover .service-card__icon { color: var(--accent); transform: translateY(-4px) rotate(-4deg); }
  .service-card:hover .service-card__num { color: var(--accent); }
  .service-card:hover .service-card__arrow { transform: translate(6px,-6px); opacity: 1; }

  .service-card__num {
    font-family: var(--display);
    font-size: 0.85rem;
    color: var(--text-mute);
    letter-spacing: 0.2em;
    transition: color .3s;
  }
  .service-card__icon {
    margin: 14px 0 24px;
    width: 52px; height: 52px;
    color: var(--text);
    transition: color .4s, transform .4s var(--ease);
  }
  .service-card__icon svg { width: 100%; height: 100%; }
  .service-card__title {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.55rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
  }
  .service-card__desc {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.65;
    flex: 1;
  }
  .service-card__arrow {
    position: absolute;
    top: 30px; right: 28px;
    color: var(--accent);
    opacity: 0;
    transition: opacity .3s, transform .4s var(--ease);
  }

  /* ============================================
     DIRECTOR SECTION
     ============================================ */
  .director {
    padding: clamp(80px, 12vw, 160px) 0;
    position: relative;
    overflow: hidden;
  }
  .director__decor {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-deep) 0%, transparent 70%);
    opacity: 0.25;
    top: -200px; right: -200px;
    pointer-events: none;
  }
  .director__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
  }
  @media (min-width: 900px) { .director__grid { grid-template-columns: 0.85fr 1.15fr; gap: 80px; } }

  .director__visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    border: 1px solid var(--line);
    display: grid; place-items: center;
  }
  .director__visual::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(20,184,166,0.15) 100%);
    pointer-events: none;
  }
  .director__avatar {
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    display: grid; place-items: center;
    font-family: var(--display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    color: #fff;
    box-shadow:
      0 0 0 8px rgba(20,184,166,0.15),
      0 0 0 16px rgba(20,184,166,0.08),
      0 30px 80px rgba(20,184,166,0.3);
    position: relative;
    z-index: 2;
  }
  .director__caption {
    position: absolute;
    bottom: 22px; left: 22px; right: 22px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 18px;
    z-index: 3;
  }
  .director__caption strong {
    font-family: var(--display);
    display: block;
    font-size: 1.05rem;
    letter-spacing: -0.005em;
  }
  .director__caption small {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
  }

  .director__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 22px 0 32px;
  }
  .director__title em { font-style: italic; color: var(--accent); }
  .director__quote {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--text);
    border-left: 3px solid var(--accent);
    padding-left: 24px;
    margin: 32px 0;
  }
  .director__text { color: var(--text-dim); line-height: 1.75; margin-bottom: 18px; }
  .director__sign {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .director__sign strong {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
  }
  .director__sign small {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-mute);
  }

  /* ============================================
     WHY US
     ============================================ */
  .why {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--bg-2);
  }
  .why__head { text-align: center; margin-bottom: 70px; max-width: 720px; margin-inline: auto; }
  .why__head h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-top: 22px;
  }
  .why__head h2 em { font-style: italic; color: var(--accent); }

  .why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  @media (min-width: 600px)  { .why__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1100px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }

  .why__item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: transform .4s var(--ease), border-color .3s;
  }
  .why__item:hover { transform: translateY(-6px); border-color: var(--accent); }
  .why__item__num {
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 18px;
  }
  .why__item h3 {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .why__item p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.65; }

  /* ============================================
     CTA / CONTACT
     ============================================ */
  .cta {
    padding: clamp(80px, 12vw, 160px) 0;
    position: relative;
  }
  .cta__inner {
    background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 60%, #ff8a4a 100%);
    border-radius: var(--radius-lg);
    padding: clamp(50px, 8vw, 100px) clamp(30px, 6vw, 80px);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .cta__inner::before {
    content: "";
    position: absolute;
    top: -50%; left: -10%;
    width: 70%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
    pointer-events: none;
  }
  .cta__inner::after {
    content: "";
    position: absolute;
    bottom: -100px; right: -100px;
    width: 350px; height: 350px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.08);
    pointer-events: none;
  }
  .cta__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 24px;
    position: relative; z-index: 2;
  }
  .cta__title em { font-style: italic; }
  .cta__text {
    color: rgba(255,255,255,0.92);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 38px;
    line-height: 1.65;
    position: relative; z-index: 2;
  }
  .cta__buttons {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    position: relative; z-index: 2;
  }
  .cta__buttons .btn--primary {
    background: #0a0a0a; color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .cta__buttons .btn--primary:hover { background: #1c1c1c; }
  .cta__buttons .btn--ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
  .cta__buttons .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

  /* WhatsApp floating */
  .whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    z-index: 50;
    transition: transform .3s var(--ease), box-shadow .3s;
    animation: wa-pulse 2.5s ease-in-out infinite;
  }
  .whatsapp-float:hover { transform: scale(1.1); }
  @keyframes wa-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
    50%      { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
  }

  /* ============================================
     FOOTER
     ============================================ */
  .footer {
    background: #060606;
    padding: 80px 0 30px;
    border-top: 1px solid var(--line);
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  @media (min-width: 600px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 900px)  { .footer__grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; } }

  .footer__brand p {
    color: var(--text-dim);
    margin: 18px 0;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 380px;
  }
  .footer h4 {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: -0.005em;
  }
  .footer ul { list-style: none; }
  .footer ul li { margin-bottom: 10px; }
  .footer ul a {
    color: var(--text-dim);
    font-size: 0.92rem;
    transition: color .25s;
  }
  .footer ul a:hover { color: var(--accent); }

  .footer__contact-item {
    display: flex; gap: 12px;
    margin-bottom: 14px;
    color: var(--text-dim);
    font-size: 0.92rem;
    align-items: flex-start;
  }
  .footer__contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

  .socials { display: flex; gap: 12px; margin-top: 22px; }
  .socials a {
    width: 38px; height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--text-dim);
    transition: all .3s;
  }
  .socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-3px); }

  .footer__bottom {
    padding-top: 30px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    color: var(--text-mute);
    font-size: 0.82rem;
  }

  /* ============================================
     REVEAL ANIMATIONS
     ============================================ */
  [data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  }
  [data-reveal].in {
    opacity: 1;
    transform: translateY(0);
  }
  [data-reveal-delay="1"] { transition-delay: .1s; }
  [data-reveal-delay="2"] { transition-delay: .2s; }
  [data-reveal-delay="3"] { transition-delay: .3s; }
  [data-reveal-delay="4"] { transition-delay: .4s; }

  /* ============================================
     ✨ PREMIUM ANIMATIONS — couche signature
     ============================================ */

  /* — INTRO LOADER — */
  .intro {
    position: fixed; inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: grid; place-items: center;
    transition: opacity .8s var(--ease-out), visibility .8s;
  }
  .intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
  .intro__logo {
    position: relative;
    display: flex; align-items: center; gap: 14px;
    overflow: hidden;
  }
  .intro__mark {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    display: grid; place-items: center;
    color: #fff;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.6rem;
    transform: scale(0);
    animation: intro-pop 0.7s var(--ease-out) 0.1s forwards;
    box-shadow: 0 12px 40px rgba(20,184,166,0.45);
  }
  .intro__text {
    font-family: var(--display);
    font-size: 1.4rem;
    color: var(--text);
    font-weight: 500;
    letter-spacing: -0.01em;
    overflow: hidden;
  }
  .intro__text span {
    display: inline-block;
    transform: translateY(110%);
    animation: intro-rise 0.8s var(--ease-out) 0.5s forwards;
  }
  .intro__text b { color: var(--accent); font-weight: 700; }
  .intro__line {
    position: absolute;
    bottom: -14px; left: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    animation: intro-line 1s var(--ease-out) 1.1s forwards;
  }
  @keyframes intro-pop {
    0% { transform: scale(0) rotate(-180deg); }
    60%{ transform: scale(1.15) rotate(0deg); }
    100%{ transform: scale(1) rotate(0deg); }
  }
  @keyframes intro-rise {
    to { transform: translateY(0); }
  }
  @keyframes intro-line {
    to { width: 100%; }
  }

  /* — SCROLL PROGRESS BAR — */
  .progress-bar {
    position: fixed; top: 0; left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent), #ffb27a);
    z-index: 200;
    box-shadow: 0 0 12px rgba(20,184,166,0.5);
    will-change: width;
    transition: width 0.05s linear;
  }

  /* — CUSTOM CURSOR (desktop fine pointer only) — */
  @media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    a, button, [data-magnetic], .service-card, input, textarea, [role="button"] { cursor: none; }

    .cursor-dot, .cursor-ring {
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9998;
      will-change: transform;
      mix-blend-mode: difference;
    }
    .cursor-dot {
      width: 6px; height: 6px;
      background: #fff;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
    }
    .cursor-ring {
      width: 38px; height: 38px;
      border: 1.5px solid #fff;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.25s, background 0.25s;
    }
    .cursor-dot.is-hover { width: 0; height: 0; }
    .cursor-ring.is-hover {
      width: 56px; height: 56px;
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.3);
    }
    .cursor-ring.is-pressed { width: 24px; height: 24px; }
  }

  /* — MAGNETIC BUTTONS — */
  [data-magnetic] {
    will-change: transform;
    transition: transform 0.4s var(--ease-out);
  }

  /* — HERO TITLE LINE REVEAL — */
  .hero__title .line {
    display: block;
    overflow: hidden;
    padding: 0.06em 0;
  }
  .hero__title .line__inner {
    display: block;
    transform: translateY(110%);
    transition: transform 1.1s var(--ease-out);
  }
  .hero__title.in .line:nth-child(1) .line__inner { transition-delay: 0.15s; transform: translateY(0); }
  .hero__title.in .line:nth-child(2) .line__inner { transition-delay: 0.30s; transform: translateY(0); }
  .hero__title.in .line:nth-child(3) .line__inner { transition-delay: 0.45s; transform: translateY(0); }
  .hero__title.in .line:nth-child(4) .line__inner { transition-delay: 0.60s; transform: translateY(0); }

  /* — HEADING MASK REVEAL (sections) — */
  .heading-reveal {
    overflow: hidden;
    padding-bottom: 0.05em;
  }
  .heading-reveal__inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s var(--ease-out);
  }
  [data-reveal].in .heading-reveal__inner,
  .heading-reveal.in .heading-reveal__inner {
    transform: translateY(0);
  }

  /* — 3D TILT PREP — */
  .services__grid { perspective: 1200px; }
  .service-card {
    transform-style: preserve-3d;
    transition: transform 0.5s var(--ease-out), background 0.5s var(--ease);
    will-change: transform;
  }
  .service-card__icon, .service-card__title, .service-card__num {
    transform: translateZ(20px);
  }

  /* — SVG ICON PATH DRAWING — */
  .service-card__icon svg path,
  .service-card__icon svg circle,
  .service-card__icon svg rect {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1.4s var(--ease-out);
  }
  .service-card.drawn svg path,
  .service-card.drawn svg circle,
  .service-card.drawn svg rect {
    stroke-dashoffset: 0;
  }
  .service-card.drawn svg path:nth-child(2) { transition-delay: 0.2s; }
  .service-card.drawn svg path:nth-child(3) { transition-delay: 0.4s; }

  /* — MARQUEE FADE EDGES — */
  .marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .marquee:hover .marquee__track { animation-play-state: paused; }

  /* — WHATSAPP MULTI-RING PULSE — */
  .whatsapp-float::before, .whatsapp-float::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    pointer-events: none;
    animation: wa-ring 2.5s ease-out infinite;
  }
  .whatsapp-float::after { animation-delay: 1.25s; }
  @keyframes wa-ring {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
  }

  /* — HERO SHAPES MOUSE PARALLAX — */
  .hero__shape { will-change: transform; transition: transform 0.6s var(--ease-out); }

  /* — DIRECTOR AVATAR 3D PARALLAX — */
  .director__visual {
    perspective: 1000px;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.6s var(--ease-out);
  }
  .director__avatar {
    transition: transform 0.6s var(--ease-out);
    will-change: transform;
  }

  /* — ANIMATED BACKGROUND MESH (subtle, follows cursor) — */
  .bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
        rgba(20,184,166,0.06),
        transparent 50%);
    transition: background 0.3s ease;
  }

  /* — STAT NUMBERS UNDERLINE GROW — */
  .stat { position: relative; padding-bottom: 4px; }
  .stat::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 1.2s var(--ease-out) 0.3s;
  }
  .stat.in-view::after { width: 30px; }

  /* — BUTTON FILL SWIPE — */
  .btn--primary { position: relative; overflow: hidden; isolation: isolate; }
  .btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2dd4bf, #0d9488);
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease-out);
    z-index: -1;
  }
  .btn--primary:hover::before { transform: translateX(0); }

  /* — SERVICE CARD CORNER WIPE — */
  .service-card__corner {
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent var(--accent) transparent transparent;
    opacity: 0;
    transform: translate(20px, -20px);
    transition: opacity 0.4s, transform 0.5s var(--ease-out);
  }
  .service-card:hover .service-card__corner { opacity: 1; transform: translate(0, 0); }

  /* — TEXT LINK UNDERLINE GROWING — */
  .nav__links a { position: relative; }

  /* — ENTRY ANIMATION FOR CTA SECTION — */
  .cta__inner { will-change: transform; }
  .cta__inner.in {
    animation: cta-shake 0.8s var(--ease-out);
  }
  @keyframes cta-shake {
    0%   { transform: scale(0.95); }
    100% { transform: scale(1); }
  }

  /* — REDUCED MOTION OVERRIDE — */
  @media (prefers-reduced-motion: reduce) {
    .hero__title .line__inner,
    .heading-reveal__inner { transform: translateY(0) !important; }
    .intro { display: none !important; }
    .cursor-dot, .cursor-ring { display: none !important; }
    body { cursor: auto !important; }
    a, button, [data-magnetic], .service-card { cursor: pointer !important; }
  }

  /* ============================================
     RESPONSIVE — TABLETTES & MOBILES
     ============================================ */

  /* TABLETTES (≤ 1024px) */
  @media (max-width: 1024px) {
    .hero { padding: 120px 0 80px; }
    .hero__side { align-items: stretch; }
    .hero__quote, .hero__meta { max-width: 100%; }
  }

  /* TABLETTES & MOBILES (≤ 900px) */
  @media (max-width: 900px) {
    /* Navigation */
    .nav__links { display: none; }
    .nav__burger { display: grid; }
    .nav__cta { display: none; }
    .nav { padding: 14px 0; }
    .nav.scrolled { padding: 10px 0; }
    .logo { font-size: 1.15rem; }
    .logo__mark { width: 34px; height: 34px; font-size: 1rem; }

    /* Hero */
    .hero { padding: 110px 0 70px; min-height: auto; }
    .hero__shape--1 { width: 240px; height: 240px; top: -60px; right: -60px; }
    .hero__shape--2 { width: 160px; height: 160px; bottom: -40px; left: -50px; }
    .hero__shape--3 { display: none; }
    .scroll-hint { display: none; }
    .hero__inner { gap: 36px; }
    .hero__lead { font-size: 1rem; }

    /* Hero quote */
    .hero__quote { padding: 26px 22px; }
    .hero__quote p { font-size: 1.05rem; }
    .hero__meta { gap: 24px; padding-top: 22px; }
    .hero__meta div span { font-size: 1.7rem; }
    .hero__meta div small { font-size: 0.7rem; }

    /* Marquee */
    .marquee { padding: 16px 0; }
    .marquee__track { gap: 40px; }
    .marquee__track span { gap: 40px; }

    /* About */
    .about__text p:first-child::first-letter {
      font-size: 3.5rem;
      padding: 4px 10px 0 0;
    }

    /* Services */
    .service-card { padding: 32px 24px; min-height: auto; }
    .service-card__title { font-size: 1.35rem; }
    .service-card__arrow { top: 24px; right: 22px; opacity: 1; }

    /* Director */
    .director__visual { aspect-ratio: 1/1; max-width: 380px; margin: 0 auto; }
    .director__avatar { width: 50%; }
    .director__decor { width: 350px; height: 350px; top: -100px; right: -150px; }
    .director__quote { font-size: 1.15rem; padding-left: 18px; margin: 24px 0; }

    /* CTA */
    .cta__inner { padding: 50px 28px; }
    .cta__inner::after { width: 220px; height: 220px; right: -80px; bottom: -80px; border-width: 40px; }

    /* Footer */
    .footer { padding: 60px 0 24px; }
    .footer__grid { gap: 36px; }
    .footer__bottom { font-size: 0.78rem; }

    /* WhatsApp float */
    .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
  }

  /* MOBILES (≤ 640px) */
  @media (max-width: 640px) {
    .container { padding-inline: 18px; }

    /* Nav */
    .logo__text { font-size: 0.95rem; }
    .nav__burger { width: 40px; height: 40px; }

    /* Hero */
    .hero { padding: 95px 0 60px; }
    .hero__title { margin-top: 18px; margin-bottom: 22px; }
    .hero__lead { margin-bottom: 28px; }
    .hero__cta .btn { padding: 12px 20px; font-size: 0.88rem; }
    .hero__cta { gap: 10px; }

    /* Hero side cards */
    .hero__side { gap: 18px; }
    .hero__quote { padding: 22px 20px 22px; }
    .hero__quote-mark { width: 42px; height: 42px; font-size: 2rem; padding-top: 10px; top: -18px; left: 22px; }
    .hero__quote p { font-size: 1rem; line-height: 1.45; }

    /* Hero meta — passe en 3 colonnes mais plus serré */
    .hero__meta { gap: 14px; }
    .hero__meta div span { font-size: 1.45rem; }
    .hero__meta div small { font-size: 0.65rem; letter-spacing: 0.1em; }

    /* Marquee */
    .marquee__track span { font-size: 1.4rem; }

    /* About */
    .about__heading, .services__title, .director__title, .why__head h2 {
      font-size: clamp(1.9rem, 7vw, 2.4rem);
      line-height: 1.05;
    }
    .stats { gap: 22px; margin-top: 36px; padding-top: 28px; }
    .stat span { font-size: 1.9rem; }
    .stat small { font-size: 0.7rem; }

    /* Services head */
    .services__head { margin-bottom: 40px; gap: 18px; }
    .services__intro { font-size: 0.98rem; }

    /* Service cards */
    .service-card { padding: 28px 22px; }
    .service-card__icon { width: 44px; height: 44px; margin: 12px 0 18px; }
    .service-card__title { font-size: 1.25rem; margin-bottom: 10px; }
    .service-card__desc { font-size: 0.9rem; }

    /* Director */
    .director__visual { aspect-ratio: 1/1; max-width: 100%; }
    .director__avatar { width: 45%; }
    .director__caption { left: 16px; right: 16px; bottom: 16px; padding: 12px 14px; }
    .director__caption strong { font-size: 0.95rem; }
    .director__caption small { font-size: 0.65rem; }
    .director__quote { font-size: 1.05rem; margin: 20px 0; padding-left: 16px; }
    .director__sign strong { font-size: 1.15rem; }

    /* Why */
    .why__head { margin-bottom: 40px; }
    .why__item { padding: 28px 24px; }
    .why__item__num { font-size: 2.4rem; margin-bottom: 14px; }
    .why__item h3 { font-size: 1.2rem; }
    .why__item p { font-size: 0.9rem; }

    /* CTA */
    .cta__inner { padding: 44px 22px; border-radius: 22px; }
    .cta__title { margin-bottom: 18px; }
    .cta__text { font-size: 1rem; margin-bottom: 28px; }
    .cta__buttons { gap: 10px; }
    .cta__buttons .btn { padding: 12px 20px; font-size: 0.88rem; width: 100%; justify-content: center; }

    /* Footer */
    .footer h4 { margin-bottom: 14px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

    /* Eyebrow */
    .eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; }
    .eyebrow::before { width: 22px; }
  }

  /* TRÈS PETITS MOBILES (≤ 380px) */
  @media (max-width: 380px) {
    .container { padding-inline: 16px; }
    .hero__meta { flex-wrap: wrap; gap: 16px 20px; }
    .hero__meta div { flex: 1 1 calc(50% - 10px); }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { justify-content: center; }
    .nav__inner { gap: 12px; }
    .logo__text { font-size: 0.88rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .01ms !important;
      transition-duration: .01ms !important;
    }
  }

/* ============================================
 * 💬 FLASH MESSAGES (ajouté en Phase 1 PHP)
 * ============================================ */
.flash {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 241, 234, 0.12);
  color: var(--cream);
  max-width: 420px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  animation: flash-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.flash button {
  background: none;
  border: 0;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  opacity: 0.6;
  cursor: pointer;
  padding: 0 4px;
  transition: opacity 0.2s;
}
.flash button:hover { opacity: 1; }
.flash--success { border-left: 3px solid #4ade80; }
.flash--error,
.flash--danger { border-left: 3px solid #f87171; }
.flash--warning { border-left: 3px solid #fbbf24; }
.flash--info { border-left: 3px solid var(--accent); }
@keyframes flash-in {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (max-width: 640px) {
  .flash { top: 80px; right: 12px; left: 12px; max-width: none; }
}

/* ════════════════════════════════════════════════════════════
   ▓▓▓  GM MULTISERVICES — DESIGN ÉDITORIAL PREMIUM v3.0  ▓▓▓
   ════════════════════════════════════════════════════════════
   Direction artistique : "Maison sahélienne moderne"
   - Crème + terracotta + turquoise profond + or sable
   - Inspirations : Hermès, Brother Vellies, Aesop
   - Typographie : Fraunces (display) + Outfit (sans)
   ════════════════════════════════════════════════════════════ */

:root {
  /* ─── SURFACES ───────────────────────────────────── */
  --bg:           #faf8f3;          /* crème lumineux */
  --bg-2:         #f3eee3;          /* crème plus marqué (sections alt) */
  --bg-3:         #ebe4d4;          /* sable doux (CTA section) */
  --card:         #ffffff;          /* blanc pur pour les cartes */
  --card-warm:    #fdfbf6;          /* blanc crémé pour grandes surfaces */

  /* ─── TEXTES ─────────────────────────────────────── */
  --text:         #1a1a1a;          /* noir profond, autorité */
  --text-strong:  #000000;          /* noir absolu (h1, accents) */
  --text-dim:     #4a4843;          /* texte courant */
  --text-mute:    #807a6e;          /* captions, légendes */
  --text-faint:   #b3aa97;          /* hints très discrets */

  /* ─── BORDURES & LIGNES ──────────────────────────── */
  --line:         rgba(26, 26, 26, 0.08);
  --line-strong:  rgba(26, 26, 26, 0.18);
  --line-soft:    rgba(212, 165, 116, 0.30);  /* or sable transparent */

  /* ─── COULEURS SIGNATURES ────────────────────────── */
  /* Terracotta (couleur principale) */
  --accent:        #c2410c;
  --accent-2:      #ea580c;
  --accent-deep:   #9a3412;
  --accent-soft:   rgba(194, 65, 12, 0.08);
  --accent-glow:   rgba(194, 65, 12, 0.20);

  /* Turquoise profond (secondaire chic) */
  --teal:          #115e59;
  --teal-2:        #0f766e;
  --teal-deep:     #042f2e;
  --teal-soft:     rgba(17, 94, 89, 0.08);

  /* Or sable (touches premium) */
  --gold:          #d4a574;
  --gold-deep:     #a67c4f;
  --gold-soft:     rgba(212, 165, 116, 0.15);

  /* ─── OMBRES (warm, multi-couches) ───────────────── */
  --shadow-xs:  0 1px 2px rgba(74, 60, 35, 0.04);
  --shadow-sm:  0 2px 8px rgba(74, 60, 35, 0.05),
                0 1px 2px rgba(74, 60, 35, 0.04);
  --shadow-md:  0 8px 24px rgba(74, 60, 35, 0.07),
                0 2px 6px rgba(74, 60, 35, 0.04);
  --shadow-lg:  0 20px 50px rgba(74, 60, 35, 0.09),
                0 6px 12px rgba(74, 60, 35, 0.05);
  --shadow-xl:  0 30px 80px rgba(74, 60, 35, 0.12),
                0 10px 20px rgba(74, 60, 35, 0.07);
  --shadow-accent: 0 12px 32px rgba(194, 65, 12, 0.22),
                   0 4px 8px rgba(194, 65, 12, 0.14);
}

/* ════════════════════════════════════════════════════════════
   BASE
   ════════════════════════════════════════════════════════════ */
body {
  background: var(--bg);
  color: var(--text);
  background-image:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(194, 65, 12, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(17, 94, 89, 0.04) 0%, transparent 70%);
  background-attachment: fixed;
}

*::selection { background: var(--accent); color: var(--bg); }
*::-moz-selection { background: var(--accent); color: var(--bg); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb {
  background: var(--text-mute);
  border-radius: 0;
  border: 2px solid var(--bg-2);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHIE
   ════════════════════════════════════════════════════════════ */
.eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.eyebrow::before {
  background: var(--accent);
  width: 32px;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.nav {
  background: rgba(250, 248, 243, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav.is-scrolled {
  background: rgba(250, 248, 243, 0.95);
  border-bottom-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.nav__links a {
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active { color: var(--accent); }
.nav__links a::after {
  background: var(--accent);
  height: 2px;
}

.logo__mark {
  background: var(--text-strong);
  color: var(--bg);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo__text { color: var(--text); font-weight: 400; }
.logo__text b {
  color: var(--text-strong);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav__burger {
  border: 1px solid var(--line-strong);
  background: transparent;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after { background: var(--text); }
.nav__burger:hover { border-color: var(--accent); }

/* ════════════════════════════════════════════════════════════
   MOBILE MENU
   ════════════════════════════════════════════════════════════ */
.mobile-menu {
  background: var(--bg);
  border-left: 1px solid var(--line);
}
.mobile-menu a {
  color: var(--text);
  border-bottom: 1px solid var(--line);
  font-family: 'Fraunces', serif;
  font-weight: 400;
}
.mobile-menu a:hover, .mobile-menu a:active {
  color: var(--accent);
  padding-left: 8px;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero__shape--1 {
  background: radial-gradient(circle at 30% 30%, var(--accent-2), var(--accent-deep) 75%);
  opacity: 0.18;
  filter: blur(40px);
}
.hero__shape--2 {
  background: radial-gradient(circle at 50% 50%, var(--teal), var(--teal-deep) 80%);
  opacity: 0.12;
  filter: blur(60px);
}
.hero__shape--3 {
  background: var(--gold);
  opacity: 0.10;
  filter: blur(50px);
}

.hero__title {
  color: var(--text-strong);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.hero__title .stroke {
  -webkit-text-stroke: 1.5px var(--text-strong);
  color: transparent;
}
.hero__lead {
  color: var(--text-dim);
  font-weight: 400;
}

.hero__quote {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
}
.hero__quote::before {
  content: '"';
  position: absolute;
  top: -18px; left: 24px;
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  color: var(--accent);
  line-height: 1;
  font-weight: 400;
}
.hero__quote p {
  color: var(--text);
  font-family: 'Fraunces', serif;
  font-style: italic;
}
.hero__quote cite { color: var(--text-mute); }
.hero__quote cite b { color: var(--text); font-weight: 600; }

.hero__meta div {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: all 0.3s ease;
}
.hero__meta div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}
.hero__meta span {
  color: var(--accent);
  font-family: 'Fraunces', serif;
  font-weight: 600;
}
.hero__meta small { color: var(--text-mute); }
.scroll-hint { color: var(--text-mute); }
.scroll-hint::after { background: var(--text-mute); }

/* ════════════════════════════════════════════════════════════
   BOUTONS
   ════════════════════════════════════════════════════════════ */
.btn {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--text-strong);
  color: var(--bg);
  border: none;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.btn--primary:active { transform: translateY(0); }
.btn--primary::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
}
.btn--primary:hover::before { opacity: 1; }

.btn--ghost {
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--text);
  transition: all 0.3s ease;
}
.btn--ghost:hover {
  background: var(--text-strong);
  color: var(--bg);
  border-color: var(--text-strong);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════ */
.marquee {
  background: var(--text-strong);
  border-top: none;
  border-bottom: none;
  padding: 22px 0;
}
.marquee span {
  color: var(--bg);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
}
.marquee span::before {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
}
.marquee::before { background: linear-gradient(90deg, var(--text-strong), transparent); }
.marquee::after { background: linear-gradient(270deg, var(--text-strong), transparent); }

/* ════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════ */
.about { background: var(--bg); }
.about__heading {
  color: var(--text-strong);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.about__heading em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.about__text p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.75;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat:hover::before { transform: scaleX(1); }
.stat span {
  color: var(--text-strong);
  font-family: 'Fraunces', serif;
  font-weight: 600;
}
.stat small {
  color: var(--text-mute);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services {
  background: var(--bg-2);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 60px;
  background: var(--accent);
  transform: translateX(-50%);
  opacity: 0.5;
}
.services__title {
  color: var(--text-strong);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.services__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.services__intro {
  color: var(--text-dim);
  font-size: 1.02rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: var(--shadow-xs);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, var(--accent-soft) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--text-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::after { opacity: 1; }
.service-card:hover .service-card__icon {
  background: var(--text-strong);
  color: var(--bg);
}
.service-card:hover .service-card__arrow {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.service-card__num {
  color: var(--text-mute);
  font-family: 'Fraunces', serif;
  font-style: italic;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.service-card__icon {
  color: var(--text-strong);
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card__title {
  color: var(--text-strong);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.service-card__desc {
  color: var(--text-dim);
  line-height: 1.65;
}
.service-card__arrow {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card__corner {
  background: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   DIRECTOR (Regards du DG)
   ════════════════════════════════════════════════════════════ */
.director {
  background: var(--bg);
  position: relative;
}
.director__decor {
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  opacity: 0.6;
}
.director__title {
  color: var(--text-strong);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.director__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.director__text {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.75;
}

.director__quote {
  background: var(--card-warm);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  position: relative;
  font-family: 'Fraunces', serif;
  font-style: italic;
}
.director__quote::before {
  content: '"';
  position: absolute;
  top: -14px; left: 16px;
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.director__visual {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.director__avatar {
  background: var(--text-strong);
  color: var(--bg);
  font-family: 'Fraunces', serif;
  font-weight: 600;
}
.director__caption {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
}
.director__caption strong { color: #fff; font-weight: 600; }
.director__caption small { color: rgba(255,255,255,0.75); }

.director__sign strong {
  color: var(--text-strong);
  font-family: 'Fraunces', serif;
  font-weight: 500;
}
.director__sign small { color: var(--text-mute); }
.director__sign::before { background: var(--accent); }

/* ════════════════════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════════════════════ */
.why { background: var(--bg-2); }
.why__head h2 {
  color: var(--text-strong);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.why__head h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.why__item {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: var(--shadow-xs);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.why__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.5s ease;
}
.why__item:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why__item:hover::before { width: 100%; }
.why__item__num {
  color: var(--accent);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
}
.why__item h3 {
  color: var(--text-strong);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.why__item p {
  color: var(--text-dim);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════════ */
.cta { background: var(--bg-3); position: relative; }
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}
.cta__inner {
  background: var(--text-strong);
  color: var(--bg);
  border: none;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.cta__inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta__inner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.20) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta__title {
  color: var(--bg);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.cta__title em {
  color: var(--accent-2);
  font-style: italic;
  font-weight: 500;
}
.cta__text {
  color: rgba(250, 248, 243, 0.75);
  font-size: 1.05rem;
}
.cta__buttons { position: relative; z-index: 1; }
.cta__buttons .btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.cta__buttons .btn--primary:hover {
  background: var(--accent-2);
}
.cta__buttons .btn--ghost {
  color: var(--bg);
  border-color: rgba(250, 248, 243, 0.40);
}
.cta__buttons .btn--ghost:hover {
  background: rgba(250, 248, 243, 0.10);
  border-color: var(--bg);
  color: var(--bg);
}

/* ════════════════════════════════════════════════════════════
   BLOG PREVIEW
   ════════════════════════════════════════════════════════════ */
.blog-preview { background: var(--bg); }

/* ════════════════════════════════════════════════════════════
   FOOTER (noir profond, contraste éditorial)
   ════════════════════════════════════════════════════════════ */
.footer {
  background: #0a0a0a;
  color: #fff;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
  opacity: 0.7;
}
.footer .logo__mark {
  background: var(--accent);
  color: #fff;
}
.footer .logo__text { color: #fff; }
.footer .logo__text b { color: #fff; }
.footer__brand p {
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.7;
}
.footer h4 {
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 14px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--accent);
}
.footer ul a {
  color: rgba(255, 255, 255, 0.60);
  transition: all 0.3s ease;
  font-weight: 400;
}
.footer ul a:hover {
  color: var(--accent-2);
  padding-left: 6px;
}
.footer__contact-item {
  color: rgba(255, 255, 255, 0.60);
}
.footer__contact-item svg { color: var(--accent); }
.footer__contact-item a { color: rgba(255, 255, 255, 0.85); }
.footer__contact-item a:hover { color: var(--accent-2); }
.footer__bottom {
  color: rgba(255, 255, 255, 0.40);
  border-top-color: rgba(255, 255, 255, 0.06);
}
.socials a {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}
.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   WHATSAPP FLOTTANT
   ════════════════════════════════════════════════════════════ */
.whatsapp-float {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35),
              0 4px 8px rgba(37, 211, 102, 0.20);
}
.whatsapp-float:hover {
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45),
              0 6px 12px rgba(37, 211, 102, 0.25);
}
.whatsapp-float::before,
.whatsapp-float::after { border-color: #25d366; }

/* ════════════════════════════════════════════════════════════
   CURSEUR CUSTOM
   ════════════════════════════════════════════════════════════ */
.cursor-dot {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.cursor-ring { border-color: var(--text-strong); }

/* ════════════════════════════════════════════════════════════
   BACKGROUND MESH (très subtil sur fond clair)
   ════════════════════════════════════════════════════════════ */
.bg-mesh {
  opacity: 0.4;
  mix-blend-mode: multiply;
  background:
    radial-gradient(circle 600px at var(--mx, 30%) var(--my, 20%), rgba(194, 65, 12, 0.06), transparent 60%),
    radial-gradient(circle 500px at calc(100% - var(--mx, 30%)) calc(100% - var(--my, 20%)), rgba(17, 94, 89, 0.04), transparent 60%);
}

/* ════════════════════════════════════════════════════════════
   INTRO LOADER
   ════════════════════════════════════════════════════════════ */
.intro { background: var(--bg); }
.intro__mark {
  background: var(--text-strong);
  color: var(--bg);
  font-family: 'Fraunces', serif;
}
.intro__text { color: var(--text); }
.intro__text b { color: var(--accent); font-family: 'Fraunces', serif; }
.intro__line { background: var(--accent); }

/* ════════════════════════════════════════════════════════════
   PROGRESS BAR (top)
   ════════════════════════════════════════════════════════════ */
.progress-bar {
  background: var(--accent);
  height: 2px;
}

/* ════════════════════════════════════════════════════════════
   FLASH MESSAGES
   ════════════════════════════════════════════════════════════ */
.flash {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.flash--success { border-left: 3px solid #15803d; }
.flash--error,
.flash--danger { border-left: 3px solid #b91c1c; }
.flash--warning { border-left: 3px solid var(--accent); }
.flash--info { border-left: 3px solid var(--teal); }

/* ════════════════════════════════════════════════════════════
   FOCUS ACCESSIBLE
   ════════════════════════════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════
   POLISHES FINAUX
   ════════════════════════════════════════════════════════════ */

/* Liens texte avec underline animé */
.about__text p a,
.director__text a {
  color: var(--accent);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease;
}
.about__text p a:hover,
.director__text a:hover { background-size: 100% 1px; }

/* Container max-width plus généreux pour respirer */
.container { max-width: 1280px; }

/* Sections : padding vertical légèrement augmenté pour le rythme éditorial */
section.about,
section.services,
section.director,
section.why,
section.cta {
  padding-top: clamp(80px, 11vw, 140px);
  padding-bottom: clamp(80px, 11vw, 140px);
}

/* Touche éditoriale : petit ornement décoratif au milieu de l'eyebrow des sections */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* Smooth scroll natif */
html { scroll-behavior: smooth; }

/* Adoucir les images pour rendu pro */
img { color: transparent; }

/* ════════════════════════════════════════════════════════════
   ▓▓▓  PAGE CONTACT  ▓▓▓
   ════════════════════════════════════════════════════════════ */

/* ─── Hero contact ─────────────────────────────────────────── */
.contact-hero {
  padding: clamp(140px, 20vw, 220px) 0 clamp(60px, 9vw, 100px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: 30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-hero__inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.contact-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin: 24px 0 24px;
}
.contact-hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.contact-hero__lead {
  color: var(--text-dim);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  max-width: 620px;
}

/* ─── 4 cartes canaux ─────────────────────────────────────── */
.contact-channels {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 9vw, 100px);
  background: var(--bg);
}
.contact-channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.channel-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-xs);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.5s ease;
}
.channel-card:hover {
  border-color: var(--text-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.channel-card:hover::before { width: 100%; }
.channel-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-strong);
  margin-bottom: 6px;
  transition: all 0.4s ease;
}
.channel-card:hover .channel-card__icon {
  background: var(--text-strong);
  color: var(--bg);
  border-color: var(--text-strong);
}
.channel-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 0;
}
.channel-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.channel-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: gap 0.3s ease;
}
.channel-card:hover .channel-card__cta { gap: 12px; }
.channel-card__cta--muted {
  color: var(--text-mute);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

/* Carte WhatsApp en accent vert */
.channel-card--whatsapp .channel-card__icon { color: #25d366; }
.channel-card--whatsapp:hover .channel-card__icon {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.channel-card--whatsapp:hover::before { background: #25d366; }
.channel-card--whatsapp .channel-card__cta { color: #25d366; }

/* Carte info (adresse) — non cliquable, plus discrète */
.channel-card--info {
  cursor: default;
}
.channel-card--info:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.channel-card--info:hover::before { width: 0; }
.channel-card--info:hover .channel-card__icon {
  background: var(--bg-2);
  color: var(--text-strong);
  border-color: var(--line);
}

/* ─── Section formulaire ──────────────────────────────────── */
.contact-form-section {
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 12vw, 140px);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.contact-form-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-form-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Aside */
.contact-aside { position: sticky; top: 110px; }
@media (max-width: 900px) { .contact-aside { position: static; } }

.contact-aside__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 24px 0 20px;
}
.contact-aside__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.contact-aside__text {
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 28px;
}
.contact-aside__text strong { color: var(--text-strong); font-weight: 600; }

.contact-aside__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-aside__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.contact-aside__list svg {
  flex-shrink: 0;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px;
  border-radius: 50%;
  width: 26px; height: 26px;
}

/* Form wrap */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}

/* Alertes */
.form-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-alert--error {
  background: #fef2f2;
  color: #991b1b;
  border-left: 3px solid #b91c1c;
}

/* Form layout */
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 22px; }
}

/* Champs */
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-field label small {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mute);
  font-size: 0.78rem;
}
.form-field .req { color: var(--accent); font-weight: 700; }

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: all 0.25s ease;
  font-weight: 400;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-faint); }

.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover { border-color: var(--text-mute); }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--card);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

/* État erreur */
.form-field.is-error input,
.form-field.is-error textarea,
.form-field.is-error select {
  border-color: #b91c1c;
  background: #fef2f2;
}
.form-field.is-error input:focus,
.form-field.is-error textarea:focus,
.form-field.is-error select:focus {
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.10);
}
.field-error {
  color: #991b1b;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.field-error::before {
  content: '⚠';
  font-size: 0.9rem;
}

/* Honeypot — totalement invisible */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Checkbox WhatsApp */
.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.form-check:hover { border-color: var(--accent); background: var(--accent-soft); }
.form-check input {
  width: 18px; height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Actions */
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.form-actions .btn--primary {
  flex: 1;
  min-width: 220px;
  justify-content: center;
}

.form-legal {
  margin-top: 8px;
  color: var(--text-mute);
  font-size: 0.82rem;
  line-height: 1.5;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* État succès */
.form-success {
  text-align: center;
  padding: clamp(40px, 8vw, 80px) 20px;
}
.form-success__icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  box-shadow: var(--shadow-accent);
}
.form-success h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0 0 12px;
}
.form-success p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile : responsivité finale */
@media (max-width: 640px) {
  .channel-card { padding: 22px 20px; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-actions .btn { width: 100%; min-width: 0; }
}

/* ════════════════════════════════════════════════════════════
   ▓▓▓  PAGES D'ERREUR (404, 403, 500)  ▓▓▓
   ════════════════════════════════════════════════════════════ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(140px, 20vw, 200px) 0 clamp(80px, 10vw, 120px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.error-page::before {
  content: '';
  position: absolute;
  top: 20%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.error-page::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.error-page__inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.error-page__code {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(6rem, 18vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--accent);
  opacity: 0.95;
  margin-bottom: 16px;
}
.error-page__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin: 0 0 24px;
}
.error-page__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.error-page__lead {
  color: var(--text-dim);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 36px;
}
.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ════════════════════════════════════════════════════════════
   ▓▓▓  PAGES SERVICES (index + show)  ▓▓▓
   ════════════════════════════════════════════════════════════ */

/* ─── Hero index services ─────────────────────────────────── */
.services-hero {
  padding: clamp(140px, 20vw, 220px) 0 clamp(60px, 9vw, 100px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute;
  top: 20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.services-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.services-hero__inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.services-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin: 24px 0 24px;
}
.services-hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.services-hero__lead {
  color: var(--text-dim);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  max-width: 680px;
}

/* ─── Liste/Grille des 8 services ─────────────────────────── */
.services-list {
  padding: clamp(60px, 9vw, 100px) 0 clamp(80px, 12vw, 140px);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.services-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.service-detail-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-xs);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width 0.5s ease;
}
.service-detail-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--accent-soft) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.service-detail-card:hover {
  border-color: var(--text-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-detail-card:hover::before { width: 100%; }
.service-detail-card:hover::after { opacity: 1; }
.service-detail-card:hover .service-detail-card__icon {
  background: var(--text-strong);
  color: var(--bg);
  border-color: var(--text-strong);
  transform: rotate(-4deg) scale(1.05);
}
.service-detail-card:hover .service-detail-card__cta {
  color: var(--accent);
  gap: 14px;
}
.service-detail-card:hover .service-detail-card__cta svg {
  transform: translateX(6px);
}

.service-detail-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.service-detail-card__num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  font-weight: 400;
}
.service-detail-card__icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-strong);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-detail-card__icon svg { width: 32px; height: 32px; }

.service-detail-card__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--text-strong);
  margin: 0;
}
.service-detail-card__subtitle {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: -8px 0 0;
}
.service-detail-card__desc {
  color: var(--text-dim);
  line-height: 1.65;
  font-size: 0.96rem;
  margin: 0;
  flex: 1;
}
.service-detail-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: all 0.4s ease;
}
.service-detail-card__cta svg {
  transition: transform 0.4s ease;
}

/* Variante "mini" pour la section "autres services" */
.service-detail-card--mini {
  min-height: 280px;
  padding: 28px 26px;
}
.service-detail-card--mini .service-detail-card__title { font-size: 1.35rem; }
.service-detail-card--mini .service-detail-card__icon { width: 54px; height: 54px; }
.service-detail-card--mini .service-detail-card__icon svg { width: 26px; height: 26px; }

/* ─── Hero détail service (show) ──────────────────────────── */
.service-hero {
  padding: clamp(120px, 16vw, 180px) 0 clamp(60px, 9vw, 100px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.service-hero__decor {
  position: absolute;
  top: -20%; right: -15%;
  width: 700px; height: 700px;
  background:
    radial-gradient(circle at 30% 30%, var(--accent-soft) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, var(--gold-soft) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
}
.service-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.service-hero__breadcrumb a {
  color: var(--text-mute);
  text-decoration: none;
  transition: color 0.25s;
}
.service-hero__breadcrumb a:hover { color: var(--accent); }
.service-hero__breadcrumb span { color: var(--text-faint); }
.service-hero__breadcrumb strong {
  color: var(--text-strong);
  font-weight: 600;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .service-hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

.service-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--text-strong);
  margin: 20px 0 24px;
}
.service-hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.service-hero__subtitle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--text-dim);
  margin: 0 0 20px;
  font-weight: 400;
  line-height: 1.4;
}
.service-hero__lead {
  color: var(--text-dim);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 0 36px;
}
.service-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-hero__icon {
  display: flex;
  justify-content: center;
}
.service-hero__icon-inner {
  width: 280px; height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-strong);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.service-hero__icon-inner::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  pointer-events: none;
}
.service-hero__icon-inner svg { width: 120px; height: 120px; }
@media (max-width: 900px) {
  .service-hero__icon-inner { width: 200px; height: 200px; }
  .service-hero__icon-inner svg { width: 90px; height: 90px; }
}

/* ─── Section contenu principal (article + aside sticky) ─── */
.service-content {
  padding: clamp(60px, 9vw, 100px) 0 clamp(80px, 12vw, 120px);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.service-content__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}
@media (max-width: 900px) {
  .service-content__grid { grid-template-columns: 1fr; gap: 40px; }
}

.service-article__heading {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 20px 0 32px;
}
.service-article__heading em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.service-article__content {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.8;
}
.service-article__content p { margin: 0 0 1.4em; }
.service-article__content h2,
.service-article__content h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--text-strong);
  letter-spacing: -0.015em;
  margin: 2em 0 0.6em;
  line-height: 1.2;
}
.service-article__content h2 { font-size: 1.7rem; }
.service-article__content h3 { font-size: 1.35rem; }
.service-article__content ul,
.service-article__content ol {
  margin: 0 0 1.4em;
  padding-left: 0;
  list-style: none;
}
.service-article__content ul li,
.service-article__content ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.7;
}
.service-article__content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 14px; height: 1.5px;
  background: var(--accent);
}
.service-article__content ol { counter-reset: step; }
.service-article__content ol li {
  counter-increment: step;
}
.service-article__content ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}
.service-article__content strong { color: var(--text-strong); font-weight: 600; }
.service-article__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* CTA inline dans l'article */
.service-article__inline-cta {
  margin: 50px 0 0;
  padding: 28px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}
.service-article__inline-cta strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--text-strong);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.service-article__inline-cta span {
  color: var(--text-mute);
  font-size: 0.95rem;
}
.service-article__inline-cta .btn { flex-shrink: 0; }

/* Aside sticky */
.service-aside {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 900px) { .service-aside { position: static; } }

.service-aside__block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 26px;
  box-shadow: var(--shadow-xs);
}
.service-aside__heading {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 14px 0 18px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.96rem;
  line-height: 1.5;
}
.service-features svg {
  flex-shrink: 0;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px;
  border-radius: 50%;
  margin-top: 1px;
  width: 24px; height: 24px;
}

.service-aside__block--contact { background: var(--bg-2); border-color: var(--line-soft); }
.service-aside__block--contact p {
  color: var(--text-dim);
  margin: 0 0 18px;
  font-size: 0.95rem;
}
.service-aside__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-aside__contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.96rem;
  transition: all 0.25s ease;
}
.service-aside__contact a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}
.service-aside__contact svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.service-faq {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--bg);
}
.service-faq__head {
  max-width: 760px;
  margin: 0 0 50px;
}
.service-faq__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 18px 0 0;
}
.service-faq__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.service-faq__list {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-faq__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-xs);
  transition: all 0.3s ease;
  overflow: hidden;
}
.service-faq__item:hover { border-color: var(--line-strong); }
.service-faq__item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.service-faq__item summary {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  transition: color 0.25s;
}
.service-faq__item summary::-webkit-details-marker { display: none; }
.service-faq__item summary:hover { color: var(--accent); }
.service-faq__item summary svg {
  flex-shrink: 0;
  color: var(--text-mute);
  transition: transform 0.4s ease, color 0.25s;
}
.service-faq__item[open] summary svg {
  transform: rotate(180deg);
  color: var(--accent);
}
.service-faq__item p {
  padding: 0 26px 24px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* ─── Navigation entre services ───────────────────────────── */
.service-nav {
  padding: clamp(60px, 8vw, 90px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-nav__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 760px) {
  .service-nav__grid { grid-template-columns: 1fr; gap: 12px; }
}

.service-nav__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-nav__item--prev { text-align: left; }
.service-nav__item--next { text-align: right; align-items: flex-end; }
.service-nav__item:hover {
  border-color: var(--text-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-nav__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.service-nav__item strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}

.service-nav__center {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--text-strong);
  color: var(--bg);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.service-nav__center:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* ─── Section "autres services" ───────────────────────────── */
.service-others {
  padding: clamp(80px, 11vw, 130px) 0 clamp(40px, 6vw, 60px);
  background: var(--bg);
}
.service-others__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.service-others__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin: 18px 0 0;
}
.service-others__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.service-others__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* ─── Mobile : ajustements finaux ─────────────────────────── */
@media (max-width: 640px) {
  .service-detail-card { padding: 28px 24px; min-height: 320px; }
  .service-detail-card__title { font-size: 1.4rem; }
  .service-article__inline-cta { padding: 22px 24px; flex-direction: column; align-items: flex-start; }
  .service-aside__block { padding: 24px 22px; }
  .service-faq__item summary { padding: 18px 20px; font-size: 1.05rem; }
  .service-faq__item p { padding: 0 20px 20px; }
  .service-nav__item { padding: 18px 20px; }
}
