    :root {
      --ivory:      #f5f0ea;
      --ivory-dark: #ede7df;
      --black:      #181616;
      --charcoal:   #2a2424;
      --bordeaux:   #7a1728;
      --marine:     #1a2a4a;
      --gray:       #8a8278;
      --rule:       #ddd6cc;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      background: var(--ivory);
      color: var(--black);
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      line-height: 1.75;
      overflow-x: hidden;
      max-width: 100%;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; }

    /* ── NAV ── */
    nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.4rem 3.5rem;
      background: rgba(24,22,22,.55);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: padding .4s, background .4s, border-color .4s;
    }
    nav.stuck {
      background: rgba(245,240,234,.97);
      backdrop-filter: blur(12px);
      padding: 1rem 3.5rem;
      border-bottom-color: var(--rule);
      box-shadow: 0 2px 24px rgba(0,0,0,.08);
    }
    .nav-logo {
      line-height: 0;
      display: flex;
      align-items: center;
      gap: 1rem;
      text-decoration: none;
    }
    .nav-logo img {
      height: 72px;
      width: auto;
      object-fit: contain;
      transition: transform .3s;
      /* Sur fond sombre : tout en blanc pour lisibilité */
      filter: brightness(0) invert(1);
    }
    nav.stuck .nav-logo img {
      filter: none;
    }
    .nav-logo:hover img { transform: scale(1.05); }
    .nav-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: .95rem;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #fff;
      transition: color .35s;
    }
    .nav-brand em {
      font-style: italic;
      font-weight: 300;
      color: #c8a882;
      display: block;
      font-size: 1.1rem;
      text-transform: none;
      letter-spacing: .04em;
    }
    nav.stuck .nav-brand { color: var(--marine); }
    nav.stuck .nav-brand em { color: var(--bordeaux); }
    /* Logo héro centré grand */
    .hero-logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -40%);
      z-index: 3;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      pointer-events: none;
    }
    .hero-logo-top {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: rgba(255,255,255,.82);
      margin-bottom: .75rem;
      text-shadow: 0 1px 8px rgba(0,0,0,.8);
      animation: heroLogoIn 1s .1s cubic-bezier(.16,1,.3,1) both;
    }
    .hero-logo-rule {
      width: 40px;
      height: 1px;
      background: rgba(122,23,40,.7);
      margin: 0 auto .75rem;
      animation: heroLogoIn .8s .15s cubic-bezier(.16,1,.3,1) both;
    }
    .hero-logo img {
      width: min(560px, 66vw);
      height: auto;
      filter: drop-shadow(0 6px 32px rgba(0,0,0,.8));
      animation: heroLogoIn 1.2s .2s cubic-bezier(.16,1,.3,1) both;
      transition: transform .7s cubic-bezier(.16,1,.3,1), filter .5s;
      pointer-events: all;
      cursor: pointer;
    }
    .hero-logo:hover img {
      transform: scale(1.18);
      filter: drop-shadow(0 16px 64px rgba(0,0,0,.95))
              drop-shadow(0 0 60px rgba(122,23,40,.5))
              drop-shadow(0 0 120px rgba(200,168,130,.2))
              brightness(1.06);
    }
    .hero-logo-rule2 {
      width: 40px;
      height: 1px;
      background: rgba(122,23,40,.7);
      margin: .75rem auto 0;
      animation: heroLogoIn .8s .55s cubic-bezier(.16,1,.3,1) both;
    }
    .hero-logo-slogan {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.5vw, 2rem);
      font-weight: 300;
      font-style: italic;
      color: #fff;
      letter-spacing: .1em;
      text-shadow: 0 2px 20px rgba(0,0,0,.9), 0 0 40px rgba(0,0,0,.5);
      animation: heroLogoIn 1s .65s cubic-bezier(.16,1,.3,1) both;
      white-space: nowrap;
      margin-top: .85rem;
    }
    .hero-logo-bottom {
      font-size: .62rem;
      font-weight: 500;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: rgba(255,255,255,.72);
      margin-top: .6rem;
      text-shadow: 0 1px 8px rgba(0,0,0,.8);
      animation: heroLogoIn .8s .8s cubic-bezier(.16,1,.3,1) both;
    }
    @keyframes heroLogoIn {
      from { opacity: 0; transform: scale(.92) translateY(12px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      text-decoration: none;
      transition: color .2s, letter-spacing .3s;
      color: rgba(255,255,255,.9);
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--bordeaux);
      transition: width .3s ease;
    }
    .nav-links a:hover::after { width: 100%; }
    nav.stuck .nav-links a { color: var(--black); }
    .nav-links a:hover { color: var(--bordeaux) !important; letter-spacing: .24em; }
    .nav-links a.fb { opacity: .7; }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100svh;
      min-height: 580px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
    }
    .hero-bg img {
      width: 100%;
      height: 120%;
      object-fit: cover;
      object-position: center 20%;
      will-change: transform;
      transform: scale(1.1);
    }
    .hero-veil {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        150deg,
        rgba(24,22,22,.72) 0%,
        rgba(24,22,22,.38) 55%,
        rgba(24,22,22,.12) 100%
      );
    }
    .hero-body {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 3.5rem 5.5rem;
      max-width: 700px;
    }
    .hero-eyebrow {
      font-size: .65rem;
      font-weight: 500;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
      margin-bottom: 1.25rem;
      opacity: 0;
      transform: translateY(20px);
      animation: heroFadeUp .9s .3s cubic-bezier(.16,1,.3,1) forwards;
    }
    .hero-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5.5vw, 5.5rem);
      font-weight: 300;
      line-height: 1.08;
      color: #fff;
      margin-bottom: 1.75rem;
      opacity: 0;
      transform: translateY(28px);
      animation: heroFadeUp 1s .55s cubic-bezier(.16,1,.3,1) forwards;
    }
    .hero-h1 em { font-style: italic; }
    .hero-rule {
      width: 0;
      height: 1px;
      background: var(--bordeaux);
      margin-bottom: 1.5rem;
      animation: ruleGrow .8s .9s ease forwards;
    }
    @keyframes ruleGrow { to { width: 44px; } }
    .hero-sub {
      font-size: .9rem;
      font-weight: 300;
      color: rgba(255,255,255,.72);
      max-width: 420px;
      letter-spacing: .04em;
      opacity: 0;
      transform: translateY(16px);
      animation: heroFadeUp .8s 1.1s cubic-bezier(.16,1,.3,1) forwards;
    }
    @keyframes heroFadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    .scroll-cue {
      position: absolute;
      bottom: 2.25rem;
      right: 3.5rem;
      writing-mode: vertical-rl;
      font-size: .6rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      display: flex;
      align-items: center;
      gap: .6rem;
    }
    .scroll-cue::after {
      content: '';
      width: 1px;
      height: 52px;
      background: rgba(255,255,255,.25);
      animation: grow 2s ease-in-out infinite;
      transform-origin: top;
    }
    @keyframes grow {
      0%,100% { transform: scaleY(0); }
      50%      { transform: scaleY(1); }
    }

    /* ── CONTAINERS ── */
    .wrap { max-width: 1160px; margin: 0 auto; padding: 0 3.5rem; }
    .section-label {
      display: block;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--bordeaux);
      margin-bottom: 1.25rem;
    }
    .h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3.8vw, 3.5rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }
    .h2 em { font-style: italic; }
    .h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 2.8vw, 2.8rem);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 1.25rem;
    }
    .h3 em { font-style: italic; }
    .body-text {
      font-size: .93rem;
      line-height: 1.9;
      color: #3e3838;
    }
    .body-text + .body-text { margin-top: 1.1rem; }

    /* ── INTRO ── */
    #accueil-section {
      padding: 7rem 0;
    }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }
    .quote-block {
      background: var(--charcoal);
      padding: 3.5rem;
      position: relative;
    }
    .quote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 7rem;
      line-height: .7;
      color: var(--bordeaux);
      opacity: .45;
      position: absolute;
      top: 2rem;
      left: 2.2rem;
      pointer-events: none;
    }
    .quote-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 300;
      font-style: italic;
      color: #fff;
      line-height: 1.5;
      position: relative;
      z-index: 1;
      padding-top: 1.5rem;
    }
    .quote-attr {
      margin-top: 1.5rem;
      font-size: .65rem;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
    }

    /* ── SAVOIR-FAIRE ── */
    #savoir-faire {
      background: var(--charcoal);
      padding: 7rem 0 0;
      overflow: hidden;
    }
    .sf-header {
      padding-bottom: 4rem;
    }
    #savoir-faire .section-label { color: var(--bordeaux); }
    #savoir-faire .h2 { color: #fff; }
    .sf-intro {
      font-size: .95rem;
      color: rgba(255,255,255,.45);
      max-width: 520px;
      line-height: 1.85;
      margin-top: -.5rem;
    }
    .metiers-list {
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .metier {
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: background .4s;
    }
    .metier:hover { background: rgba(255,255,255,.025); }
    .metier-inner {
      display: grid;
      grid-template-columns: 80px 1fr 44px;
      align-items: center;
      gap: 2rem;
      padding: 2.25rem 3.5rem;
      cursor: default;
    }
    .metier-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--bordeaux);
      letter-spacing: .05em;
      opacity: 1;
    }
    .metier-content { display: flex; gap: 3rem; align-items: baseline; }
    .metier-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      color: #fff;
      white-space: nowrap;
      min-width: 260px;
      transition: color .3s, letter-spacing .4s;
    }
    .metier:hover .metier-name { color: rgba(255,255,255,.7); letter-spacing: .02em; }
    .metier-desc {
      font-size: .82rem;
      color: rgba(255,255,255,.35);
      line-height: 1.75;
      transition: color .3s;
    }
    .metier:hover .metier-desc { color: rgba(255,255,255,.5); }
    .metier-line {
      width: 24px;
      height: 1px;
      background: var(--bordeaux);
      opacity: 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: opacity .3s, transform .4s ease;
    }
    .metier:hover .metier-line { opacity: 1; transform: scaleX(1); }

    /* ── SPLITS ── */
    .splits { }
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 560px;
    }
    .split-img {
      overflow: hidden;
    }
    .split-img img {
      width: 100%;
      height: 110%;
      object-fit: cover;
      object-position: center;
      transition: transform .9s ease;
      transform: translateY(0);
      will-change: transform;
    }
    .split-img:hover img { transform: translateY(-3%) scale(1.04); }
    .split-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4.5rem;
    }
    .split.flip { }
    .split.flip .split-img { order: 2; }
    .split.flip .split-content { order: 1; background: var(--charcoal); }
    .split.flip .section-label { color: rgba(255,255,255,.35); }
    .split.flip .h3 { color: #fff; }
    .split.flip .body-text { color: rgba(255,255,255,.58); }

    /* ── FORGE SECTION ── */
    .forge-section {
      background: var(--black);
      padding: 7rem 0;
      overflow: hidden;
    }
    .forge-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 3.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .forge-left {
      position: relative;
    }
    .forge-photo-wrap {
      position: relative;
      display: inline-block;
      width: 100%;
    }
    /* Cadre façon atelier avec coins forgés */
    .forge-photo-wrap::before,
    .forge-photo-wrap::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 40px;
      border-color: var(--bordeaux);
      border-style: solid;
      opacity: .7;
      z-index: 2;
    }
    .forge-photo-wrap::before {
      top: -10px; left: -10px;
      border-width: 2px 0 0 2px;
    }
    .forge-photo-wrap::after {
      bottom: -10px; right: -10px;
      border-width: 0 2px 2px 0;
    }
    .forge-photo-inner {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/5;
    }
    .forge-photo-inner::before,
    .forge-photo-inner::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 40px;
      border-color: var(--bordeaux);
      border-style: solid;
      opacity: .7;
      z-index: 2;
    }
    .forge-photo-inner::before {
      top: -10px; right: -10px;
      border-width: 2px 2px 0 0;
    }
    .forge-photo-inner::after {
      bottom: -10px; left: -10px;
      border-width: 0 0 2px 2px;
    }
    .forge-photo-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      filter: grayscale(30%) contrast(1.1);
      transition: transform .9s ease, filter .6s;
    }
    .forge-section:hover .forge-photo-inner img {
      transform: scale(1.04);
      filter: grayscale(0%) contrast(1.05);
    }
    /* Étiquette numéro de pièce style atelier */
    .forge-tag {
      position: absolute;
      bottom: 1.5rem;
      left: -1rem;
      background: var(--bordeaux);
      color: #fff;
      font-family: 'Raleway', sans-serif;
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: .5rem 1.25rem;
      z-index: 3;
    }
    .forge-right {
      padding-left: 1rem;
    }
    .forge-eyebrow {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.75rem;
    }
    .forge-eyebrow-line {
      flex: 0 0 32px;
      height: 1px;
      background: var(--bordeaux);
    }
    .forge-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 3.8vw, 4rem);
      font-weight: 300;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 2rem;
    }
    .forge-title em { font-style: italic; }
    .forge-text {
      font-size: .9rem;
      color: rgba(255,255,255,.5);
      line-height: 1.95;
      margin-bottom: 2.5rem;
    }
    .forge-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-style: italic;
      color: rgba(255,255,255,.75);
      padding-left: 1.5rem;
      border-left: 2px solid var(--bordeaux);
      line-height: 1.55;
    }
    /* Chiffre géant en filigrane */
    .forge-bg-num {
      position: absolute;
      bottom: -1rem;
      right: -2rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 14rem;
      font-weight: 300;
      color: rgba(255,255,255,.025);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    /* ── ATELIER ── */
    #atelier {
      padding: 7.5rem 0;
    }
    .atelier-grid {
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      gap: 5.5rem;
      align-items: start;
    }
    .atelier-img-wrap {
      position: relative;
    }
    .atelier-img {
      aspect-ratio: 3/4;
      overflow: hidden;
    }
    .atelier-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
    }
    .atelier-badge {
      position: absolute;
      bottom: -1.75rem;
      right: -1.75rem;
      width: 110px;
      height: 110px;
      background: var(--bordeaux);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1rem;
    }
    .badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: #fff;
      line-height: 1;
    }
    .badge-label {
      font-size: .55rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.75);
      margin-top: .25rem;
    }
    .atelier-values {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: .9rem;
    }
    .atelier-val {
      display: flex;
      gap: .9rem;
      align-items: flex-start;
    }
    .atelier-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--bordeaux);
      margin-top: .65rem;
      flex-shrink: 0;
    }
    .atelier-val-text {
      font-size: .88rem;
      color: #3e3838;
      line-height: 1.7;
    }

    /* ── FB CTA ── */
    .fb-cta {
      background: var(--marine);
      padding: 5.5rem 0;
      text-align: center;
    }
    .fb-cta .section-label { color: rgba(255,255,255,.3); margin-bottom: 1rem; }
    .fb-cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      font-weight: 300;
      color: #fff;
      margin-bottom: .75rem;
    }
    .fb-cta-sub {
      font-size: .88rem;
      color: rgba(255,255,255,.45);
      margin-bottom: 2.75rem;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      padding: .95rem 2.25rem;
      font-family: 'Raleway', sans-serif;
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid transparent;
      transition: background .25s, color .25s, border-color .25s;
      cursor: pointer;
    }
    .btn-ivory {
      background: var(--ivory);
      color: var(--marine);
      border-color: var(--ivory);
    }
    .btn-ivory:hover {
      background: transparent;
      color: var(--ivory);
    }
    .btn-bordeaux {
      background: var(--bordeaux);
      color: #fff;
      border-color: var(--bordeaux);
    }
    .btn-bordeaux:hover {
      background: transparent;
      border-color: var(--bordeaux);
      color: var(--bordeaux);
    }

    /* ── CONTACT ── */
    #contact {
      padding: 7.5rem 0;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 6rem;
    }
    .contact-meta {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .contact-meta-item label {
      display: block;
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: .3rem;
    }
    .contact-meta-item span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .field { display: flex; flex-direction: column; gap: .35rem; }
    .field label {
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .field input,
    .field textarea,
    .field select {
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--rule);
      padding: .7rem 0;
      font-family: 'Raleway', sans-serif;
      font-size: .92rem;
      font-weight: 300;
      color: var(--black);
      outline: none;
      width: 100%;
      transition: border-color .2s;
      -webkit-appearance: none;
    }
    .field input:focus,
    .field textarea:focus,
    .field select:focus { border-bottom-color: var(--bordeaux); }
    .field textarea { resize: none; min-height: 96px; }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      padding: 2.5rem 3.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .footer-logo img {
      height: 48px;
      width: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: .9;
    }
    .footer-copy {
      font-size: .65rem;
      color: rgba(255,255,255,.28);
      letter-spacing: .08em;
    }

    /* ── BOUTON RETOUR EN HAUT ART NOUVEAU ── */
    #scroll-top {
      position: fixed;
      bottom: 2.5rem;
      right: 2rem;
      z-index: 500;
      width: 52px;
      height: 72px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .4s ease, transform .4s ease;
      text-decoration: none;
      background: none;
      border: none;
      padding: 0;
    }
    #scroll-top.visible {
      opacity: 1;
      transform: translateY(0);
    }
    #scroll-top svg {
      width: 52px;
      height: 72px;
      transition: transform .5s cubic-bezier(.16,1,.3,1), filter .3s;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
    }
    #scroll-top:hover svg {
      transform: translateY(-6px) scale(1.08);
      filter: drop-shadow(0 6px 18px rgba(122,23,40,.55));
    }
    #scroll-top .scroll-label {
      position: absolute;
      bottom: -1.4rem;
      font-size: .48rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(122,23,40,.6);
      white-space: nowrap;
      opacity: 1;
    }
    .footer-link {
      font-size: .65rem;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-link:hover { color: #fff; }

    /* ── REVEAL : visible par défaut, animé si JS actif ── */
    .r { opacity: 1; transform: none; }
    .js-ready .r {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
    }
    .js-ready .r.slide-left  { transform: translateX(-40px); }
    .js-ready .r.slide-right { transform: translateX(40px); }
    .js-ready .r.scale-in    { transform: scale(.93); }
    .js-ready .r.on { opacity: 1; transform: none; }
    .js-ready .r.d1 { transition-delay: .1s; }
    .js-ready .r.d2 { transition-delay: .2s; }
    .js-ready .r.d3 { transition-delay: .3s; }

    /* ── MOBILE ── */
    /* ── ANIMATIONS SCROLL SUPPLÉMENTAIRES ── */

    /* Line draw sur les titres */
    .line-target {
      position: relative;
      display: inline-block;
    }
    .line-target::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--bordeaux);
      transition: width 1s cubic-bezier(.16,1,.3,1) .3s;
    }
    .line-target.line-drawn::after { width: 30%; }
    #savoir-faire .line-target::after,
    .split.flip .line-target::after,
    .forge-section .line-target::after { background: rgba(122,23,40,.5); }

    /* Stagger amélioré pour les éléments r */
    .js-ready .r:nth-child(1) { transition-delay: 0s; }
    .js-ready .r:nth-child(2) { transition-delay: .08s; }
    .js-ready .r:nth-child(3) { transition-delay: .16s; }
    .js-ready .r:nth-child(4) { transition-delay: .24s; }

    /* Fade up plus dramatique */
    .js-ready .r {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
      filter: blur(2px);
    }
    .js-ready .r.on {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
    .js-ready .r.slide-left  { transform: translateX(-50px) translateY(0); filter: blur(2px); }
    .js-ready .r.slide-right { transform: translateX(50px)  translateY(0); filter: blur(2px); }
    .js-ready .r.scale-in    { transform: scale(.9); filter: blur(3px); }
    .js-ready .r.slide-left.on,
    .js-ready .r.slide-right.on,
    .js-ready .r.scale-in.on { transform: none; filter: blur(0); opacity: 1; }

    /* Metiers : transition opacité */
    .metier { transition: background .4s, opacity .4s; }

    /* Hover split : overlay bordeaux discret */
    .split-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(122,23,40,0);
      transition: background .5s;
      pointer-events: none;
    }
    .split-img:hover::after { background: rgba(122,23,40,.08); }
    .split-img { position: relative; }

    /* Badge num : transition chiffre */
    .badge-num { transition: transform .3s; }
    .atelier-img-wrap:hover .badge-num { transform: scale(1.1); }

    /* Forge photo : transition smooth pour le tilt */
    .forge-photo-inner img {
      transition: transform .4s cubic-bezier(.16,1,.3,1), filter .6s;
    }

    @media (max-width: 900px) {
      nav { padding: 1.25rem 1.5rem; }
      nav.stuck { padding: .85rem 1.5rem; }
      .nav-links { display: none; }
      .wrap { padding: 0 1.5rem; }

      .hero-body { padding: 0 1.5rem 3.5rem; }
      .hero-h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }

      #accueil-section { padding: 4.5rem 0; }
      .intro-grid { grid-template-columns: 1fr; gap: 3rem; }

      #savoir-faire { padding: 4.5rem 0 0; }
      .metier-inner { grid-template-columns: 44px 1fr; gap: 1rem; padding: 1.5rem; }
      .metier-line { display: none; }
      .metier-content { flex-direction: column; gap: .5rem; }
      .metier-name { white-space: normal; min-width: 0; font-size: 1.25rem; }

      .split { grid-template-columns: 1fr; min-height: auto; }
      .split-img { aspect-ratio: 4/3; }
      .split-content { padding: 2.5rem 1.5rem; }
      .split.flip .split-img { order: 0; }
      .split.flip .split-content { order: 1; }

      .forge-inner { grid-template-columns: 1fr; gap: 3rem; padding: 0 1.5rem; }
      .forge-section { padding: 4.5rem 0; }
      .forge-bg-num { font-size: 8rem; right: 0; }

      #atelier { padding: 4.5rem 0; }
      .atelier-grid { grid-template-columns: 1fr; gap: 3rem; }
      .atelier-badge { right: -.75rem; bottom: -.75rem; width: 96px; height: 96px; }

      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .form-row { grid-template-columns: 1fr; }

      footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
    }

