/* ============================================
       PALETTES
       ============================================ */
    :root {
      --color-text: #2C2C2A;
      --color-text-light: #5A5A57;
      --color-text-soft: #8A8A85;
      --color-bg: #F5F1E8;
      --color-bg-alt: #E5DEC8;
      --color-bg-dark: #1A1A18;
      --color-white: #FBF8F1;
      --color-border: #DDD6C6;
      --color-border-soft: #E8E2D2;
      --color-accent: #C45B2C;

      --font-display: 'Fraunces', Georgia, serif;
      --font-body: 'Inter', -apple-system, sans-serif;
      --font-weight-display: 500;
      --letter-spacing-display: -0.025em;
      --letter-spacing-eyebrow: 0.15em;

      --color-motif-pierre-seche: #E85D17;
      --color-motif-pierre: #D11C7A;
      --color-motif-bois-tresse: #6BA02B;
      --color-motif-lame-bois: #1F948B;

      --text-hero: clamp(2.5rem, 5vw + 1rem, 5rem);
      --text-display: clamp(2rem, 3vw + 1rem, 3.5rem);
      --text-h2: clamp(1.75rem, 2vw + 1rem, 2.5rem);
      --text-h3: clamp(1.25rem, 1vw + 0.75rem, 1.5rem);
      --text-body: 1.0625rem;
      --text-small: 0.9375rem;
      --text-tiny: 0.8125rem;

      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 1.5rem;
      --space-lg: 2.5rem;
      --space-xl: 4rem;
      --space-2xl: 6rem;
      --space-3xl: 8rem;

      --container-max: 1200px;
      --container-text: 720px;

      --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
      --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

      --button-radius: 0;
      --card-radius: 0;
    }
