:root {
    --primary: #111111;
    --primary-mid: #333333;
    --accent: #111111;
    --accent-soft: #6b6b6b;
    --accent-light: #f0f0f0;
    --text: #141414;
    --text-muted: #565656;
    --text-light: #8c8c8c;
    --bg: #ffffff;
    --bg-soft: #f6f6f6;
    --bg-card: #ffffff;
    --bg-dark: #0b0b0b;
    --border: rgba(0,0,0,0.09);
    --border-mid: rgba(0,0,0,0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 2px 14px rgba(0,0,0,0.06);
    --shadow-hover: 0 14px 40px rgba(0,0,0,0.14);
    /* Dégradés monochromes */
    --grad-dark: linear-gradient(150deg, #262626 0%, #0b0b0b 100%);
    --grad-ink: linear-gradient(135deg, #1e1e1e 0%, #000000 100%);
    --grad-hero: radial-gradient(120% 120% at 82% -10%, #efefef 0%, #ffffff 46%);
    --grad-silver: linear-gradient(135deg, #f7f7f7 0%, #e9e9e9 100%);
    --on-dark: #ececec;
    --on-dark-mute: rgba(255,255,255,0.62);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    line-height: 1.2;
  }

  .serif-italic { font-style: italic; }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.82);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    transition: box-shadow 0.3s, background 0.3s;
  }

  nav.scrolled {
    background: rgba(255,255,255,0.94);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 10px 30px rgba(0,0,0,0.06);
  }

  .nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 1.5rem;
  }

  .logo {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  .logo span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 1px;
    margin: 0 5px;
    transform: translateY(-2px) rotate(45deg);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin-left: auto;
    margin-right: 0.5rem;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 400;
    padding: 0.45rem 0.8rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
  }

  .nav-links a:hover { color: var(--primary); background: rgba(0,0,0,0.045); }

  .nav-cta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
  }

  /* Hamburger */
  .nav-toggle {
    display: none;
    width: 42px; height: 42px;
    border: 1px solid var(--border-mid);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    padding: 0;
    position: relative;
    flex-shrink: 0;
  }
  .nav-toggle span {
    position: absolute;
    left: 11px; right: 11px;
    height: 1.5px;
    background: var(--primary);
    transition: transform 0.25s, opacity 0.2s;
  }
  .nav-toggle span:nth-child(1) { top: 15px; }
  .nav-toggle span:nth-child(2) { top: 20px; }
  .nav-toggle span:nth-child(3) { top: 25px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  /* Menu mobile déroulant */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 22px 44px rgba(0,0,0,0.13);
    z-index: 190;
    padding: 0.75rem 6% 1.75rem;
    flex-direction: column;
    animation: menuDrop 0.24s ease;
  }
  @keyframes menuDrop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
  .mobile-menu.open { display: flex; }
  .mobile-menu a.mm-link {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    padding: 0.95rem 0.4rem;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu .mm-cta {
    margin-top: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .mobile-menu .mm-cta .btn { width: 100%; justify-content: center; padding: 0.85rem; }
  .mobile-menu .mm-phone {
    margin-top: 1.25rem;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--primary);
    text-decoration: none;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
  }

  .btn-outline {
    background: transparent;
    border: 1px solid var(--border-mid);
    color: var(--text);
  }

  .btn-outline:hover { background: rgba(0,0,0,0.04); border-color: var(--primary); }

  .btn-primary {
    background: var(--grad-dark);
    color: #ffffff;
  }

  .btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-hover); }

  .btn-accent {
    background: var(--grad-ink);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  }

  .btn-accent:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(0,0,0,0.30); }

  .btn-lg { padding: 0.9rem 2rem; font-size: 1rem; border-radius: 12px; }

  /* HERO */
  .hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 5rem 5% 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
    z-index: 0;
  }

  .hero-bg::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -12%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(0,0,0,0.06) 0%, transparent 68%);
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.18), transparent);
  }

  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f2f2f2;
    border: 1px solid rgba(0,0,0,0.1);
    color: #2c2c2c;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1.25rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.75;
  }

  .hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }

  .hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }

  .hero-stat strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.2rem;
  }

  .hero-stat span {
    font-size: 0.8rem;
    color: var(--text-light);
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: floatCard 0.6s ease both;
  }

  .hero-card:nth-child(2) { animation-delay: 0.15s; margin-left: 2rem; }
  .hero-card:nth-child(3) { animation-delay: 0.3s; }

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

  .hero-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

  .hero-card-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
  }

  .hero-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }

  .hero-card p { font-size: 0.82rem; color: var(--text-light); }

  .hero-card .price {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
  }

  /* SECTIONS */
  section { padding: 5rem 5%; }
  section[id] { scroll-margin-top: 84px; }

  .container { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.75;
  }

  /* PRESTATIONS */
  .prestations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .prestation-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .prestation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .prestation-card:hover::before { transform: scaleX(1); }
  .prestation-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

  .prestation-card.featured {
    border-color: #111111;
    background: linear-gradient(160deg, #f7f7f7 0%, var(--bg-card) 58%);
  }

  .prestation-card.featured::before { background: var(--primary); transform: scaleX(1); }

  .featured-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--grad-ink);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.04em;
  }

  .prestation-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
  }

  .prestation-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }

  .prestation-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    flex: 1;
    line-height: 1.65;
  }

  .prestation-price {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 0.25rem;
  }

  .prestation-price span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
  }

  .prestation-features {
    list-style: none;
    margin: 1rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .prestation-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  .prestation-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .prestation-card .btn {
    width: 100%;
    justify-content: center;
  }

  /* PROCESS */
  .process-bg { background: var(--grad-dark); color: white; }

  .process-bg .section-label { color: var(--on-dark); }
  .process-bg .section-title { color: white; }
  .process-bg .section-subtitle { color: rgba(255,255,255,0.7); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.28), rgba(255,255,255,0.28), transparent);
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .step-num {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .process-step h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
  }

  .process-step p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
  }

  /* À PROPOS */
  .about-section { background: #ffffff; position: relative; overflow: hidden; }

  .about-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 4.5rem;
    align-items: center;
    margin-top: 2.5rem;
  }

  .about-portrait {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
  }

  .about-portrait::before {
    content: '';
    position: absolute;
    inset: -9%;
    border-radius: 50%;
    background: var(--grad-silver);
    z-index: 0;
  }

  .about-portrait::after {
    content: '';
    position: absolute;
    inset: -2.5%;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    z-index: 3;
    pointer-events: none;
  }

  .about-portrait img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 28px 60px rgba(0,0,0,0.20);
  }

  .about-tag {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: -0.6rem;
    transform: translateX(-50%);
    background: var(--grad-ink);
    color: #fff;
    padding: 0.5rem 1.15rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(0,0,0,0.30);
  }

  .about-lead {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.7;
    margin: 1.25rem 0 1.1rem;
  }

  .about-text > p {
    font-size: 0.96rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.78;
    max-width: 60ch;
  }

  .about-points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1.6rem 0 1.8rem;
  }

  .about-points li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.48rem 0.95rem;
    font-size: 0.83rem;
    color: var(--text);
  }

  .about-points li::before { content: '✓'; font-weight: 700; }

  .about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .about-signature {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 1.75rem;
    line-height: 1.2;
  }

  .about-signature small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 0.35rem;
    letter-spacing: 0.02em;
  }

  .about-phone {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding-bottom: 1px;
  }

  /* ZONE */
  .zone-section { background: #f5f5f5; }

  .zone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
  }

  .zone-map {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .zone-map iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .zone-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.5rem 0;
  }

  .zone-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .zone-list li::before {
    content: '📍';
    font-size: 0.85rem;
  }

  /* AVIS */
  .avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    align-items: start;
  }

  .avis-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: box-shadow 0.2s;
  }

  .avis-card:hover { box-shadow: var(--shadow-hover); }

  .avis-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 0.05em; }

  .avis-text { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.65; font-style: italic; }

  .avis-author { display: flex; align-items: center; gap: 0.6rem; }

  .avis-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
    flex-shrink: 0;
  }

  .avis-name { font-size: 0.85rem; font-weight: 500; }
  .avis-role { font-size: 0.78rem; color: var(--text-light); }

  /* ESPACE CLIENT */
  #espace-client { background: #f7f7f7; }

  .auth-container {
    max-width: 460px;
    margin: 0 auto;
  }

  .auth-tabs {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1.5rem;
    gap: 4px;
  }

  .auth-tab {
    flex: 1;
    padding: 0.6rem;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
    border: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
  }

  .auth-tab.active {
    background: var(--primary);
    color: white;
  }

  .auth-panel { display: none; }
  .auth-panel.active { display: block; }

  .dashboard-panel { display: none; }
  .dashboard-panel.active { display: block; }

  .form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
  }

  .form-group { margin-bottom: 1rem; }

  .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border-mid);
    border-radius: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.09);
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  .form-submit {
    width: 100%;
    padding: 0.85rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: var(--primary-mid); transform: translateY(-1px); }

  .form-link {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 1rem;
  }

  .form-link a { color: var(--primary); text-decoration: none; font-weight: 500; }

  .alert {
    padding: 0.75rem 1rem;
    border-radius: 9px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: none;
  }

  .alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
  .alert-error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
  .alert.show { display: block; }

  /* Dashboard */
  .dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .dash-welcome {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--primary);
  }

  .dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .dash-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
  }

  .dash-stat strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    color: var(--primary);
  }

  .dash-stat span { font-size: 0.75rem; color: var(--text-light); }

  .dash-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .dash-section h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text);
  }

  .upload-zone {
    border: 2px dashed var(--border-mid);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
    font-size: 0.85rem;
  }

  .upload-zone:hover { border-color: var(--primary); background: rgba(0,0,0,0.03); }

  .upload-zone .upload-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }

  .upload-zone input { display: none; }

  .dossiers-empty {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.85rem;
  }

  .stars-input {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .star-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--border-mid);
    transition: color 0.15s, transform 0.15s;
  }

  .star-btn:hover, .star-btn.active { color: var(--accent); transform: scale(1.15); }

  /* FAQ */
  .faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1px; }

  .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
  }

  .faq-item:hover { box-shadow: var(--shadow); }

  .faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--accent);
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  .faq-item.open .faq-question::after { transform: rotate(45deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
  }

  /* CONTACT */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
  }

  .contact-info h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  .contact-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.75;
  }

  .contact-items { display: flex; flex-direction: column; gap: 0.85rem; }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .contact-item-icon {
    width: 38px;
    height: 38px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  /* FOOTER */
  footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 3.5rem 5% 2rem;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand .logo { color: rgba(255,255,255,0.95); }

  .footer-brand p {
    font-size: 0.82rem;
    margin-top: 0.75rem;
    line-height: 1.6;
  }

  .footer-col h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

  .footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: #ffffff; }

  .footer-brand .logo span { background: #ffffff; }
  .footer a { color: rgba(255,255,255,0.6); }
  .footer a:hover { color: #ffffff; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* STRIPE STRIPE */
  .stripe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.75rem;
  }

  /* RESPONSIVE */
  @media (max-width: 940px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: block; }
  }

  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { display: none; }
    .prestations-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 2.75rem; justify-items: start; }
    .about-portrait { max-width: 250px; justify-self: center; }
    .zone-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .avis-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .dash-stats { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 600px) {
    nav { padding: 0 5%; }
    .nav-inner { height: 62px; }
    .mobile-menu { top: 62px; }
    section { padding: 3.25rem 5%; }
    .hero { padding: 2.5rem 5% 3rem; min-height: auto; }
    .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { gap: 0.6rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 1.25rem; padding-top: 1.5rem; }
    .hero-stat strong { font-size: 1.5rem; }
    .section-title { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
    .prestation-card { padding: 1.6rem; }
    .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
    .form-row { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .about-lead { font-size: 1.05rem; }
    .about-actions { gap: 0.75rem; width: 100%; }
    .about-actions .btn { width: 100%; justify-content: center; }
    .about-actions .about-phone { text-align: center; width: 100%; }
    .about-tag { font-size: 0.72rem; padding: 0.42rem 0.9rem; }
    .about-signature { font-size: 1.35rem; }
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-up { animation: fadeUp 0.6s ease both; }
  .fade-up-1 { animation-delay: 0.1s; }
  .fade-up-2 { animation-delay: 0.2s; }
  .fade-up-3 { animation-delay: 0.3s; }

  /* HIDDEN */
  .hidden { display: none !important; }

/* ===== Widget chat ===== */
  #chat-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
  }

  #chat-window {
    width: 360px;
    max-height: 520px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chatOpen 0.25s ease;
  }

  @keyframes chatOpen {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  #chat-window.open { display: flex; }

  .chat-header {
    background: var(--grad-dark);
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
  }

  .chat-header-left { display: flex; align-items: center; gap: 10px; }

  .chat-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .chat-header-info strong { display: block; font-size: 0.9rem; }
  .chat-header-info span { font-size: 0.75rem; opacity: 0.75; }

  .chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
    padding: 0;
  }
  .chat-close:hover { opacity: 1; }

  .chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-height: 0;
    max-height: 320px;
    background: #f6f6f6;
  }

  .chat-msg {
    max-width: 85%;
    padding: 0.65rem 0.9rem;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.55;
    animation: msgIn 0.2s ease;
  }

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

  .chat-msg.bot {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    color: #1a1a1a;
  }

  .chat-msg.user {
    background: #141414;
    color: white;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
  }

  .chat-msg.typing {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    align-self: flex-start;
    color: #888;
    font-style: italic;
    font-size: 0.8rem;
  }

  .chat-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
    margin-top: 0.3rem;
  }
  .chat-whatsapp-btn:hover { background: #1ebe5a; }

  .chat-footer {
    padding: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.07);
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    background: white;
  }

  .chat-input {
    flex: 1;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
    font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    color: #1a1a1a;
    background: #fafaf7;
    transition: border-color 0.2s;
  }
  .chat-input:focus { border-color: #141414; }
  .chat-input::placeholder { color: #aaa; }

  .chat-send {
    width: 38px;
    height: 38px;
    background: #141414;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
  }
  .chat-send:hover { background: #333333; transform: scale(1.05); }

  #chat-toggle-btn {
    width: 56px;
    height: 56px;
    background: var(--grad-dark);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.34);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
  }
  #chat-toggle-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,0.42); }

  .chat-notif {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 13px;
    height: 13px;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid #111111;
    display: none;
  }
  .chat-notif.show { display: block; }

  @media (max-width: 480px) {
    #chat-window { width: calc(100vw - 32px); }
    #chat-bubble { bottom: 16px; right: 16px; }
  }

/* ======================================================
   PHASE 1 — Multi-pages, animations & composants
   ====================================================== */

/* --- Bouton téléphone (CTA) --- */
.btn-phone { white-space: nowrap; font-weight: 600; }
.nav-cta .btn-phone { letter-spacing: 0; }

/* --- Cartes prestations : cliquables + animation discrète --- */
.prestation-card { transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s, border-color .3s; }
.prestation-card.clickable { cursor: pointer; }
.prestation-card.clickable:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.13);
  border-color: rgba(0,0,0,0.28);
}
.prestation-card .prestation-icon { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.prestation-card.clickable:hover .prestation-icon { transform: translateY(-2px) scale(1.06); }
.prestation-card .card-more {
  margin-top: .5rem; font-size: .82rem; color: var(--text-light);
  opacity: 0; transform: translateY(4px); transition: opacity .3s, transform .3s;
}
.prestation-card.clickable:hover .card-more { opacity: 1; transform: none; color: var(--text-muted); }

/* --- Reveal à l'entrée dans l'écran --- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* --- Étapes « comment ça marche » : animation des chiffres --- */
.step-num.pop { animation: stepPop .6s cubic-bezier(.2,.9,.3,1.2) both; }
@keyframes stepPop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.step-num::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.22);
  transform: scale(.5); opacity: 0; transition: transform .7s ease, opacity .7s ease;
}
.step-num.pop::after { transform: scale(1); opacity: 1; }