/* ═══════════════════════════════════════════════════════════
   AJOUTS REFONTE MULTIPAGE (nav active, mini-hero, aperçu,
   footer façon WebKlein, modales légales)
   ═══════════════════════════════════════════════════════════ */

/* ── NAV : lien actif ── */
.nav-links a.active { color: #fff; }
.nav-links a.active::after { width: 100%; }
nav.stuck .nav-links a.active { color: var(--bordeaux); }

/* ── MINI-HERO BANDEAU (pages internes) ── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img {
  width: 100%; height: 115%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  will-change: transform;
}
.page-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(24,22,22,.80) 0%, rgba(24,22,22,.45) 60%, rgba(24,22,22,.25) 100%);
}
.page-hero-body {
  position: relative; z-index: 2;
  width: 100%; max-width: 1160px; margin: 0 auto;
  padding: 0 3.5rem 3.25rem;
}
.page-hero-eyebrow {
  font-size: .65rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--bordeaux);
  margin-bottom: 1rem;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp .8s .25s cubic-bezier(.16,1,.3,1) forwards;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.08; color: #fff;
  opacity: 0; transform: translateY(24px);
  animation: heroFadeUp .9s .4s cubic-bezier(.16,1,.3,1) forwards;
}
.page-hero-title em { font-style: italic; }
.page-hero-sub {
  margin-top: 1.1rem; max-width: 480px;
  font-size: .92rem; font-weight: 300; color: rgba(255,255,255,.72);
  line-height: 1.7;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp .8s .55s cubic-bezier(.16,1,.3,1) forwards;
}

/* ── APERÇU 3 UNIVERS (accueil) ── */
#apercu { padding: 7rem 0; }
.apercu-head { margin-bottom: 3.5rem; }
.apercu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.apercu-card { display: block; text-decoration: none; color: inherit; }
.apercu-img {
  aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1.5rem; position: relative;
}
.apercu-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.16,1,.3,1), filter .6s;
  filter: grayscale(15%);
}
.apercu-card:hover .apercu-img img { transform: scale(1.06); filter: grayscale(0%); }
.apercu-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(122,23,40,0); transition: background .5s; pointer-events: none;
}
.apercu-card:hover .apercu-img::after { background: rgba(122,23,40,.10); }
.apercu-label {
  display: block; font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--bordeaux); margin-bottom: .75rem;
}
.apercu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 300; line-height: 1.2; margin-bottom: 1rem;
}
.apercu-arrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--marine);
  transition: letter-spacing .3s, color .3s;
}
.apercu-card:hover .apercu-arrow { letter-spacing: .2em; color: var(--bordeaux); }

