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

    :root {
      --dark:   #0c0c0c;
      --dark2:  #141414;
      --dark3:  #1a1a1a;
      --gold:   #c8963e;
      --gold2:  #d4a843;
      --white:  #ffffff;
      --muted:  #888888;
      --muted2: #444444;
      --serif:  'Playfair Display', Georgia, serif;
      --sans:   'Inter', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ── LANGUAGE SYSTEM ── */
    body.lang-en [data-fr] { display: none !important; }
    body.lang-fr [data-en] { display: none !important; }
    body.lang-en [data-fr-i] { display: none !important; }
    body.lang-fr [data-en-i] { display: none !important; }

    /* ── NAVIGATION ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(12,12,12,.97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(200,150,62,.12);
      height: 68px;
      display: flex; align-items: center;
      padding: 0 4%;
      gap: 2rem;
    }

    .nav-logo {
      display: flex; align-items: center; gap: .625rem;
      text-decoration: none; color: var(--white);
      flex-shrink: 0;
    }
    .nav-logo svg { width: 38px; height: 38px; }
    .nav-logo-mark { height: 40px; width: auto; display: block; }
    .nav-logo-text { font-size: 1.1rem; letter-spacing: .04em; color: #c8963e; }

    .nav-links {
      display: flex; align-items: center; gap: .1rem;
      list-style: none; margin-left: auto;
    }
    .nav-links a {
      color: #ccc; text-decoration: none;
      font-size: .68rem; letter-spacing: .12em; font-weight: 500;
      text-transform: uppercase; padding: .45rem .7rem;
      transition: color .25s; white-space: nowrap;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--gold); }

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

    /* ── LUXURY LANGUAGE SWITCHER ── */
    .lang-switch {
      display: flex; align-items: center;
      border: 1px solid rgba(200,150,62,.3);
      border-radius: 3px;
      overflow: hidden;
      background: rgba(200,150,62,.04);
    }
    .lang-switch-btn {
      background: none; border: none; cursor: pointer;
      font-family: var(--sans); font-size: .62rem;
      letter-spacing: .14em; font-weight: 600;
      color: var(--muted); padding: .32rem .62rem;
      transition: background .2s, color .2s;
      text-transform: uppercase;
    }
    .lang-switch-btn.on {
      background: var(--gold); color: var(--dark);
    }
    .lang-switch-btn:not(.on):hover { color: var(--gold); }
    .lang-switch-divider {
      width: 1px; height: 16px;
      background: rgba(200,150,62,.3); flex-shrink: 0;
    }

    /* ── HAMBURGER ── */
    .nav-burger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; width: 36px; height: 36px;
      background: none; border: 1px solid rgba(200,150,62,.3);
      border-radius: 3px; cursor: pointer; padding: 8px 7px;
    }
    .nav-burger span {
      display: block; height: 1.5px; border-radius: 2px;
      background: var(--gold); transition: transform .3s, opacity .3s;
      transform-origin: center;
    }
    .nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── MOBILE DRAWER ── */
    .mobile-menu {
      position: fixed; top: 68px; right: 0; bottom: 0;
      width: min(320px, 85vw);
      background: rgba(10,10,8,.98);
      backdrop-filter: blur(20px);
      border-left: 1px solid rgba(200,150,62,.15);
      z-index: 999;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      display: flex; flex-direction: column;
      padding: 2.5rem 2rem;
      gap: 2rem;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
    .mobile-menu ul a {
      display: block; padding: .9rem 0;
      color: #ccc; text-decoration: none;
      font-size: .78rem; letter-spacing: .16em; font-weight: 500;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(255,255,255,.05);
      transition: color .2s, padding-left .2s;
    }
    .mobile-menu ul a:hover { color: var(--gold); padding-left: .5rem; }
    .mobile-menu-bottom {
      margin-top: auto;
      display: flex; flex-direction: column; align-items: flex-end; gap: 1rem;
    }
    .mobile-menu .btn-gold { font-size: .65rem; align-self: stretch; justify-content: center; }
    .mobile-menu-overlay {
      display: none; position: fixed; inset: 0; z-index: 998;
      background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
    }
    .mobile-menu-overlay.open { display: block; }

    .btn-nav {
      border: 1px solid var(--gold); color: var(--gold);
      padding: .48rem 1.15rem; font-size: .62rem;
      letter-spacing: .12em; font-weight: 700; text-transform: uppercase;
      background: transparent; cursor: pointer; text-decoration: none;
      font-family: var(--sans); transition: all .25s; white-space: nowrap;
    }
    .btn-nav:hover { background: var(--gold); color: var(--dark); }

    /* ── BUTTONS ── */
    .btn-gold {
      display: inline-flex; align-items: center; gap: .45rem;
      background: var(--gold); color: var(--dark);
      border: none; padding: .875rem 1.75rem;
      font-size: .68rem; letter-spacing: .13em; font-weight: 700;
      text-transform: uppercase; cursor: pointer; text-decoration: none;
      font-family: var(--sans); transition: all .25s; white-space: nowrap;
    }
    .btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: .45rem;
      background: transparent; color: var(--white);
      border: 1px solid rgba(255,255,255,.35);
      padding: .875rem 1.75rem;
      font-size: .68rem; letter-spacing: .13em; font-weight: 600;
      text-transform: uppercase; cursor: pointer; text-decoration: none;
      font-family: var(--sans); transition: all .25s; white-space: nowrap;
    }
    .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.05); }

    /* ── HERO ── */
    .hero {
      /*min-height: 100vh;*/
      background: linear-gradient(150deg, #0e0e09 0%, #1b1a0f 45%, #0e0e09 100%);
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem 7rem 4rem 6rem;
      gap: 3rem; position: relative; overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 72% 48%, rgba(200,150,62,.05) 0%, transparent 68%);
      pointer-events: none;
    }

    .hero-content { position: relative; z-index: 3; max-width: 560px; }

    .hero-eyebrow {
      font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.1rem; font-weight: 500;
      text-wrap: balance;
    }

    .hero-heading {
      font-family: var(--serif);
      font-size: clamp(2.4rem, 3.8vw, 3.4rem);
      font-weight: 700; line-height: 1.15; margin-bottom: .9rem;
    }
    .hero-heading .gold { color: var(--gold); display: block; }

    .hero-divider { width: 48px; height: 2px; background: var(--gold); margin: 1.4rem 0; }

    .hero-desc {
      color: #bbb; font-size: .875rem; line-height: 1.85;
      max-width: 460px; margin-bottom: 2rem;
    }

    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; align-items: flex-start; }
    .hero-cta-wrap { display: flex; flex-direction: column; gap: .5rem; }
    .cta-micro { font-size: .68rem; color: rgba(200,150,62,.7); letter-spacing: .02em; text-wrap: balance; max-width: 22ch; }

    /* Ripple effect on gold CTA */
    .ripple { position: relative; overflow: hidden; }
    .ripple::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle, rgba(255,255,255,.25) 0%, transparent 70%);
      opacity: 0; transform: scale(0);
      transition: transform .5s ease, opacity .5s ease;
      border-radius: inherit;
    }
    .ripple:active::after { transform: scale(2.5); opacity: 1; transition: 0s; }

    .hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
    .trust-i { display: flex; align-items: center; gap: .625rem; }
    .trust-i svg { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; }
    .trust-i strong { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .04em; }
    .trust-i span { font-size: .63rem; color: var(--muted); }

    /* Hero image — whole statue visible, edges melted via an image mask (no seam) */
    .hero-img-col {
      position: absolute; top: 0; right: 0; bottom: 0;
      width: 64%; z-index: 0;
      display: flex; align-items: center; justify-content: flex-end;
    }

    .hero-img-wrap { width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: flex-end; }


    .hero-photo {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 42%;
      display: block;
      /* fade the image itself into the background — left + bottom + top */
      -webkit-mask-image:
        linear-gradient(to right,  transparent 0%, rgba(0,0,0,.25) 14%, #000 44%),
        linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
      -webkit-mask-composite: source-in;
              mask-image:
        linear-gradient(to right,  transparent 0%, rgba(0,0,0,.25) 14%, #000 44%),
        linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
              mask-composite: intersect;
    }

    /* Placeholder when no image supplied */
    .hero-photo-ph {
      width: 100%; min-height: 520px;
      background: linear-gradient(160deg, #1e1d12 0%, #0e0d08 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .hero-photo-ph .ph-label {
      color: #2a2a18; font-size: .72rem; text-align: center; z-index: 1;
    }

    /* ── TORN DIVIDER ── */
    .torn-down { line-height: 0; overflow: hidden; }
    .torn-down svg { display: block; width: 100%; }

    /* ── HOW IT WORKS ── */
    .how {
      position: relative;
      padding: 2rem 6%;
      text-align: center;
      background:
        linear-gradient(180deg, rgba(8,7,4,.65) 0%, rgba(10,9,5,.55) 50%, rgba(8,7,4,.68) 100%),
        url('/images/dark-rock-wall-seamless-texture-free.jpg') center/cover;
      overflow: hidden;
    }
    .how::after {
      content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background: radial-gradient(ellipse 70% 40% at 50% -5%, rgba(200,150,62,.12), transparent 65%);
    }

    /* ── GRAIN / PAPER TEXTURE on dark bands ── */
    .bond, .testis, .newsletter, .trust-bar { position: relative; }
    .bond::before, .testis::before,
    .newsletter::before, .trust-bar::before {
      content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      opacity: .05; mix-blend-mode: overlay;
    }
    /* keep section content above texture/pseudo layers */
    .how > *, .bond > *, .testis > *, .newsletter > *, .trust-bar > * { position: relative; z-index: 1; }

    .sec-paw { display: flex; justify-content: center; margin-bottom: .9rem; }
    .sec-paw svg { width: 22px; height: 22px; color: var(--gold); opacity: .7; }

    .sec-title {
      font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.2rem);
      color: var(--gold); margin-bottom: .5rem; letter-spacing: .01em;
    }
    .sec-sub { font-size: .82rem; color: var(--muted); margin-bottom: 3.5rem; letter-spacing: .08em; text-transform: uppercase; }

    .steps {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
      position: relative; max-width: 1160px; margin: 0 auto;
    }

    .step {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(200,150,62,.18);
      border-top: 2px solid rgba(200,150,62,.65);
      border-radius: 12px;
      padding: 2.2rem 1.5rem 2rem;
      display: flex; flex-direction: column; align-items: center; gap: .85rem;
      position: relative;
      transition: transform .25s, border-color .25s, box-shadow .25s;
      backdrop-filter: blur(2px);
    }
    .step:hover {
      transform: translateY(-4px);
      border-color: rgba(200,150,62,.45);
      box-shadow: 0 16px 40px rgba(0,0,0,.55), 0 0 0 1px rgba(200,150,62,.1);
    }

    .step-num {
      position: absolute; top: 1.1rem; right: 1.3rem;
      font-family: var(--serif); font-size: 1.8rem; font-weight: 700;
      color: rgba(200,150,62,.55); line-height: 1;
    }

    .step-circle {
      width: 72px; height: 72px; border-radius: 50%;
      border: 1.5px solid rgba(200,150,62,.5);
      background: radial-gradient(circle at 35% 35%, rgba(200,150,62,.12), rgba(0,0,0,.4));
      box-shadow: 0 0 0 6px rgba(200,150,62,.05), inset 0 1px 0 rgba(200,150,62,.2);
      display: flex; align-items: center; justify-content: center;
    }
    .step-circle svg { width: 30px; height: 30px; color: var(--gold); }

    .step-title { font-size: .9rem; font-weight: 700; color: var(--white); letter-spacing: .03em; text-wrap: balance; }
    .step-desc  { font-size: .77rem; color: var(--muted); line-height: 1.75; max-width: 185px; text-align: center; }

    /* Step 4 artisan highlight */
    .step-artisan {
      border-top-color: var(--gold);
      background: rgba(200,150,62,.07);
      box-shadow: 0 0 0 1px rgba(200,150,62,.18), 0 8px 32px rgba(200,150,62,.08);
    }
    .artisan-badge {
      position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%);
      background: var(--gold); color: var(--dark);
      font-size: .58rem; font-weight: 700; letter-spacing: .14em;
      padding: .18rem .65rem; border-radius: 20px; white-space: nowrap;
    }
    .step-circle-gold {
      background: radial-gradient(circle at 35% 35%, rgba(200,150,62,.35), rgba(0,0,0,.5)) !important;
      border-color: var(--gold) !important;
      box-shadow: 0 0 0 8px rgba(200,150,62,.1), 0 0 20px rgba(200,150,62,.2) !important;
    }
    .step-craft-img {
      width: 100%; height: 72px; object-fit: cover; border-radius: 6px;
      margin-top: .5rem; opacity: .85;
    }

    /* ── BOND ── */
    .bond { background: var(--dark); padding: 2.5rem 6%; }
    .bond-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4.5rem; align-items: center; max-width: 1200px; margin: 0 auto;
    }

    .bond-eyebrow {
      font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: .8rem;
    }
    .bond-heading {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 2.8vw, 2.6rem);
      font-weight: 700; line-height: 1.2; margin-bottom: 1.1rem;
    }
    .bond-heading .gold { color: var(--gold); }
    .bond-desc { font-size: .875rem; color: #bbb; line-height: 1.85; margin-bottom: 2rem; }

    .bond-features { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
    .bond-feat { display: flex; align-items: flex-start; gap: .875rem; }
    .feat-icon {
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid rgba(200,150,62,.28);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .feat-icon svg { width: 16px; height: 16px; color: var(--gold); }
    .feat-text strong { display: block; font-size: .8rem; font-weight: 600; margin-bottom: .18rem; }
    .feat-text span   { font-size: .74rem; color: var(--muted); }

    /* Bond images */
    .bond-imgs {
      display: grid; grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr; gap: .6rem; height: 500px;
    }
    .bond-imgs .main { grid-row: 1 / 3; }
    .img-ph {
      width: 100%; height: 100%;
      background: linear-gradient(145deg, #1c1b10, #0e0d08);
      display: flex; align-items: center; justify-content: center;
      color: #2a2a18; font-size: .7rem; text-align: center; padding: 1rem;
    }
    .bond-imgs img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* Slot with graceful fallback label when image missing */
    .ph-slot { position: relative; overflow: hidden;
      background: linear-gradient(145deg, #1c1b10, #0e0d08); }
    .ph-slot::after {
      content: attr(data-label); position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      color: #2a2a18; font-size: .7rem; text-align: center; padding: 1rem; z-index: 0;
    }
    .ph-slot img { position: relative; z-index: 1; }

    /* ── TESTIMONIALS ── */
    .testis {
      background: var(--dark2); padding: 2.5rem 1% 1.5rem;
      position: relative; overflow: hidden;
    }

    .testis-dog-side {
      position: absolute; left: 0; top: 0; bottom: 0; width: 260px;
      background: linear-gradient(90deg, #1c1b10 60%, transparent);
      z-index: 0;
    }
    /* Photo behind left side — bleeds in and fades to the right */
    .testis-dog-photo {
      position: absolute; left: 0; top: 0; bottom: 0; width: 440px;
      object-fit: cover; object-position: center; z-index: 0;
      -webkit-mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 100%);
              mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 100%);
    }
    .testis-dog-ph {
      position: absolute; left: 0; top: 0; bottom: 0; width: 380px;
      background: linear-gradient(120deg, #1c1b10, #0e0d08 70%);
      opacity: .5; z-index: 0;
      -webkit-mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 100%);
              mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 100%);
    }

    .testis-head {
      text-align: center; margin-bottom: 3rem; position: relative; z-index: 1;
    }

    .testi-row {
      display: grid; grid-template-columns: 44px 1fr 44px;
      align-items: center; gap: 1.5rem;
      max-width: 780px; margin: 0 auto;
      position: relative; z-index: 1;
    }

    .testi-arr {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid rgba(200,150,62,.35);
      background: transparent; color: var(--gold);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; line-height: 1; transition: all .25s; flex-shrink: 0;
    }
    .testi-arr:hover { background: rgba(200,150,62,.12); border-color: var(--gold); }

    .testi-body { text-align: center; }

    .quote-mark {
      display: block; font-size: 4.5rem; color: var(--gold);
      line-height: .55;  font-family: Georgia, serif;
    }

    /* Slides: hidden via opacity/height so container height stays fixed */
    .testi-slide {
      overflow: hidden;
      max-height: 0; opacity: 0; pointer-events: none;
      transition: opacity .4s ease;
    }
    .testi-slide.on {
      max-height: 500px; opacity: 1; pointer-events: auto;
    }

    .testi-text {
      font-size: .94rem; line-height: 1.9; color: #ddd;
      font-style: italic; margin-bottom: 1.4rem;
    }
    .testi-author { font-size: .8rem; color: var(--muted); margin-bottom: .4rem; }
    .testi-stars  { color: var(--gold); font-size: 1rem; letter-spacing: .15em; margin-bottom: 1.4rem; }

    .testi-dots { display: flex; justify-content: center; gap: .5rem; }
    .t-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--muted2); border: none; cursor: pointer; transition: background .25s;
    }
    .t-dot.on { background: var(--gold); }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--dark3);
      border-top: 1px solid rgba(200,150,62,.1);
      border-bottom: 1px solid rgba(200,150,62,.1);
      padding: 2.5rem 6%;
    }
    .trust-bar-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 2rem; max-width: 1100px; margin: 0 auto;
    }
    .tb { display: flex; align-items: flex-start; gap: 1rem; }
    /* vertical divider lines between items (mockup detail) */
    .tb:not(:last-child) { border-right: 1px solid rgba(200,150,62,.14); padding-right: 1.75rem; }
    .tb svg { width: 42px; height: 42px; color: var(--gold); flex-shrink: 0; }
    .tb strong { display: block; font-size: .8rem; font-weight: 600; margin-bottom: .22rem; }
    .tb span   { font-size: .74rem; color: var(--muted); line-height: 1.5; }

    /* ── NEWSLETTER ── */
    .newsletter {
      background: var(--dark); padding: 2.5rem 6%;
      border-top: 1px solid rgba(200,150,62,.07);
      overflow: hidden;
    }
    /* faded photo background on the left (e.g. a close-up eye), like the mockup */
    .nl-bg {
      position: absolute; left: 0; top: 0; bottom: 0; width: 350px;
      object-fit: cover; object-position: center; z-index: 0;
      -webkit-mask-image: linear-gradient(to right, #000 0%, #000 30%, transparent 95%);
              mask-image: linear-gradient(to right, #000 0%, #000 30%, transparent 95%);
    }
    .nl-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: center; max-width: 960px; margin: 0 auto;
    }
    .nl-inner .sec-title { color: var(--white); text-align: left; margin-bottom: .6rem; }
    .nl-inner p { font-size: .84rem; color: var(--muted); line-height: 1.75; }

    .nl-form { display: flex; }
    .nl-form input {
      flex: 1; background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.14); border-right: none;
      padding: .875rem 1.2rem; color: var(--white);
      font-family: var(--sans); font-size: .875rem; outline: none;
    }
    .nl-form input::placeholder { color: var(--muted); }
    .nl-form input:focus { border-color: rgba(200,150,62,.4); background: rgba(255,255,255,.09); }
    .nl-form button {
      background: var(--gold); color: var(--dark); border: none;
      padding: .875rem 1.4rem; font-size: .62rem; letter-spacing: .13em;
      font-weight: 700; text-transform: uppercase; cursor: pointer;
      font-family: var(--sans); white-space: nowrap;
      display: flex; align-items: center; gap: .35rem; transition: background .25s;
    }
    .nl-form button:hover { background: var(--gold2); }

    /* ── FOOTER ── */
    .footer {
      background: #080808;
      border-top: 1px solid rgba(200,150,62,.07);
      padding: 4.5rem 6% 2rem;
    }
    .footer-top {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr;
      gap: 3rem; margin-bottom: 3rem;
    }

    .ft-brand-logo { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
    .ft-brand-logo svg { width: 34px; height: 34px; }
    .ft-brand-logo span { font-size: .74rem; color: var(--white); }
    .ft-logo-img { width: 200px; max-width: 70%; height: auto; display: block; opacity: .92; }
    .ft-tagline { font-size: .78rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.1rem; }

    .ft-socials { display: flex; gap: .625rem; }
    .ft-social {
      width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.15);
      border-radius: 2px; background: transparent; color: var(--muted);
      display: flex; align-items: center; justify-content: center;
      font-size: .74rem; cursor: pointer; transition: all .25s; text-decoration: none;
    }
    .ft-social:hover { border-color: var(--gold); color: var(--gold); }

    .ft-col h4 {
      font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
      color: var(--white); margin-bottom: 1.2rem; font-weight: 700;
    }
    .ft-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
    .ft-col ul a { font-size: .78rem; color: var(--muted); text-decoration: none; transition: color .25s; }
    .ft-col ul a:hover { color: var(--gold); }
    .ft-cat-list { gap: .45rem !important; }
    .ft-cat-link { display: flex !important; align-items: center; gap: .5rem; }
    .ft-cat-icon { font-size: .9rem; }
    .ft-order-cta {
      display: inline-block; margin-top: 1rem;
      font-size: .65rem; font-weight: 700; letter-spacing: .1em;
      color: var(--gold); text-decoration: none; text-transform: uppercase;
      border-bottom: 1px solid rgba(200,150,62,.35); padding-bottom: .15rem;
      transition: border-color .2s, color .2s;
    }
    .ft-order-cta:hover { border-color: var(--gold); color: var(--gold2); }

    .ft-cta { border: 1px solid var(--gold); padding: 1.5rem; }
    .ft-cta-img {
      width: 100%; height: 110px; object-fit: cover; border-radius: 4px;
      margin-bottom: 1rem; display: block;
    }
    .ft-cta h4 {
      font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--gold); margin-bottom: .7rem; font-weight: 700;
    }
    .ft-cta p { font-size: .78rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.2rem; }
    .ft-cta .btn-gold { width: 100%; justify-content: center; font-size: .62rem; }

    .footer-bot {
      border-top: 1px solid rgba(255,255,255,.06);
      padding-top: 1.5rem;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem;
    }
    .footer-bot p { font-size: .69rem; color: var(--muted2); }
    .footer-bot .heart { color: #e44; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .footer-top { grid-template-columns: 1fr 1fr 1fr; }
      .ft-cta { grid-column: 1 / -1; max-width: 420px; }
      .steps { grid-template-columns: repeat(2,1fr); }
      .trust-bar-grid { grid-template-columns: repeat(2,1fr); }
      .tb:not(:last-child) { border-right: none; padding-right: 0; }
    }
    @media (max-width: 1080px) {
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .nav-right { margin-left: auto; }
    }
    @media (max-width: 800px) {
      .hero { grid-template-columns: 1fr; padding: 6rem 5% 3rem; }
      .hero-img-col { display: none; }
      .bond-inner { grid-template-columns: 1fr; }
      .nl-inner { grid-template-columns: 1fr; }
      .nl-bg { display: none; }
      .testi-arr { display: none; }
      .testi-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px) {
      .steps { grid-template-columns: 1fr; }
      .trust-bar-grid { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .hero-trust { flex-direction: column; gap: 1rem; }
      .footer-top { grid-template-columns: 1fr; }
    }

    /* ── FR DENSITY GUARD — sub-390px viewports ── */
    /* French text runs 15–20% longer; at narrow widths reduce size just enough
       to prevent dense text walls without breaking the visual rhythm. */
    @media (max-width: 390px) {
      body.lang-fr .step-desc  { font-size: .73rem; max-width: 210px; }
      body.lang-fr .hero-desc  { font-size: .82rem; }
      body.lang-fr .bond-desc  { font-size: .82rem; }
      body.lang-fr .sec-sub    { font-size: .75rem; letter-spacing: .05em; }
      body.lang-fr .tb span    { font-size: .7rem; }
    }

    /* Orphan prevention for FR long-form blocks — text-wrap:pretty keeps
       the last line from being a single dangling word */
    body.lang-fr .step-desc,
    body.lang-fr .hero-desc,
    body.lang-fr .bond-desc,
    body.lang-fr .testi-quote { text-wrap: pretty; }

    /* ════════════ ORDER INTAKE ════════════ */
    .order {
      background:
        linear-gradient(180deg, rgba(10,9,5,.92), rgba(8,7,4,.96)),
        radial-gradient(ellipse at top, rgba(200,150,62,.10), transparent 60%);
      padding: 5.5rem 6%; position: relative;
    }
    .order-inner { max-width: 720px; margin: 0 auto; text-align: center; }
    .order-eyebrow {
      font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: .9rem; font-weight: 600; text-wrap: balance;
    }
    .order-title {
      font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
      color: var(--white); margin-bottom: .8rem; line-height: 1.2;
    }
    .order-sub {
      font-size: .9rem; color: var(--muted); line-height: 1.7;
      max-width: 540px; margin: 0 auto 2.6rem; text-wrap: pretty;
    }
    .order-form { text-align: left; display: flex; flex-direction: column; gap: 1.1rem; }
    .of-row { display: flex; gap: 1.1rem; flex-wrap: wrap; }
    .of-row .of-field { flex: 1; min-width: 220px; }
    .of-field { display: flex; flex-direction: column; gap: .4rem; }
    .of-field > span {
      font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
      color: rgba(200,150,62,.85); font-weight: 600;
    }
    .of-field input, .of-field select, .of-field textarea {
      background: rgba(255,255,255,.05); border: 1px solid rgba(200,150,62,.22);
      border-radius: 6px; padding: .8rem .9rem; color: var(--white);
      font-family: var(--sans); font-size: .9rem; transition: border-color .25s, background .25s;
    }
    .of-field input:focus, .of-field select:focus, .of-field textarea:focus {
      outline: none; border-color: rgba(200,150,62,.6); background: rgba(255,255,255,.08);
    }
    .of-field textarea { resize: vertical; min-height: 80px; }
    .of-field select option { background: #141210; color: var(--white); }
    .of-drop {
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      border: 2px dashed rgba(200,150,62,.35); border-radius: 10px;
      padding: 1.6rem 1.2rem; cursor: pointer; text-align: center;
      transition: border-color .25s, background .25s;
    }
    .of-drop:hover { border-color: var(--gold); background: rgba(200,150,62,.05); }
    .of-drop input { display: none; }
    .of-drop-text { font-size: .82rem; color: var(--muted); }
    .of-drop-list { font-size: .78rem; color: var(--gold); font-weight: 600; min-height: 1em; }
    #of-submit { align-self: center; margin-top: .4rem; border: none; }
    #of-submit:disabled { opacity: .6; cursor: progress; }
    .of-status { text-align: center; font-size: .85rem; min-height: 1.2em; margin-top: .2rem; }
    .of-status.ok  { color: #7ec77e; }
    .of-status.err { color: #e07a6a; }
    @media (max-width: 520px) {
      .order { padding: 4rem 5%; }
      .of-row { flex-direction: column; gap: 1.1rem; }
    }