/* --- Halo animé autour de la photo --- */
.about-portrait::before {
  background: conic-gradient(from 0deg, #ededed, #f8f8f8, #e2e2e2, #f8f8f8, #ededed) !important;
  animation: haloTurn 24s linear infinite;
  filter: blur(1px);
}
@keyframes haloTurn {
  0%   { transform: rotate(0deg)   scale(1);    }
  50%  { transform: rotate(180deg) scale(1.045);}
  100% { transform: rotate(360deg) scale(1);    }
}

/* --- Carrousel d'avis (défilement continu) --- */
.avis-carousel {
  position: relative; overflow: hidden; margin-top: 2.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.avis-track { display: flex; gap: 1.5rem; width: max-content; animation: avisScroll 48s linear infinite; }
.avis-carousel:hover .avis-track { animation-play-state: paused; }
.avis-track .avis-card { width: 340px; flex: 0 0 340px; margin: 0; }
@keyframes avisScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Bandeau CTA téléphone (réutilisable) --- */
.cta-band { background: var(--grad-dark); color: #fff; text-align: center; padding: 4.5rem 5%; }
.cta-band h2 { color: #fff; font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: .6rem; }
.cta-band p { color: var(--on-dark-mute); max-width: 560px; margin: 0 auto 1.7rem; line-height: 1.7; }
.cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.btn-phone-lg { background: #fff; color: #111; font-weight: 600; font-size: 1.05rem; padding: .95rem 1.7rem; border-radius: 12px; }
.btn-phone-lg:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.btn-ghost-lg { background: transparent; border: 1px solid rgba(255,255,255,.4); color: #fff; padding: .95rem 1.7rem; border-radius: 12px; font-weight: 500; }
.btn-ghost-lg:hover { background: rgba(255,255,255,.08); }

/* --- En-tête des sous-pages --- */
.page-hero { background: var(--grad-hero); padding: 7.5rem 5% 3.5rem; border-bottom: 1px solid var(--border); text-align: center; }
.page-hero .section-label { display: block; }
.page-hero h1 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -.02em; margin: .5rem 0 .9rem; }
.page-hero p { color: var(--text-muted); max-width: 660px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.page-section { padding: 4.5rem 5%; }
.page-narrow { max-width: 1180px; margin: 0 auto; }
.prose-narrow { max-width: 760px; margin: 0 auto; }

/* --- Portfolio / réalisations --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1180px; margin: 0 auto; }
.portfolio-item { position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--grad-silver); border: 1px solid var(--border); }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item .pf-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem; background: linear-gradient(transparent, rgba(0,0,0,.78)); color: #fff; font-size: .85rem; opacity: 0; transition: opacity .3s; }
.portfolio-item:hover .pf-cap { opacity: 1; }
.portfolio-item.placeholder { display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: .82rem; text-align: center; padding: 1rem; }
.portfolio-item.placeholder span { line-height: 1.5; }

/* --- Blog --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; max-width: 1180px; margin: 0 auto; }
.blog-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: transform .35s, box-shadow .35s; text-decoration: none; color: inherit; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-thumb { aspect-ratio: 16/10; background: var(--grad-silver); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.blog-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.blog-meta { font-size: .74rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; }
.blog-card h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; line-height: 1.3; }
.blog-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.blog-read { margin-top: auto; font-size: .85rem; font-weight: 500; padding-top: .3rem; }

/* --- Article de blog --- */
.article { max-width: 760px; margin: 0 auto; }
.article > p:first-of-type { font-size: 1.12rem; color: var(--text); }
.article h2 { font-family: 'Fraunces', serif; font-size: 1.55rem; margin: 2.2rem 0 .8rem; }
.article p { color: var(--text); line-height: 1.85; margin-bottom: 1.1rem; }
.article ul { margin: 0 0 1.2rem 1.3rem; color: var(--text); line-height: 1.85; }

/* --- Page produit --- */
.product-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; max-width: 1180px; margin: 0 auto; align-items: start; }
.product-main h2 { font-family: 'Fraunces', serif; font-size: 1.5rem; margin: 2.2rem 0 .8rem; }
.product-main > p { color: var(--text); line-height: 1.85; margin-bottom: 1rem; }
.product-main ul { margin: 0 0 1.3rem 1.3rem; line-height: 1.9; color: var(--text); }
.product-aside { position: sticky; top: 92px; border: 1px solid var(--border-mid); border-radius: var(--radius-lg); padding: 2rem; background: var(--grad-silver); }
.product-aside .pa-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); }
.product-aside .pa-price { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 600; line-height: 1.1; margin: .2rem 0 .3rem; }
.product-aside .pa-price span { font-size: 1rem; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }
.product-aside .btn { width: 100%; justify-content: center; margin-top: 1rem; }
.product-aside .pa-phone { display: block; text-align: center; margin-top: 1.1rem; font-family: 'Fraunces', serif; font-size: 1.05rem; color: var(--primary); text-decoration: none; }

/* --- Responsive nouvelles sections --- */
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-aside { position: static; }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .avis-track .avis-card { width: 280px; flex-basis: 280px; }
  .avis-track { animation-duration: 34s; }
  .page-hero { padding: 6.5rem 5% 2.8rem; }
  .page-section { padding: 3.25rem 5%; }
  .cta-actions .btn-phone-lg, .cta-actions .btn-ghost-lg { width: 100%; text-align: center; }
}

/* --- Accessibilité : réduire les animations si demandé --- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .about-portrait::before { animation: none !important; }
  .step-num.pop { animation: none !important; }
  .avis-track { animation: none !important; }
  .prestation-card.clickable:hover { transform: none; }
}

/* ======================================================
   PORTFOLIO — défilé landing, grille réalisations, visionneuse
   ====================================================== */
.pf-section { background:#fff; }
.pf-carousel { position:relative; overflow:hidden; margin-top:2.25rem;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent); }
.pf-track { display:flex; gap:1.25rem; will-change:transform; }
.pf-slide { flex:0 0 calc((100% - 2.5rem)/3); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); background:var(--grad-silver); cursor:zoom-in; position:relative; aspect-ratio:1; }
.pf-slide img, .pf-cell img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s; }
.pf-slide:hover img { transform:scale(1.04); }
.pf-cap { position:absolute; left:0; right:0; bottom:0; padding:.85rem 1rem; background:linear-gradient(transparent,rgba(0,0,0,.8)); color:#fff; font-size:.82rem; }
.pf-cap strong { display:block; font-weight:600; }
.pf-cap span { opacity:.85; font-size:.76rem; }
@media(max-width:700px){ .pf-slide{ flex-basis:100%; } }

.pf-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; max-width:1180px; margin:0 auto; }
.pf-cell{ position:relative; aspect-ratio:1; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); background:var(--grad-silver); cursor:zoom-in; }
.pf-cell:hover img{ transform:scale(1.05); }
.pf-cell .pf-cap{ opacity:0; transition:opacity .3s; }
.pf-cell:hover .pf-cap{ opacity:1; }
@media(max-width:900px){ .pf-grid{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px){ .pf-grid{ grid-template-columns:1fr;} }

/* Visionneuse (lightbox) */
.lb{ position:fixed; inset:0; background:rgba(8,8,8,.94); z-index:1000; display:none; align-items:center; justify-content:center; touch-action:none; }
.lb.open{ display:flex; }
.lb-stage{ position:absolute; inset:0; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.lb-img{ max-width:100%; max-height:100%; object-fit:contain; transform-origin:center center; user-select:none; -webkit-user-drag:none; will-change:transform; cursor:zoom-in; }
.lb-img.zoomed{ cursor:grab; }
.lb-btn{ position:absolute; top:50%; transform:translateY(-50%); width:52px; height:52px; border-radius:50%; border:none; background:rgba(255,255,255,.12); color:#fff; font-size:1.7rem; line-height:1; cursor:pointer; z-index:2; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.lb-btn:hover{ background:rgba(255,255,255,.24); }
.lb-prev{ left:18px; } .lb-next{ right:18px; }
.lb-close{ position:absolute; top:16px; right:18px; width:46px; height:46px; border-radius:50%; border:none; background:rgba(255,255,255,.12); color:#fff; font-size:1.3rem; cursor:pointer; z-index:3; }
.lb-close:hover{ background:rgba(255,255,255,.24); }
.lb-cap{ position:absolute; bottom:18px; left:50%; transform:translateX(-50%); background:rgba(0,0,0,.55); color:#fff; padding:.5rem 1.1rem; border-radius:100px; font-size:.85rem; z-index:2; text-align:center; max-width:90%; }
.lb-cap strong{ font-weight:600; } .lb-cap span{ opacity:.8; }
.lb-hint{ position:absolute; top:18px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.55); font-size:.74rem; z-index:2; }
@media(max-width:600px){ .lb-btn{ width:44px;height:44px;font-size:1.4rem;} .lb-prev{left:8px;} .lb-next{right:8px;} .lb-hint{ font-size:.68rem; } }

/* Cartes hero cliquables + formulaire d'avis public */
a.hero-card { text-decoration:none; color:inherit; display:block; cursor:pointer; transition:transform .3s, box-shadow .3s; }
a.hero-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-hover); }
.review-cta { text-align:center; margin-top:2.75rem; }
.review-form { display:none; max-width:520px; margin:1.5rem auto 0; text-align:left; }
.review-form.open { display:block; }
.review-form input[type=file] { width:100%; font-size:.85rem; }
.footer-legal a { color:rgba(255,255,255,.7); text-decoration:none; }
.footer-legal a:hover { color:#fff; }
.avis-photo { width:100%; height:150px; object-fit:cover; border-radius:10px; margin-bottom:.75rem; }