/* ── FOOTER (refonte façon WebKlein) ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,.6);
  padding: 4rem 0 2rem;
  display: block;
}
.foot-grid {
  max-width: 1160px; margin: 0 auto 2.75rem; padding: 0 3.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3.5rem;
}
.foot-brand img {
  height: 56px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .9; margin-bottom: 1rem;
}
.f-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: #fff; margin-bottom: .35rem; letter-spacing: .03em;
}
.f-tag {
  font-size: .65rem; color: rgba(255,255,255,.4); font-style: italic;
  margin-bottom: 1rem; letter-spacing: .04em;
}
.f-desc { font-size: .76rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 360px; }
.fc h4 {
  font-family: 'Raleway', sans-serif;
  font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.fc ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.fc ul li a {
  font-size: .8rem; color: rgba(255,255,255,.55); text-decoration: none;
  transition: color .3s, letter-spacing .3s; cursor: pointer;
}
.fc ul li a:hover { color: var(--bordeaux); letter-spacing: .02em; }
.fc-addr { margin-top: 1.1rem; font-size: .7rem; color: rgba(255,255,255,.3); line-height: 1.6; }
.foot-btm {
  max-width: 1160px; margin: 0 auto; padding: 1.5rem 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: .65rem; color: rgba(255,255,255,.3); letter-spacing: .06em;
}
.foot-btm a { color: inherit; text-decoration: underline; text-underline-offset: 2px; transition: color .3s; }
.foot-btm a:hover { color: rgba(255,255,255,.8); }
.foot-credit { font-size: .58rem; opacity: .55; }

/* ── MODALES LÉGALES ── */
.legal-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.6); align-items: center; justify-content: center; padding: 1.5rem;
}
.legal-modal-content {
  background: var(--ivory); color: var(--black);
  max-width: 720px; width: 100%; max-height: 85vh; overflow-y: auto;
  padding: 2.75rem 2.25rem; position: relative;
  font-family: 'Raleway', sans-serif; font-size: .9rem; line-height: 1.7;
}
.legal-modal-content h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 1.9rem; margin: 0 0 1.5rem; color: var(--black);
}
.legal-modal-content h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 1.25rem; margin: 1.8rem 0 .5rem; color: var(--bordeaux);
}
.legal-modal-content p { margin: .5rem 0; }
.legal-modal-content ul { margin: .5rem 0; padding-left: 1.4rem; }
.legal-modal-content li { margin: .3rem 0; list-style: disc; }
.legal-modal-content a { color: var(--marine); }
.legal-close {
  position: absolute; top: 1rem; right: 1.2rem; background: none; border: none;
  font-size: 1.9rem; cursor: pointer; color: var(--gray); line-height: 1; padding: .3rem;
}
.legal-close:hover { color: var(--bordeaux); }