/* ============================================
       RESET
       ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

    body {
      font-family: var(--font-body);
      font-size: var(--text-body);
      font-weight: 400;
      line-height: 1.6;
      color: var(--color-text);
      background: var(--color-bg);
      overflow-x: hidden;
      transition: background-color var(--transition-base), color var(--transition-base);
    }

    img, video {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--transition-base);
    }

    button {
      font: inherit;
      cursor: pointer;
      border: none;
      background: none;
      color: inherit;
    }

    /* ============================================
       TYPOGRAPHIE
       ============================================ */
    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: var(--font-weight-display);
      letter-spacing: var(--letter-spacing-display);
      line-height: 1.1;
      color: var(--color-text);
    }

    h1 { font-size: var(--text-hero); }
    h2 { font-size: var(--text-display); }
    h3 { font-size: var(--text-h2); }
    h4 { font-size: var(--text-h3); }

    p { max-width: var(--container-text); }

    .text-eyebrow {
      font-family: var(--font-body);
      font-size: var(--text-tiny);
      font-weight: 600;
      letter-spacing: var(--letter-spacing-eyebrow);
      text-transform: uppercase;
      color: var(--color-text-light);
    }

    .text-lead {
      font-size: 1.25rem;
      line-height: 1.5;
      color: var(--color-text-light);
      font-weight: 400;
    }

    /* ============================================
       LAYOUT
       ============================================ */
    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--space-md);
    }

    .section { padding: var(--space-2xl) 0; }

    .section-alt {
      background: var(--color-bg-alt);
      transition: background-color var(--transition-base);
    }

    .section-divider {
      width: 40px;
      height: 2px;
      background: var(--color-text);
      margin: var(--space-md) 0 var(--space-lg);
    }

    .section-header {
      max-width: 720px;
      margin-bottom: var(--space-2xl);
    }

    /* ============================================
       HEADER
       ============================================ */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 100;
      padding: var(--space-sm) 0;
      transition: all var(--transition-base);
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .wordmark {
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: var(--font-weight-display);
      letter-spacing: -0.01em;
      color: white;
      line-height: 1.1;
    }

    .wordmark-detail {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.625rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 4px;
    }

    .header-cta {
      font-family: 'Inter', sans-serif;
      font-size: var(--text-small);
      font-weight: 500;
      padding: 0.625rem 1.25rem;
      border: 1px solid rgba(255, 255, 255, 0.6);
      color: white;
      transition: all var(--transition-base);
      border-radius: var(--button-radius);
    }

    .header-cta:hover {
      background: white;
      color: var(--color-text);
      border-color: white;
    }

    .site-header.scrolled {
      background: color-mix(in srgb, var(--color-bg) 92%, transparent);
      border-bottom: 1px solid var(--color-border-soft);
    }

    .site-header.scrolled .wordmark { color: var(--color-text); }
    .site-header.scrolled .wordmark-detail { color: var(--color-text-soft); }
    .site-header.scrolled .header-cta {
      color: var(--color-text);
      border-color: var(--color-text);
    }
    .site-header.scrolled .header-cta:hover {
      background: var(--color-text);
      color: var(--color-bg);
    }

    /* ============================================
       BOUTONS
       ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Inter', sans-serif;
      font-size: var(--text-body);
      font-weight: 500;
      letter-spacing: -0.005em;
      padding: 1rem 2rem;
      transition: all var(--transition-base);
      text-decoration: none;
      cursor: pointer;
      border-radius: var(--button-radius);
    }

    .btn-primary {
      background: var(--color-text);
      color: var(--color-bg);
    }

    .btn-primary:hover {
      background: var(--color-text-light);
      transform: translateY(-1px);
    }

    .btn-arrow::after {
      content: '→';
      transition: transform var(--transition-base);
    }

    .btn-arrow:hover::after {
      transform: translateX(4px);
    }

    /* ============================================
       HERO
       ============================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      width: 100%;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image: url('images/cloture-beton-imitation-pierre-hero-1-1920.jpg');
      background-size: cover;
      background-position: center;
      z-index: 1;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(135deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.25) 100%);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100vh;
      padding: 8rem 0 4rem;
      color: white;
    }

    .hero-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: var(--text-tiny);
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: var(--space-md);
    }

    .hero-title {
      font-family: var(--font-display);
      font-weight: var(--font-weight-display);
      letter-spacing: var(--letter-spacing-display);
      line-height: 1.05;
      color: white;
      max-width: 880px;
      margin-bottom: var(--space-lg);
      font-size: clamp(2.75rem, 5.5vw + 1rem, 5.5rem);
    }

    .hero-subtitle {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1.5rem, 1.8vw + 1rem, 2.25rem);
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: var(--space-lg);
      display: flex;
      align-items: center;
      gap: var(--space-md);
    }

    .hero-subtitle::before {
      content: '';
      display: inline-block;
      width: 48px;
      height: 2px;
      background: var(--color-accent);
    }

    .hero-content .text-lead {
      font-size: 1.25rem;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.92);
      max-width: 580px;
      margin-bottom: var(--space-xl);
    }

    .hero-content .btn-primary {
      background: white;
      color: var(--color-text);
    }

    .hero-content .btn-primary:hover {
      background: var(--color-bg);
      transform: translateY(-1px);
    }

    /* ============================================
       RUBRIQUE 2 — LA GAMME
       ============================================ */
    .gamme-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl) var(--space-lg);
      margin-top: var(--space-xl);
    }

    .gamme-card {
      display: flex;
      flex-direction: column;
      background: transparent;
      transition: transform var(--transition-base);
    }

    .gamme-card:hover { transform: translateY(-4px); }

    .gamme-image-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 2;
      overflow: hidden;
      background: var(--color-bg-alt);
      margin-bottom: var(--space-md);
    }

    .gamme-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 700ms ease;
    }

    .gamme-card:hover .gamme-image-wrapper img {
      transform: scale(1.03);
    }

    .gamme-info {
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .gamme-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: var(--space-md);
      gap: var(--space-md);
    }

    .gamme-motif {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: var(--font-weight-display);
      letter-spacing: -0.01em;
      line-height: 1.1;
    }

    .gamme-motif--pierre-seche { color: var(--color-motif-pierre-seche); }
    .gamme-motif--pierre { color: var(--color-motif-pierre); }
    .gamme-motif--bois-tresse { color: var(--color-motif-bois-tresse); }
    .gamme-motif--lame-bois { color: var(--color-motif-lame-bois); }

    .gamme-face {
      font-family: var(--font-body);
      font-size: var(--text-small);
      color: var(--color-text-light);
      letter-spacing: 0.02em;
      white-space: nowrap;
    }

    .gamme-fiche-link {
      font-family: var(--font-body);
      font-size: var(--text-tiny);
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--color-text);
      padding-top: var(--space-md);
      border-top: 1px solid var(--color-border);
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      transition: gap var(--transition-base);
      margin-top: auto;
      text-transform: uppercase;
    }

    .gamme-fiche-link::after {
      content: '→';
      transition: transform var(--transition-base);
      display: inline-block;
    }

    .gamme-fiche-link:hover { color: var(--color-accent); }
    .gamme-fiche-link:hover::after { transform: translateX(4px); }

    /* ============================================
       RUBRIQUE 3 — CARACTÉRISTIQUES TECHNIQUES
       ============================================ */
    .specs-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      margin-top: var(--space-xl);
      margin-bottom: var(--space-2xl);
      border-top: 1px solid var(--color-border);
      border-left: 1px solid var(--color-border);
    }

    .spec-card {
      padding: var(--space-xl) var(--space-lg);
      border-right: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
      background: var(--color-bg);
      transition: background-color var(--transition-base);
    }

    .spec-card:hover { background: var(--color-white); }

    .spec-card-value {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 3vw + 1rem, 3.5rem);
      font-weight: var(--font-weight-display);
      letter-spacing: -0.03em;
      line-height: 1;
      color: var(--color-text);
      margin-bottom: var(--space-sm);
    }

    .spec-card-label {
      font-family: var(--font-body);
      font-size: var(--text-tiny);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-light);
    }

    .specs-paragraph {
      max-width: 720px;
      font-size: 1.0625rem;
      line-height: 1.7;
      color: var(--color-text-light);
      margin-bottom: var(--space-3xl);
    }

    .matiere-block { margin-top: var(--space-2xl); }

    .matiere-title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
      font-weight: var(--font-weight-display);
      letter-spacing: -0.02em;
      color: var(--color-text);
      margin-bottom: var(--space-md);
    }

    .matiere-divider {
      width: 32px;
      height: 1px;
      background: var(--color-text-light);
      margin-bottom: var(--space-xl);
    }

    .matiere-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-lg);
    }

    .matiere-item {
      display: flex;
      flex-direction: column;
    }

    .matiere-image-wrapper {
      width: 100%;
      overflow: hidden;
      background: var(--color-bg-alt);
      margin-bottom: var(--space-md);
    }

    .matiere-image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
    }

    .matiere-caption {
      font-family: var(--font-body);
      font-size: var(--text-small);
      color: var(--color-text-light);
      letter-spacing: 0.02em;
    }

    .matiere-caption-motif {
      font-weight: 600;
      color: var(--color-text);
    }

    /* ============================================
       RUBRIQUE 4 — LE FABRICANT
       ============================================ */
    .fabricant-intro {
      max-width: 720px;
      font-size: 1.125rem;
      line-height: 1.7;
      color: var(--color-text);
      margin-top: var(--space-xl);
      margin-bottom: var(--space-2xl);
    }

    .fabricant-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      margin-bottom: var(--space-3xl);
      border-top: 1px solid var(--color-border);
      border-left: 1px solid var(--color-border);
    }

    .fabricant-stat {
      padding: var(--space-xl) var(--space-lg);
      border-right: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
      background: var(--color-bg);
      transition: background-color var(--transition-base);
    }

    .fabricant-stat:hover { background: var(--color-white); }

    .fabricant-stat-value {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 3vw + 1rem, 3.5rem);
      font-weight: var(--font-weight-display);
      letter-spacing: -0.03em;
      line-height: 1;
      color: var(--color-text);
      margin-bottom: var(--space-sm);
    }

    .fabricant-stat-label {
      font-family: var(--font-body);
      font-size: var(--text-tiny);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-light);
    }

    .fabricant-divider-block {
      display: flex;
      align-items: center;
      gap: var(--space-md);
      margin-bottom: var(--space-xl);
    }

    .fabricant-divider-line {
      flex: 0 0 48px;
      height: 2px;
      background: var(--color-accent);
    }

    .fabricant-divider-text {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-accent);
    }

    .fabricant-video-block {
      max-width: 720px;
      margin: 0 auto var(--space-2xl);
    }

    .fabricant-video-wrapper {
      width: 100%;
      overflow: hidden;
      background: var(--color-bg-dark);
    }

    .fabricant-video-wrapper video {
      width: 100%;
      height: auto;
      display: block;
    }

    .fabricant-photos-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-lg);
    }

    .fabricant-photo-item {
      width: 100%;
    }

    .fabricant-photo-wrapper {
      width: 100%;
      overflow: hidden;
      background: var(--color-bg-alt);
    }

    .fabricant-photo-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 700ms ease, filter var(--transition-slow);
    }

    .fabricant-photo-wrapper:hover img {
      transform: scale(1.02);
    }

    .fabricant-media-caption {
      font-family: var(--font-body);
      font-size: var(--text-small);
      color: var(--color-text-light);
      margin-top: var(--space-md);
      letter-spacing: 0.02em;
    }

    /* ============================================
       RUBRIQUE 5 — L'OUTIL DE CHIFFRAGE
       ============================================ */
    .chiffrage-intro {
      max-width: 720px;
      font-size: 1.125rem;
      line-height: 1.75;
      color: var(--color-text);
      margin-top: var(--space-xl);
      margin-bottom: var(--space-3xl);
    }

    .chiffrage-captures {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-2xl);
      margin-bottom: var(--space-3xl);
    }

    .chiffrage-capture-item {
      display: flex;
      flex-direction: column;
    }

    .chiffrage-capture-wrapper {
      width: 100%;
      max-width: 380px;
      margin: 0 auto;
      height: 600px;
      overflow: hidden;
      position: relative;
      background: var(--color-bg-alt);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
    }

    .chiffrage-capture-wrapper.is-static img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    .chiffrage-capture-wrapper.is-scrollable {
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--color-text-soft) transparent;
    }

    .chiffrage-capture-wrapper.is-scrollable::-webkit-scrollbar {
      width: 6px;
    }

    .chiffrage-capture-wrapper.is-scrollable::-webkit-scrollbar-track {
      background: transparent;
    }

    .chiffrage-capture-wrapper.is-scrollable::-webkit-scrollbar-thumb {
      background: var(--color-text-soft);
      border-radius: 3px;
    }

    .chiffrage-capture-wrapper.is-scrollable img {
      width: 100%;
      height: auto;
      display: block;
    }

    .chiffrage-predevis-stack {
      display: flex;
      flex-direction: column;
    }

    .chiffrage-predevis-stack img {
      width: 100%;
      height: auto;
      display: block;
    }

    .chiffrage-capture-wrapper.is-scrollable::after {
      content: '';
      position: sticky;
      bottom: 0;
      left: 0;
      right: 0;
      display: block;
      height: 60px;
      background: linear-gradient(to bottom, transparent 0%, var(--color-bg) 100%);
      pointer-events: none;
      margin-top: -60px;
    }

    .chiffrage-capture-caption {
      font-family: var(--font-body);
      font-size: var(--text-small);
      color: var(--color-text-light);
      margin-top: var(--space-md);
      text-align: center;
      letter-spacing: 0.02em;
    }

    .chiffrage-capture-caption strong {
      font-weight: 600;
      color: var(--color-text);
    }

    .chiffrage-stores {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-md);
      justify-content: center;
      margin-bottom: var(--space-lg);
    }

    .store-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.875rem;
      padding: 0.875rem 1.5rem;
      background: var(--color-text);
      color: var(--color-bg);
      border: 1px solid var(--color-text);
      border-radius: var(--button-radius);
      transition: all var(--transition-base);
      text-decoration: none;
      min-width: 220px;
    }

    .store-btn:hover {
      background: var(--color-text-light);
      transform: translateY(-2px);
    }

    .store-btn-icon {
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .store-btn-icon-apple {
      fill: currentColor;
      stroke: none;
    }

    .store-btn-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
      text-align: left;
    }

    .store-btn-text-small {
      font-family: 'Inter', sans-serif;
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0.75;
    }

    .store-btn-text-large {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.005em;
      margin-top: 2px;
    }

    .chiffrage-store-note {
      text-align: center;
      font-family: var(--font-body);
      font-size: var(--text-small);
      color: var(--color-text-light);
      max-width: 480px;
      margin: 0 auto;
      font-style: italic;
    }

    /* ============================================
       RUBRIQUE 6 — L'ÉCOSYSTÈME REVENDEUR
       ============================================ */

    .revendeur-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
      margin-top: var(--space-xl);
    }

    .revendeur-card {
      display: flex;
      flex-direction: column;
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      transition: all var(--transition-base);
    }

    .revendeur-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    /* Visuel : photo ou icône */
    .revendeur-visual {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--color-bg-alt);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .revendeur-visual.has-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 700ms ease;
    }

    .revendeur-card:hover .revendeur-visual.has-photo img {
      transform: scale(1.03);
    }

    /* Icônes Lucide pour les blocs sans photo */
    .revendeur-visual.has-icon {
      background: var(--color-bg-alt);
    }

    .revendeur-icon {
      width: 80px;
      height: 80px;
      stroke: var(--color-accent);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Contenu textuel de la carte */
    .revendeur-content {
      padding: var(--space-xl) var(--space-lg);
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* Titre uppercase, plus signé, dans le style "label" cohérent avec FABRICANT et AU CŒUR DE L'ATELIER */
    .revendeur-card-title {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.9375rem, 0.8vw + 0.6rem, 1.0625rem);
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-text);
      margin-bottom: var(--space-md);
      line-height: 1.3;
    }

    .revendeur-card-description {
      font-family: var(--font-body);
      font-size: var(--text-body);
      line-height: 1.6;
      color: var(--color-text-light);
      flex: 1;
      max-width: none;
    }

    /* Container des actions (peut contenir 1 ou 2 boutons) */
    .revendeur-card-actions {
      display: flex;
      flex-direction: column;
      gap: var(--space-xs);
      padding-top: var(--space-md);
      margin-top: var(--space-md);
      border-top: 1px solid var(--color-border);
    }

    /* Lien plaquette PDF */
    .revendeur-card-link {
      font-family: var(--font-body);
      font-size: var(--text-tiny);
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--color-text);
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      transition: color var(--transition-base), gap var(--transition-base);
      text-transform: uppercase;
      padding: 0.25rem 0;
    }

    .revendeur-card-link::after {
      content: '→';
      transition: transform var(--transition-base);
      display: inline-block;
    }

    .revendeur-card-link:hover {
      color: var(--color-accent);
    }

    .revendeur-card-link:hover::after {
      transform: translateX(4px);
    }

    /* ============================================
       RUBRIQUE 7 — OUVRIR UN COMPTE PRO
       ============================================ */

    .compte-pro-section {
      padding: var(--space-2xl) 0;
    }

    /* Container centré pour l'ensemble */
    .compte-pro-container {
      max-width: 720px;
      margin: 0 auto;
    }

    /* Section header centrée pour cette rubrique */
    .compte-pro-section .section-header {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .compte-pro-section .section-divider {
      margin-left: auto;
      margin-right: auto;
    }

    .compte-pro-section .section-header p {
      margin-left: auto;
      margin-right: auto;
    }

    .compte-pro-accroche {
      text-align: center;
      max-width: 580px;
      margin: 0 auto var(--space-2xl);
      font-size: 1.0625rem;
      line-height: 1.7;
      color: var(--color-text);
    }

    /* FORMULAIRE */
    .compte-pro-form {
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      padding: var(--space-2xl);
    }

    /* Bloc obligatoire / facultatif */
    .form-block {
      margin-bottom: var(--space-xl);
    }

    .form-block:last-of-type {
      margin-bottom: 0;
    }

    .form-block-title {
      font-family: 'Inter', sans-serif;
      font-size: var(--text-tiny);
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: var(--space-md);
      display: flex;
      align-items: center;
      gap: var(--space-md);
    }

    .form-block-title::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 1px;
      background: var(--color-accent);
    }

    /* Grille 2 colonnes pour les champs */
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md) var(--space-md);
    }

    .form-field {
      display: flex;
      flex-direction: column;
    }

    /* Field pleine largeur */
    .form-field.is-full {
      grid-column: 1 / -1;
    }

    .form-label {
      font-family: 'Inter', sans-serif;
      font-size: var(--text-small);
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: 0.375rem;
      letter-spacing: -0.005em;
    }

    .form-required {
      color: var(--color-accent);
      font-weight: 600;
      margin-left: 2px;
    }

    /* Inputs / textarea / select */
    .form-input,
    .form-textarea,
    .form-select {
      font-family: 'Inter', sans-serif;
      font-size: var(--text-body);
      font-weight: 400;
      color: var(--color-text);
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--button-radius);
      padding: 0.75rem 1rem;
      width: 100%;
      transition: border-color var(--transition-base), background-color var(--transition-base);
      letter-spacing: -0.005em;
    }

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

    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
      outline: none;
      border-color: var(--color-accent);
      background: var(--color-bg);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--color-text-soft);
      opacity: 1;
    }

    .form-textarea {
      resize: vertical;
      min-height: 120px;
      font-family: 'Inter', sans-serif;
    }

    /* Select : style spécifique pour la flèche */
    .form-select {
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235A5A57' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
    }

    /* RGPD checkbox */
    .form-rgpd {
      margin-top: var(--space-xl);
      margin-bottom: var(--space-lg);
      padding-top: var(--space-lg);
      border-top: 1px solid var(--color-border);
    }

    .form-rgpd-label {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: var(--text-small);
      line-height: 1.5;
      color: var(--color-text-light);
    }

    .form-rgpd-checkbox {
      flex: 0 0 18px;
      width: 18px;
      height: 18px;
      margin-top: 2px;
      appearance: none;
      -webkit-appearance: none;
      border: 1px solid var(--color-border);
      background: var(--color-white);
      cursor: pointer;
      position: relative;
      transition: all var(--transition-base);
    }

    .form-rgpd-checkbox:hover {
      border-color: var(--color-text);
    }

    .form-rgpd-checkbox:checked {
      background: var(--color-accent);
      border-color: var(--color-accent);
    }

    .form-rgpd-checkbox:checked::after {
      content: '';
      position: absolute;
      left: 4px;
      top: 1px;
      width: 5px;
      height: 9px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .form-rgpd-link {
      color: var(--color-text);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .form-rgpd-link:hover {
      color: var(--color-accent);
    }

    /* Mention champs obligatoires */
    .form-mention {
      font-family: 'Inter', sans-serif;
      font-size: var(--text-tiny);
      color: var(--color-text-soft);
      margin-bottom: var(--space-lg);
      font-style: italic;
    }

    /* Bouton d'envoi */
    .form-submit {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      width: 100%;
      justify-content: center;
      font-family: 'Inter', sans-serif;
      font-size: var(--text-body);
      font-weight: 600;
      letter-spacing: -0.005em;
      padding: 1.125rem 2rem;
      background: var(--color-text);
      color: var(--color-bg);
      border: 1px solid var(--color-text);
      border-radius: var(--button-radius);
      transition: all var(--transition-base);
      cursor: pointer;
    }

    .form-submit:hover {
      background: var(--color-text-light);
      transform: translateY(-1px);
    }

    .form-submit::after {
      content: '→';
      transition: transform var(--transition-base);
    }

    .form-submit:hover::after {
      transform: translateX(4px);
    }

    /* Message de confirmation (caché par défaut) */
    .form-confirmation {
      display: none;
      padding: var(--space-xl) var(--space-lg);
      background: var(--color-white);
      border: 1px solid var(--color-accent);
      text-align: center;
    }

    .form-confirmation.is-visible {
      display: block;
    }

    .form-confirmation h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: var(--font-weight-display);
      color: var(--color-text);
      margin-bottom: var(--space-md);
    }

    .form-confirmation p {
      font-size: var(--text-body);
      line-height: 1.6;
      color: var(--color-text-light);
      max-width: none;
    }

    /* ============================================
       FOOTER
       ============================================ */
    .site-footer {
      background: var(--color-bg-dark);
      color: rgba(255, 252, 245, 0.7);
      padding: var(--space-2xl) 0 var(--space-lg);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: var(--space-2xl);
      margin-bottom: var(--space-xl);
    }

    .footer-brand .wordmark { color: var(--color-bg); }
    .footer-brand .wordmark-detail { color: rgba(255, 252, 245, 0.4); }
    .footer-brand p {
      margin-top: var(--space-md);
      font-size: var(--text-small);
      color: rgba(255, 252, 245, 0.6);
      line-height: 1.6;
    }

    .footer-col h5 {
      font-family: 'Inter', sans-serif;
      font-size: var(--text-tiny);
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 252, 245, 0.5);
      margin-bottom: var(--space-md);
    }

    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: var(--space-sm); }

    .footer-col a {
      color: rgba(255, 252, 245, 0.7);
      font-size: var(--text-small);
      transition: color var(--transition-base);
    }

    .footer-col a:hover { color: var(--color-bg); }

    .footer-bottom {
      border-top: 1px solid rgba(255, 252, 245, 0.1);
      padding-top: var(--space-lg);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Inter', sans-serif;
      font-size: var(--text-tiny);
      color: rgba(255, 252, 245, 0.4);
    }
    .footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  color: var(--color-muted, #888);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--color-text, #2C2C2A);
}

    /* ============================================
       ANIMATIONS AU SCROLL
       ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 600ms ease, transform 600ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .gamme-card.reveal:nth-child(1) { transition-delay: 0ms; }
    .gamme-card.reveal:nth-child(2) { transition-delay: 100ms; }
    .gamme-card.reveal:nth-child(3) { transition-delay: 200ms; }
    .gamme-card.reveal:nth-child(4) { transition-delay: 300ms; }
    .gamme-card.reveal:nth-child(5) { transition-delay: 400ms; }
    .gamme-card.reveal:nth-child(6) { transition-delay: 500ms; }

    .spec-card.reveal:nth-child(1) { transition-delay: 0ms; }
    .spec-card.reveal:nth-child(2) { transition-delay: 100ms; }
    .spec-card.reveal:nth-child(3) { transition-delay: 200ms; }
    .spec-card.reveal:nth-child(4) { transition-delay: 300ms; }

    .matiere-item.reveal:nth-child(1) { transition-delay: 0ms; }
    .matiere-item.reveal:nth-child(2) { transition-delay: 100ms; }
    .matiere-item.reveal:nth-child(3) { transition-delay: 200ms; }
    .matiere-item.reveal:nth-child(4) { transition-delay: 300ms; }

    .fabricant-stat.reveal:nth-child(1) { transition-delay: 0ms; }
    .fabricant-stat.reveal:nth-child(2) { transition-delay: 100ms; }
    .fabricant-stat.reveal:nth-child(3) { transition-delay: 200ms; }
    .fabricant-stat.reveal:nth-child(4) { transition-delay: 300ms; }

    .fabricant-photo-item.reveal:nth-child(1) { transition-delay: 0ms; }
    .fabricant-photo-item.reveal:nth-child(2) { transition-delay: 150ms; }

    .chiffrage-capture-item.reveal:nth-child(1) { transition-delay: 0ms; }
    .chiffrage-capture-item.reveal:nth-child(2) { transition-delay: 150ms; }

    .revendeur-card.reveal:nth-child(1) { transition-delay: 0ms; }
    .revendeur-card.reveal:nth-child(2) { transition-delay: 100ms; }
    .revendeur-card.reveal:nth-child(3) { transition-delay: 200ms; }
    .revendeur-card.reveal:nth-child(4) { transition-delay: 300ms; }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 768px) {
      .section { padding: var(--space-2xl) 0; }

      .header-cta {
        padding: 0.4rem 0.75rem;
        font-size: var(--text-tiny);
      }

      .hero-content { padding-top: 10rem; }
      .hero-subtitle::before { width: 28px; }

      .gamme-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
      .gamme-motif { font-size: 1.25rem; }

      .specs-stats { grid-template-columns: 1fr; }
      .spec-card { padding: var(--space-lg) var(--space-md); }

      .matiere-grid { grid-template-columns: 1fr; }

      .fabricant-stats { grid-template-columns: 1fr; }
      .fabricant-stat { padding: var(--space-lg) var(--space-md); }
      .fabricant-divider-line { flex: 0 0 28px; }

      .fabricant-photos-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
      }

      .chiffrage-captures {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
      }

      .chiffrage-capture-wrapper {
        height: 500px;
      }

      .store-btn {
        min-width: 100%;
      }

      /* Revendeur en 1 colonne sur mobile */
      .revendeur-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
      }

      .revendeur-icon {
        width: 60px;
        height: 60px;
      }

      /* Formulaire en 1 colonne sur mobile */
      .form-grid {
        grid-template-columns: 1fr;
      }

      .compte-pro-form {
        padding: var(--space-lg);
      }

      .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
      .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
      }
    }