/* ── RESPONSIVE (ajouts) ── */
@media (max-width: 900px) {
  #apercu { padding: 4.5rem 0; }
  .apercu-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero { height: 44vh; min-height: 280px; }
  .page-hero-body { padding: 0 1.5rem 2.5rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 2.25rem; padding: 0 1.5rem; }
  .foot-btm { flex-direction: column; gap: .6rem; text-align: center; padding: 1.5rem 1.5rem 0; }
  .legal-modal-content { padding: 1.75rem 1.3rem; }
  .legal-modal-content h2 { font-size: 1.5rem; }
}

/* ═══ MENU MOBILE (burger) + nettoyage mobile ═══ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px; margin: 0;
  background: none; border: none; cursor: pointer;
  z-index: 210;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
nav.stuck .nav-burger span { background: var(--black); }
nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .nav-burger span:nth-child(2) { opacity: 0; }
nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-burger { display: flex; }

  /* La barre "Découvrir" du hero se superposait sur mobile : on la retire */
  .scroll-cue { display: none; }

  /* Le menu devient un panneau déroulant plein largeur */
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(24,22,22,.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.08);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .4s ease, opacity .3s ease;
  }
  nav.stuck .nav-links { background: rgba(245,240,234,.98); }
  nav.open .nav-links { max-height: 80vh; opacity: 1; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .8rem; letter-spacing: .16em;
  }
  nav.stuck .nav-links a { color: var(--black); border-bottom-color: rgba(0,0,0,.06); }
  .nav-links a.fb { opacity: .85; }
}
