
  /* ─── VARIABLES ─────────────────────────────────────── */
  :root {
    --rose:        #E8A0A8;
    --rose-deep:   #C4687A;
    --rose-pale:   #F5D5DA;
    --rose-blush:  #FDF0F2;
    --gold:        #C9973A;
    --gold-light:  #E8C27A;
    --gold-pale:   #F7EDD8;
    --brown:       #3D1F10;
    --brown-mid:   #7A3D20;
    --brown-warm:  #B07850;
    --beige:       #F2E8DC;
    --beige-deep:  #E0CCBA;
    --cream:       #FBF6F0;
    --white:       #FFFFFF;
    --text-dark:   #2A1408;
    --text-mid:    #6B3D2A;
    --text-light:  #A07060;
    --ff-serif:    'Cormorant Garamond', Georgia, serif;
    --ff-display:  'Playfair Display', Georgia, serif;
    --ff-sans:     'DM Sans', sans-serif;
  }

  /* ─── RESET & BASE ──────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--ff-sans);
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─────────────────────────────────────── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--beige); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

  /* ─── NOISE TEXTURE OVERLAY ─────────────────────────── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1000; opacity: 0.4;
  }

  /* ─── NAV ───────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 60px;
    height: 80px;
    background: rgba(251,246,240,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,151,58,0.15);
    transition: all 0.4s;
  }
  nav.scrolled {
    height: 64px;
    background: rgba(251,246,240,0.95);
    box-shadow: 0 4px 30px rgba(61,31,16,0.08);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 46px; height: 46px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(196,104,122,0.28);
    transition: transform 0.35s;
  }
  .nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .nav-logo:hover .nav-logo-icon { transform: scale(1.06); }
  nav.scrolled .nav-logo-icon { width: 40px; height: 40px; }
  .nav-logo-text {
    font-family: var(--ff-serif); font-size: 20px; font-weight: 600;
    color: var(--brown); letter-spacing: 0.02em;
    line-height: 1.1;
  }
  .nav-logo-sub {
    font-family: var(--ff-sans); font-size: 10px; font-weight: 300;
    color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase;
  }
  .nav-links {
    display: flex; align-items: center; gap: 40px; list-style: none;
  }
  .nav-links a {
    font-family: var(--ff-sans); font-size: 13px; font-weight: 400;
    color: var(--text-mid); text-decoration: none; letter-spacing: 0.05em;
    position: relative; padding-bottom: 2px;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--rose-deep);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--rose-deep); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--brown); color: var(--gold-light) !important;
    padding: 10px 24px; border-radius: 2px;
    font-size: 12px !important; letter-spacing: 0.1em !important;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--rose-deep) !important; transform: translateY(-1px); }
  .nav-cta::after { display: none !important; }

  /* ─── HERO ──────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }
  .hero-left {
    padding: 140px 60px 80px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 2;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-pale); border: 1px solid rgba(201,151,58,0.3);
    border-radius: 100px; padding: 6px 16px;
    font-size: 11px; font-weight: 500; color: var(--gold);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 32px; width: fit-content;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); animation: pulse 2s ease infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
  }
  .hero-title {
    font-family: var(--ff-serif); font-weight: 300;
    font-size: clamp(52px, 6vw, 88px); line-height: 1.0;
    color: var(--brown); margin-bottom: 8px;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  .hero-title em {
    font-style: italic; color: var(--rose-deep);
    display: block;
  }
  .hero-title-gold {
    font-family: var(--ff-serif); font-weight: 600;
    font-size: clamp(52px, 6vw, 88px); line-height: 1.0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--brown-warm) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero-sub {
    font-family: var(--ff-serif); font-size: 22px; font-weight: 300;
    color: var(--text-light); font-style: italic;
    margin: 20px 0 40px;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-desc {
    font-size: 15px; line-height: 1.75; color: var(--text-mid);
    max-width: 440px; margin-bottom: 48px;
    animation: fadeUp 0.8s 0.25s ease both;
  }
  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--rose-deep) 0%, var(--brown) 100%);
    color: var(--white); padding: 16px 32px; border-radius: 2px;
    font-family: var(--ff-sans); font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(196,104,122,0.3);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(196,104,122,0.4);
  }
  .btn-primary .arrow {
    width: 18px; height: 18px;
    border: 1.5px solid rgba(255,255,255,0.6); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; transition: transform 0.3s;
  }
  .btn-primary:hover .arrow { transform: translateX(3px); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--gold); color: var(--brown);
    padding: 15px 28px; border-radius: 2px;
    font-family: var(--ff-sans); font-size: 13px; font-weight: 400;
    letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
    transition: all 0.3s;
  }
  .btn-outline:hover {
    background: var(--gold); color: var(--white);
    box-shadow: 0 8px 20px rgba(201,151,58,0.3);
  }
  .hero-right {
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--rose-blush) 0%, var(--beige) 50%, var(--gold-pale) 100%);
  }
  .hero-illustration {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-circle-outer {
    width: min(480px, 80%); height: min(480px, 80%); border-radius: 50%;
    border: 1px solid rgba(201,151,58,0.2);
    position: absolute; animation: rotateSlow 40s linear infinite;
  }
  .hero-circle-mid {
    width: min(360px, 60%); height: min(360px, 60%); border-radius: 50%;
    border: 1.5px dashed rgba(196,104,122,0.25);
    position: absolute; animation: rotateSlow 25s linear infinite reverse;
  }
  .hero-circle-inner {
    width: min(260px, 44%); height: min(260px, 44%); border-radius: 50%;
    position: absolute; overflow: hidden;
    box-shadow: 0 20px 60px rgba(196,104,122,0.35);
    animation: floatY 5s ease-in-out infinite;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-circle-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @keyframes rotateSlow { to { transform: rotate(360deg); } }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
  }
  /* Orbiting dots */
  .orbit-dot {
    position: absolute; border-radius: 50%;
    background: var(--gold); box-shadow: 0 0 12px var(--gold);
  }
  .orbit-dot-1 { width: 12px; height: 12px; top: 12%; right: 22%; animation: floatY 3s 0.5s ease-in-out infinite; }
  .orbit-dot-2 { width: 8px;  height: 8px;  bottom: 20%; left: 18%; background: var(--rose); box-shadow: 0 0 10px var(--rose); animation: floatY 4s 1s ease-in-out infinite; }
  .orbit-dot-3 { width: 6px;  height: 6px;  top: 35%; left: 12%; background: var(--brown-warm); animation: floatY 3.5s ease-in-out infinite; }
  /* Floating cards */
  .stat-card {
    position: absolute; background: var(--white);
    border-radius: 12px; padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(61,31,16,0.12);
    border: 1px solid rgba(201,151,58,0.15);
  }
  .stat-card-1 { top: 18%; right: 8%; animation: floatY 4s 0.3s ease-in-out infinite; }
  .stat-card-2 { bottom: 22%; left: 6%; animation: floatY 5s 1.2s ease-in-out infinite; }
  .stat-val { font-family: var(--ff-serif); font-size: 28px; font-weight: 600; color: var(--rose-deep); line-height: 1; }
  .stat-lbl { font-size: 10px; color: var(--text-light); letter-spacing: 0.05em; margin-top: 4px; }
  /* Decorative lines */
  .hero-right::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  /* ─── STRIP ─────────────────────────────────────────── */
  .strip {
    background: var(--brown);
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: center;
    gap: 60px; overflow: hidden;
  }
  .strip-item {
    display: flex; align-items: center; gap: 12px;
    color: var(--beige-deep); font-size: 13px; font-weight: 300;
    letter-spacing: 0.05em; white-space: nowrap;
  }
  .strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  .strip-item span { color: var(--gold-light); font-weight: 500; }

  /* ─── SECTION HEADERS ───────────────────────────────── */
  .section-label {
    font-family: var(--ff-sans); font-size: 11px; font-weight: 500;
    color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase;
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
  }
  .section-label::before {
    content: ''; width: 32px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: var(--ff-serif); font-size: clamp(36px, 4vw, 56px);
    font-weight: 300; line-height: 1.1; color: var(--brown);
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--rose-deep); }
  .section-desc {
    font-size: 16px; line-height: 1.75; color: var(--text-mid);
    max-width: 520px;
  }

  /* ─── ABOUT / STATS ─────────────────────────────────── */
  .about {
    padding: 120px 60px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    background: var(--white);
    position: relative;
  }
  .about::before {
    content: '"';
    position: absolute; top: 40px; left: 50px;
    font-family: var(--ff-serif); font-size: 240px; font-weight: 300;
    color: var(--rose-pale); line-height: 1; pointer-events: none;
    z-index: 0;
  }
  .about-content { position: relative; z-index: 1; }
  .about-quote {
    font-family: var(--ff-serif); font-size: 24px; font-weight: 300;
    font-style: italic; line-height: 1.6; color: var(--brown-mid);
    border-left: 3px solid var(--rose);
    padding-left: 24px; margin: 32px 0;
  }
  .stats-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; background: var(--beige);
  }
  .stat-box {
    background: var(--white);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    position: relative; overflow: hidden;
  }
  .stat-box::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    transform: scaleX(0); transition: transform 0.3s;
  }
  .stat-box:hover { transform: translateY(-4px); background: var(--cream); }
  .stat-box:hover::before { transform: scaleX(1); }
  .stat-number {
    font-family: var(--ff-serif); font-size: 52px; font-weight: 300;
    color: var(--rose-deep); line-height: 1;
    background: linear-gradient(135deg, var(--rose-deep), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-unit { font-family: var(--ff-serif); font-size: 28px; }
  .stat-text { font-size: 12px; color: var(--text-light); letter-spacing: 0.08em; margin-top: 8px; text-transform: uppercase; }

  /* ─── SERVICES ──────────────────────────────────────── */
  .services {
    padding: 120px 60px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  }
  .services-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: end; margin-bottom: 80px;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: var(--white);
    border-radius: 4px; overflow: hidden;
    position: relative; cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
  }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(61,31,16,0.12);
    border-color: rgba(201,151,58,0.2);
  }
  .service-card-top {
    height: 180px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .service-card:nth-child(1) .service-card-top { background: linear-gradient(135deg, var(--rose-pale) 0%, var(--rose) 100%); }
  .service-card:nth-child(2) .service-card-top { background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%); }
  .service-card:nth-child(3) .service-card-top { background: linear-gradient(135deg, var(--beige) 0%, var(--brown-warm) 100%); }
  .service-card:nth-child(4) .service-card-top { background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%); }
  .service-card:nth-child(5) .service-card-top { background: linear-gradient(135deg, var(--rose-deep) 0%, var(--brown) 100%); }
  .service-card:nth-child(6) .service-card-top { background: linear-gradient(135deg, var(--gold) 0%, var(--rose-deep) 100%); }
  .ico { width: 100%; height: 100%; display: block; }
  .service-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    color: var(--brown);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  .service-icon .ico { width: 32px; height: 32px; }
  .service-card:hover .service-icon { transform: scale(1.08); }
  .service-badge {
    position: absolute; top: 14px; right: 14px;
    background: rgba(255,255,255,0.9); border-radius: 100px;
    padding: 4px 12px; font-size: 10px; font-weight: 500;
    color: var(--brown); letter-spacing: 0.08em;
  }
  .service-body { padding: 28px 24px; }
  .service-name {
    font-family: var(--ff-serif); font-size: 20px; font-weight: 600;
    color: var(--brown); margin-bottom: 10px; line-height: 1.2;
  }
  .service-desc {
    font-size: 13px; line-height: 1.7; color: var(--text-light);
    margin-bottom: 20px;
  }
  .service-price {
    font-family: var(--ff-serif); font-size: 18px; font-weight: 600;
    color: var(--rose-deep);
  }
  .service-price span { font-family: var(--ff-sans); font-size: 11px; color: var(--text-light); font-weight: 400; }

  /* ─── HOW IT WORKS ──────────────────────────────────── */
  .how {
    padding: 120px 60px;
    background: var(--brown);
    position: relative; overflow: hidden;
  }
  .how::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,151,58,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .how-header { text-align: center; margin-bottom: 80px; }
  .how-header .section-label { justify-content: center; }
  .how-header .section-label::before { display: none; }
  .how-header .section-title { color: var(--beige); }
  .how-header .section-title em { color: var(--gold-light); }
  .steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
  }
  .steps-grid::after {
    content: '';
    position: absolute; top: 52px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
  }
  .step {
    text-align: center; padding: 0 24px;
    position: relative; z-index: 1;
  }
  .step-number {
    width: 104px; height: 104px; border-radius: 50%;
    border: 1.5px solid rgba(201,151,58,0.4);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    background: rgba(201,151,58,0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
  }
  .step:hover .step-number {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(201,151,58,0.3);
  }
  .step-num-text {
    font-family: var(--ff-serif); font-size: 36px; font-weight: 300;
    color: var(--gold); transition: color 0.3s;
  }
  .step:hover .step-num-text { color: var(--brown); }
  .step-emoji {
    position: absolute; bottom: -6px; right: -6px;
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--brown); border: 1px solid rgba(201,151,58,0.45);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); transition: all 0.3s;
  }
  .step-emoji .ico { width: 19px; height: 19px; }
  .step:hover .step-emoji { background: var(--brown); border-color: var(--gold); color: var(--gold-light); }
  .step-title {
    font-family: var(--ff-serif); font-size: 18px; font-weight: 600;
    color: var(--beige); margin-bottom: 10px;
  }
  .step-desc { font-size: 13px; color: rgba(242,232,220,0.6); line-height: 1.65; }

  /* ─── TESTIMONIALS ──────────────────────────────────── */
  .testimonials {
    padding: 120px 60px;
    background: var(--white);
  }
  .testimonials-header { text-align: center; margin-bottom: 60px; }
  .testimonials-header .section-label { justify-content: center; }
  .testimonials-header .section-label::before { display: none; }
  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testi-card {
    background: var(--cream); border-radius: 4px; padding: 36px 28px;
    position: relative; border: 1px solid var(--beige-deep);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(61,31,16,0.08); }
  .testi-card:nth-child(2) {
    background: linear-gradient(160deg, var(--rose-blush) 0%, var(--white) 100%);
    border-color: rgba(196,104,122,0.2);
  }
  .testi-quote-icon {
    font-family: var(--ff-serif); font-size: 64px; font-weight: 300;
    color: var(--rose-pale); line-height: 0.8; margin-bottom: 16px;
    display: block;
  }
  .testi-text {
    font-family: var(--ff-serif); font-size: 16px; font-weight: 300;
    font-style: italic; line-height: 1.7; color: var(--text-mid);
    margin-bottom: 24px;
  }
  .testi-author {
    display: flex; align-items: center; gap: 12px;
  }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-serif); font-size: 18px; color: var(--white);
    font-weight: 600; flex-shrink: 0;
  }
  .testi-name { font-weight: 500; font-size: 14px; color: var(--brown); }
  .testi-role { font-size: 11px; color: var(--text-light); margin-top: 2px; }
  .stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 16px; }

  /* ─── PRICING / OFFRES ───────────────────────────────── */
  .pricing {
    padding: 120px 60px;
    background: linear-gradient(180deg, var(--beige) 0%, var(--rose-blush) 100%);
  }
  .pricing-header { text-align: center; margin-bottom: 80px; }
  .pricing-header .section-label { justify-content: center; }
  .pricing-header .section-label::before { display: none; }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; align-items: start;
  }
  .price-card {
    background: var(--white); border-radius: 4px; overflow: hidden;
    border: 1px solid var(--beige-deep);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(61,31,16,0.1); }
  .price-card.featured {
    background: linear-gradient(160deg, var(--brown) 0%, #5A2A15 100%);
    border-color: var(--gold);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(61,31,16,0.25);
  }
  .price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
  .price-head {
    padding: 32px 28px 24px;
    border-bottom: 1px solid var(--beige-deep);
  }
  .price-card.featured .price-head { border-color: rgba(201,151,58,0.2); }
  .price-tag {
    display: inline-block; font-size: 10px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
    background: var(--gold-pale); color: var(--gold);
  }
  .price-card.featured .price-tag { background: rgba(201,151,58,0.15); color: var(--gold-light); }
  .price-name {
    font-family: var(--ff-serif); font-size: 26px; font-weight: 600;
    color: var(--brown); margin-bottom: 8px;
  }
  .price-card.featured .price-name { color: var(--beige); }
  .price-val {
    display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px;
  }
  .price-amount {
    font-family: var(--ff-serif); font-size: 42px; font-weight: 300;
    color: var(--rose-deep); line-height: 1;
  }
  .price-card.featured .price-amount { color: var(--gold-light); }
  .price-currency { font-size: 14px; color: var(--text-light); align-self: flex-start; padding-top: 8px; }
  .price-card.featured .price-currency { color: rgba(242,232,220,0.6); }
  .price-period { font-size: 12px; color: var(--text-light); }
  .price-card.featured .price-period { color: rgba(242,232,220,0.5); }
  .price-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }
  .price-card.featured .price-desc { color: rgba(242,232,220,0.65); }
  .price-body { padding: 28px; }
  .price-features { list-style: none; }
  .price-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px; color: var(--text-mid);
    padding: 8px 0; border-bottom: 1px solid var(--beige);
  }
  .price-card.featured .price-features li { color: rgba(242,232,220,0.8); border-color: rgba(201,151,58,0.15); }
  .price-features li:last-child { border-bottom: none; }
  .check { color: var(--rose-deep); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
  .price-card.featured .check { color: var(--gold-light); }
  .price-foot { padding: 0 28px 28px; }
  .btn-price {
    display: block; width: 100%; text-align: center;
    padding: 14px; border-radius: 2px;
    font-family: var(--ff-sans); font-size: 12px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
    transition: all 0.3s; cursor: pointer; border: none;
  }
  .btn-price-outline {
    border: 1.5px solid var(--rose-deep); color: var(--rose-deep);
    background: transparent;
  }
  .btn-price-outline:hover { background: var(--rose-deep); color: var(--white); }
  .btn-price-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--brown-warm) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(201,151,58,0.35);
  }
  .btn-price-gold:hover { box-shadow: 0 12px 32px rgba(201,151,58,0.5); transform: translateY(-1px); }

  /* ─── CTA SECTION ───────────────────────────────────── */
  .cta-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 50%, #8B3A2A 100%);
    position: relative; overflow: hidden; text-align: center;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9973A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .cta-section .section-title { color: var(--beige); margin: 0 auto 20px; max-width: 700px; }
  .cta-section .section-title em { color: var(--gold-light); }
  .cta-desc { font-size: 16px; color: rgba(242,232,220,0.7); margin: 0 auto 48px; max-width: 500px; line-height: 1.7; }
  .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .cta-section .section-label { justify-content: center; color: rgba(201,151,58,0.8); }
  .cta-section .section-label::before { background: rgba(201,151,58,0.4); }

  /* ─── FOOTER ────────────────────────────────────────── */
  footer {
    background: var(--brown);
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(201,151,58,0.15);
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-brand {}
  .footer-logo { margin-bottom: 20px; }
  .footer-tagline {
    font-family: var(--ff-serif); font-size: 15px; font-weight: 300;
    font-style: italic; color: rgba(242,232,220,0.6); line-height: 1.6;
    margin-bottom: 24px; max-width: 280px;
  }
  .footer-social {
    display: flex; gap: 12px;
  }
  .social-btn {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(201,151,58,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; text-decoration: none;
    color: rgba(242,232,220,0.6);
    transition: all 0.3s;
  }
  .social-btn .ico { width: 18px; height: 18px; }
  .social-btn:hover {
    background: var(--gold); border-color: var(--gold);
    color: var(--brown); transform: translateY(-2px);
  }
  .footer-col h4 {
    font-family: var(--ff-sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-size: 13px; color: rgba(242,232,220,0.55); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--rose); }
  .footer-bottom {
    border-top: 1px solid rgba(201,151,58,0.1);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { font-size: 12px; color: rgba(242,232,220,0.3); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 12px; color: rgba(242,232,220,0.3); text-decoration: none; }
  .footer-legal a:hover { color: var(--gold); }

  /* ─── ANIMATIONS ────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  .reveal-delay-6 { transition-delay: 0.6s; }

  /* ─── RESPONSIVE ────────────────────────────────────── */
  /* ─── ENTREPRISES (B2B) ─────────────────────────────── */
  .biz { padding: 120px 60px; background: var(--beige); }
  .biz-header { max-width: 780px; margin: 0 auto 60px; text-align: center; }
  .biz-header .section-label { justify-content: center; }
  .biz-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px; max-width: 1200px; margin: 0 auto 48px;
  }
  .biz-card {
    background: var(--cream); border: 1px solid var(--beige-deep);
    border-radius: 20px; padding: 34px 28px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
  }
  .biz-card:hover {
    transform: translateY(-5px); border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(61,31,16,0.09);
  }
  .biz-ico {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-pale), var(--beige));
    border: 1px solid rgba(201,151,58,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--brown-mid); margin-bottom: 20px;
  }
  .biz-ico .ico { width: 24px; height: 24px; }
  .biz-name {
    font-family: var(--ff-serif); font-size: 21px; font-weight: 600;
    color: var(--brown); margin-bottom: 10px; line-height: 1.25;
  }
  .biz-desc { font-size: 13.5px; line-height: 1.75; color: var(--text-light); }
  .biz-cta { text-align: center; }
  .biz-note {
    max-width: 620px; margin: 0 auto 28px;
    font-size: 14px; line-height: 1.75; color: var(--text-mid);
  }

  /* ─── PAYMENT ───────────────────────────────────────── */
  .payment {
    padding: 100px 60px;
    background: var(--white);
    border-top: 1px solid rgba(201,151,58,0.15);
    text-align: center;
  }
  .pay-badges {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 16px; margin: 40px auto 24px; max-width: 760px;
  }
  .pay-badge {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 22px; border-radius: 14px;
    background: var(--cream);
    border: 1px solid var(--beige-deep);
    font-family: var(--ff-sans); font-size: 14px; font-weight: 500;
    color: var(--text-mid);
    transition: transform .25s, box-shadow .25s;
  }
  .pay-badge:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(61,31,16,0.08); }
  .pay-badge .pb-ico .ico { width: 18px; height: 18px; }
  .pay-badge .pb-ico {
    width: 34px; height: 34px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px; color: #fff;
  }
  .pay-note {
    max-width: 560px; margin: 0 auto;
    font-size: 14px; color: var(--text-light); line-height: 1.7;
  }
  .pay-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 32px; padding: 16px 32px; border-radius: 50px;
    background: #25D366; color: #fff; text-decoration: none;
    font-family: var(--ff-sans); font-weight: 500; font-size: 15px;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    line-height: 1;
    transition: transform .25s;
  }
  .pay-whatsapp .ico { width: 19px; height: 19px; }
  .pay-whatsapp:hover { transform: translateY(-2px); }

  @media (max-width: 900px) {
    .biz { padding: 80px 24px; }
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 400px; }
    .hero-left { padding: 100px 24px 60px; }
    .about, .services-header { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .testi-grid, .pricing-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .steps-grid::after { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about, .services, .how, .testimonials, .pricing, .cta-section, footer { padding: 80px 24px; }
    .strip { gap: 24px; flex-wrap: wrap; padding: 20px 24px; }
    .price-card.featured { transform: scale(1); }
  }

/* ═══════════════════════════════════════════════════════
   PAGES INTÉRIEURES — socle commun
   ═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 150px 60px 70px;
  background: linear-gradient(180deg, var(--rose-blush) 0%, var(--cream) 100%);
  text-align: center;
}
.page-hero .section-label { justify-content: center; }
.page-hero h1 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(34px, 5vw, 58px); line-height: 1.08;
  color: var(--brown); letter-spacing: -0.02em; margin-bottom: 18px;
}
.page-hero h1 em { font-style: italic; color: var(--rose-deep); }
.page-lead {
  max-width: 640px; margin: 0 auto; font-size: 16px;
  line-height: 1.8; color: var(--text-mid);
}
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 60px; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 60px; }
.sec { padding: 84px 0; }
.sec-alt { background: var(--white); }
.sec-beige { background: var(--beige); }

/* Prix bandeau */
.price-band {
  display: inline-flex; align-items: baseline; gap: 10px;
  background: var(--white); border: 1px solid var(--gold);
  border-radius: 100px; padding: 14px 32px; margin: 26px 0 8px;
  box-shadow: 0 8px 26px rgba(201,151,58,0.16);
}
.price-band .pb-amount {
  font-family: var(--ff-serif); font-size: 38px; font-weight: 600;
  color: var(--brown); line-height: 1;
}
.price-band .pb-cur { font-size: 14px; color: var(--gold); letter-spacing: .08em; }
.price-band .pb-per { font-size: 13px; color: var(--text-light); }
.price-sub { font-size: 13px; color: var(--text-light); margin-bottom: 30px; }

/* Grille de bénéfices */
.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px; margin-top: 44px;
}
.feat {
  background: var(--cream); border: 1px solid var(--beige-deep);
  border-radius: 18px; padding: 30px 26px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.feat:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 14px 34px rgba(61,31,16,0.08); }
.feat-ico {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-pale), var(--beige));
  border: 1px solid rgba(201,151,58,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--brown-mid);
}
.feat-ico .ico { width: 22px; height: 22px; }
.feat h3 {
  font-family: var(--ff-serif); font-size: 19px; font-weight: 600;
  color: var(--brown); margin-bottom: 9px; line-height: 1.25;
}
.feat p { font-size: 13.5px; line-height: 1.75; color: var(--text-light); }

/* Liste à puces dorées */
.gold-list { list-style: none; margin: 26px 0; }
.gold-list li {
  position: relative; padding-left: 30px; margin-bottom: 15px;
  font-size: 15px; line-height: 1.75; color: var(--text-mid);
}
.gold-list li::before {
  content: '✦'; position: absolute; left: 0; top: 1px;
  color: var(--gold); font-size: 14px;
}

/* Modules numérotés (formation) */
.mods { display: grid; gap: 18px; margin-top: 40px; }
.mod {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--cream); border: 1px solid var(--beige-deep);
  border-radius: 18px; padding: 28px 30px;
  transition: border-color .3s, transform .3s;
}
.mod:hover { border-color: var(--gold); transform: translateX(4px); }
.mod-num {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid rgba(201,151,58,0.45); background: rgba(201,151,58,0.07);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 21px; font-weight: 300; color: var(--gold);
}
.mod-body h3 {
  font-family: var(--ff-serif); font-size: 20px; font-weight: 600;
  color: var(--brown); margin-bottom: 8px;
}
.mod-body p { font-size: 14px; line-height: 1.75; color: var(--text-light); }

/* Bloc CTA paiement */
.buy {
  background: var(--brown); border-radius: 26px;
  padding: 54px 46px; text-align: center; color: var(--beige);
  margin-top: 56px;
}
.buy h2 {
  font-family: var(--ff-display); font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700; margin-bottom: 14px; color: var(--beige);
}
.buy h2 em { font-style: italic; color: var(--gold-light); }
.buy p { font-size: 14.5px; line-height: 1.8; color: rgba(242,232,220,0.72); max-width: 560px; margin: 0 auto 30px; }
.buy .pay-methods {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 28px 0 6px;
}
.buy .pm {
  display: flex; align-items: center; gap: 8px;
  background: rgba(242,232,220,0.07); border: 1px solid rgba(201,151,58,0.28);
  border-radius: 10px; padding: 9px 15px; font-size: 12.5px; color: rgba(242,232,220,0.85);
}
.buy .pm i {
  width: 22px; height: 22px; border-radius: 6px; display: flex;
  align-items: center; justify-content: center; font-style: normal;
  font-size: 9px; font-weight: 700; color: #fff;
}
.buy-note { font-size: 12px; color: rgba(242,232,220,0.5); margin-top: 20px; }

/* Réseaux sociaux */
.social-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px; margin-top: 48px;
}
.social-card {
  border-radius: 22px; padding: 38px 32px; text-decoration: none;
  display: block; border: 1px solid var(--beige-deep); background: var(--cream);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.social-card:hover { transform: translateY(-6px); box-shadow: 0 20px 46px rgba(61,31,16,0.12); border-color: var(--gold); }
.social-ico {
  width: 58px; height: 58px; border-radius: 17px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.social-ico .ico { width: 27px; height: 27px; }
.social-card h3 {
  font-family: var(--ff-serif); font-size: 22px; font-weight: 600;
  color: var(--brown); margin-bottom: 6px;
}
.social-handle {
  font-family: var(--ff-sans); font-size: 13px; color: var(--gold);
  letter-spacing: .04em; margin-bottom: 14px;
}
.social-card p { font-size: 13.5px; line-height: 1.75; color: var(--text-light); margin-bottom: 18px; }
.social-go { font-size: 13px; color: var(--rose-deep); font-weight: 500; }

/* Ebooks */
.ebook-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px; margin-top: 48px;
}
.ebook {
  background: var(--cream); border: 1px solid var(--beige-deep);
  border-radius: 20px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.ebook:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(61,31,16,0.1); }
.ebook-cover {
  height: 168px; display: flex; align-items: center; justify-content: center;
  position: relative; border-bottom: 1px solid var(--beige-deep);
}
.ebook-cover span {
  font-family: var(--ff-display); font-size: 46px; color: rgba(255,255,255,0.92);
  font-style: italic;
}
.ebook-tag {
  position: absolute; top: 13px; right: 13px; background: rgba(255,255,255,0.92);
  border-radius: 100px; padding: 4px 12px; font-size: 10px;
  letter-spacing: .08em; color: var(--brown); font-weight: 500;
}
.ebook-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.ebook-body h3 {
  font-family: var(--ff-serif); font-size: 19px; font-weight: 600;
  color: var(--brown); margin-bottom: 9px; line-height: 1.25;
}
.ebook-body p { font-size: 13px; line-height: 1.7; color: var(--text-light); flex: 1; margin-bottom: 18px; }
.ebook-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ebook-price { font-family: var(--ff-serif); font-size: 19px; font-weight: 600; color: var(--brown); }
.btn-small {
  background: var(--brown); color: var(--beige); border: none;
  border-radius: 100px; padding: 10px 20px; font-size: 12.5px;
  font-family: var(--ff-sans); font-weight: 500; text-decoration: none;
  cursor: pointer; transition: background .3s;
}
.btn-small:hover { background: var(--rose-deep); }
.soon { opacity: .62; }
.soon .btn-small { background: var(--beige-deep); color: var(--text-light); cursor: default; }

/* FAQ */
.faq { margin-top: 46px; }
.faq details {
  border-bottom: 1px solid var(--beige-deep); padding: 20px 0;
}
.faq summary {
  font-family: var(--ff-serif); font-size: 17px; font-weight: 600;
  color: var(--brown); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--gold); font-size: 22px; font-weight: 300; }
.faq details[open] summary::after { content: '−'; }
.faq p { font-size: 14px; line-height: 1.8; color: var(--text-light); margin-top: 14px; }

/* Étapes process */
.steps-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 26px; margin-top: 44px;
}
.stp { text-align: center; }
.stp-n {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--gold); color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 19px; font-weight: 600;
}
.stp h4 { font-family: var(--ff-serif); font-size: 17px; color: var(--brown); margin-bottom: 8px; }
.stp p { font-size: 13px; line-height: 1.7; color: var(--text-light); }

/* Encart note */
.note-box {
  background: var(--rose-blush); border-left: 3px solid var(--rose-deep);
  border-radius: 0 14px 14px 0; padding: 22px 26px; margin: 32px 0;
  font-size: 14px; line-height: 1.8; color: var(--text-mid);
}
.note-box b { color: var(--brown); }

@media (max-width: 900px) {
  .page-hero { padding: 118px 22px 52px; }
  .wrap, .wrap-narrow { padding: 0 22px; }
  .sec { padding: 60px 0; }
  .buy { padding: 40px 24px; border-radius: 20px; }
  .mod { flex-direction: column; gap: 14px; padding: 24px 22px; }
}


/* Lien de navigation actif */
.nav-links a.active { color: var(--rose-deep); }
.nav-links a.active::after { width: 100%; }
/* Cartes d'offres cliquables */
a.service-card { display: block; color: inherit; }
a.service-card:hover .service-price span { color: var(--rose-deep); }
@media (max-width: 1100px) {
  nav { padding: 0 22px; }
  .nav-links { gap: 16px; font-size: 13px; }
}


/* ═══════════════════════════════════════════════════════
   RAFFINEMENTS — navigation mobile, motion, accessibilité
   ═══════════════════════════════════════════════════════ */

/* ---------- Fil de progression de lecture ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--rose-deep));
  z-index: 1200; transition: width .12s linear;
}

/* ---------- Lien d'évitement (clavier / lecteur d'écran) ---------- */
.skip {
  position: absolute; left: -9999px; top: 12px; z-index: 2000;
  background: var(--brown); color: var(--beige);
  padding: 12px 22px; border-radius: 100px; font-size: 14px;
  font-family: var(--ff-sans); text-decoration: none;
}
.skip:focus { left: 50%; transform: translateX(-50%); }

/* ---------- Focus clavier visible partout ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Bouton menu (mobile) ---------- */
.menu-btn {
  display: none; position: relative; z-index: 1105;
  width: 46px; height: 46px; border: 1px solid var(--beige-deep);
  border-radius: 50%; background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  transition: border-color .3s, background .3s;
}
.menu-btn:hover { border-color: var(--gold); }
.menu-btn span {
  display: block; width: 17px; height: 1.5px; background: var(--brown);
  border-radius: 2px; transition: transform .38s cubic-bezier(.65,.05,.36,1), opacity .2s;
}
body.menu-open .menu-btn span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Panneau de navigation plein écran ---------- */
.menu-panel {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--brown);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 30px 40px;
  clip-path: circle(0% at calc(100% - 45px) 45px);
  transition: clip-path .72s cubic-bezier(.76,0,.24,1);
  pointer-events: none;
  overflow-y: auto;
}
body.menu-open .menu-panel {
  clip-path: circle(150% at calc(100% - 45px) 45px);
  pointer-events: auto;
}
.menu-panel ol { list-style: none; counter-reset: m; }
.menu-panel li {
  counter-increment: m;
  border-bottom: 1px solid rgba(201,151,58,.16);
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.3,1);
  transition-delay: calc(var(--i) * 55ms);
}
body.menu-open .menu-panel li { opacity: 1; transform: none; }
.menu-panel a {
  display: flex; align-items: baseline; gap: 16px;
  padding: 17px 4px; text-decoration: none;
  font-family: var(--ff-display); font-size: 27px; font-weight: 400;
  color: var(--beige); transition: color .28s, padding-left .28s;
}
.menu-panel a::before {
  content: counter(m, decimal-leading-zero);
  font-family: var(--ff-sans); font-size: 11px; letter-spacing: .16em;
  color: var(--gold); opacity: .75; flex-shrink: 0;
}
.menu-panel a:hover, .menu-panel a.active { color: var(--gold-light); padding-left: 10px; }
.menu-foot {
  margin-top: 34px; display: flex; gap: 14px; justify-content: center;
  opacity: 0; transition: opacity .5s ease .45s;
}
body.menu-open .menu-foot { opacity: 1; }
.menu-foot a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(201,151,58,.35); color: var(--beige);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s, border-color .3s;
}
.menu-foot a:hover { background: var(--gold); color: var(--brown); border-color: var(--gold); }
.menu-foot .ico { width: 18px; height: 18px; }
body.menu-open { overflow: hidden; }

/* ---------- Équilibre typographique ---------- */
h1, h2, h3, .section-title, .page-hero h1, .hero-title { text-wrap: balance; }
p, .section-desc, .page-lead { text-wrap: pretty; }

/* ---------- Reflet doré sur les boutons principaux ---------- */
.btn-primary, .btn-price-gold {
  position: relative; overflow: hidden; isolation: isolate;
}
.btn-primary::after, .btn-price-gold::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.22) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .75s cubic-bezier(.3,.7,.3,1);
}
.btn-primary:hover::after, .btn-price-gold:hover::after { transform: translateX(120%); }

/* ---------- Soulignement animé des liens de contenu ---------- */
.social-go, .service-price span {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .38s cubic-bezier(.4,0,.2,1);
}
.social-card:hover .social-go,
a.service-card:hover .service-price span { background-size: 100% 1px; }

/* ---------- Révélation au défilement (échelonnée) ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .78s cubic-bezier(.2,.7,.3,1), transform .78s cubic-bezier(.2,.7,.3,1);
  transition-delay: calc(var(--d, 0) * 85ms);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Entrée orchestrée du hero ---------- */
@keyframes riseIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-content > * { animation: riseIn .9s cubic-bezier(.2,.7,.3,1) both; }
.hero-content > *:nth-child(1) { animation-delay: .05s; }
.hero-content > *:nth-child(2) { animation-delay: .15s; }
.hero-content > *:nth-child(3) { animation-delay: .22s; }
.hero-content > *:nth-child(4) { animation-delay: .3s; }
.hero-content > *:nth-child(5) { animation-delay: .38s; }
.hero-content > *:nth-child(6) { animation-delay: .46s; }

/* ---------- Cartes : élévation plus franche ---------- */
.service-card, .feat, .biz-card, .ebook, .price-card {
  transition: transform .42s cubic-bezier(.2,.7,.3,1),
              box-shadow .42s cubic-bezier(.2,.7,.3,1),
              border-color .3s;
  will-change: transform;
}

/* ---------- Défilement fluide ---------- */
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

/* ---------- Respect des préférences de mouvement ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .menu-panel { transition: none; }
}

/* ---------- Bascule desktop / mobile ---------- */
@media (max-width: 1000px) {
  .menu-btn { display: flex; }
  .nav-links { display: none; }
}
@media (min-width: 1001px) {
  .menu-panel { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   DIRECTION ARTISTIQUE — « Le moussor et le registre »
   Chaleur royale du textile × précision du livre de comptes.
   Ce bloc arrive en dernier : il redéfinit volontairement
   certaines valeurs déclarées plus haut.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Ancre sombre : le brun profond de la silhouette du logo */
  --ink:        #17100B;
  --ink-soft:   #241811;

  /* Or affiné : deux valeurs seulement, pour éviter la bouillie dorée */
  --gold:       #B8893C;
  --gold-light: #DFBB74;

  /* Rose recalibré : moins bonbon, plus terre cuite rosée */
  --rose-deep:  #B85D6E;
  --rose:       #DE9BA4;

  /* Fonds : un crème plus froid, moins « beige par défaut » */
  --cream:      #FAF6F1;
  --paper:      #FFFFFF;
  --sand:       #F0E7DC;

  /* Familles */
  --ff-display: 'Fraunces', Georgia, serif;
  --ff-serif:   'Fraunces', Georgia, serif;
  --ff-sans:    'DM Sans', system-ui, sans-serif;
  --ff-mono:    'Space Mono', ui-monospace, monospace;

  /* Échelle typographique fluide */
  --t-xs:  clamp(11px, .68rem + .1vw, 12px);
  --t-sm:  clamp(13px, .8rem + .15vw, 14.5px);
  --t-md:  clamp(15px, .92rem + .2vw, 17px);
  --t-lg:  clamp(20px, 1.1rem + .8vw, 26px);
  --t-xl:  clamp(28px, 1.4rem + 2.2vw, 46px);
  --t-2xl: clamp(38px, 1.6rem + 4.6vw, 82px);
}

/* ---------- Réglages de base ---------- */
body {
  background: var(--cream);
  font-size: var(--t-md);
  letter-spacing: -0.005em;
}

/* Fraunces variable : optique haute + un soupçon de « wonk » sur les titres */
.hero-title, .page-hero h1, .section-title, .buy h2, h1, h2 {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 120, 'SOFT' 20, 'WONK' 1;
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.02;
}
.hero-title, .page-hero h1 { font-size: var(--t-2xl); }
.section-title { font-size: var(--t-xl); }
h3, .service-name, .feat h3, .mod-body h3, .ebook-body h3, .price-name, .stp h4 {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 40, 'SOFT' 30, 'WONK' 0;
  font-weight: 600;
  letter-spacing: -0.018em;
}
em, .hero-title em, .section-title em, .page-hero h1 em {
  font-style: italic;
  font-variation-settings: 'opsz' 120, 'SOFT' 60, 'WONK' 1;
  color: var(--rose-deep);
}

/* ---------- Le registre : tout ce qui est donnée passe en mono ---------- */
.section-label, .hero-badge, .service-badge, .price-tag, .stat-lbl,
.stat-text, .ebook-tag, .buy .pm, .social-handle, .footer-col h4,
.nav-logo-sub, .price-period, .price-sub, .pb-cur, .pb-per, .buy-note {
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
}
.stat-val, .stat-number, .price-amount, .pb-amount, .ebook-price, .service-price {
  font-family: var(--ff-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mod-num, .stp-n {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ---------- Le motif du moussor : filet géométrique doré ---------- */
.moussor {
  height: 14px; width: 100%;
  background-image:
    linear-gradient(135deg, var(--gold) 1px, transparent 1px),
    linear-gradient(225deg, var(--gold) 1px, transparent 1px);
  background-size: 14px 14px;
  background-position: 0 0;
  opacity: .28;
}
.moussor-rule {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 26px;
}
.moussor-rule::before {
  content: ''; width: 34px; height: 10px; flex-shrink: 0;
  background-image:
    linear-gradient(135deg, var(--gold) 1px, transparent 1px),
    linear-gradient(225deg, var(--gold) 1px, transparent 1px);
  background-size: 10px 10px;
}
.moussor-rule::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(184,137,60,.5), transparent);
}

/* Voile ambiant derrière le hero */
.hero::before, .page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(135deg, var(--gold) 1px, transparent 1px),
    linear-gradient(225deg, var(--gold) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .05;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 0%, transparent 72%);
}
.page-hero { position: relative; overflow: hidden; }

/* ---------- Cartes : arêtes nettes, pas de boîte molle ---------- */
.service-card, .feat, .biz-card, .ebook, .price-card, .social-card {
  border-radius: 3px;
  border: 1px solid var(--sand);
  background: var(--paper);
  box-shadow: none;
}
.service-card:hover, .feat:hover, .biz-card:hover,
.ebook:hover, .social-card:hover {
  border-color: var(--gold);
  box-shadow: 0 1px 0 var(--gold), 0 18px 44px -22px rgba(23,16,11,.28);
}
/* Un filet doré se dessine en haut de carte au survol */
.service-card, .feat, .social-card, .biz-card { position: relative; }
.service-card::before, .feat::before, .social-card::before, .biz-card::before {
  content: ''; position: absolute; top: -1px; left: 0; height: 2px; width: 0;
  background: var(--gold);
  transition: width .5s cubic-bezier(.2,.8,.3,1);
}
.service-card:hover::before, .feat:hover::before,
.social-card:hover::before, .biz-card:hover::before { width: 100%; }

/* ---------- Boutons : rectangulaires, tenus ---------- */
.btn-primary, .btn-outline, .btn-price, .btn-small, .pay-whatsapp {
  border-radius: 2px;
  font-family: var(--ff-mono);
  font-size: var(--t-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 400;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: none;
  padding: 17px 34px;
}
.btn-primary:hover { background: var(--rose-deep); transform: none; }
.btn-outline {
  border: 1px solid var(--ink); color: var(--ink); background: transparent;
  padding: 16px 32px;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ---------- Bandeau prix : plaque, pas pilule ---------- */
.price-band {
  border-radius: 2px; border: 1px solid var(--ink);
  background: var(--paper); box-shadow: none;
  padding: 18px 34px;
}
.price-band .pb-amount {
  font-family: var(--ff-mono); font-weight: 700;
  font-size: clamp(30px, 4vw, 42px); color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* ---------- Sections sombres : l'ancre de contraste ---------- */
.buy, footer { background: var(--ink); }
.buy { border-radius: 3px; position: relative; overflow: hidden; }
.buy::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(135deg, var(--gold-light) 1px, transparent 1px),
    linear-gradient(225deg, var(--gold-light) 1px, transparent 1px);
  background-size: 28px 28px; opacity: .07;
}
.buy > * { position: relative; }
.buy .btn-primary { background: var(--gold); color: var(--ink); }
.buy .btn-primary:hover { background: var(--gold-light); }

/* ---------- Barre de navigation ---------- */
nav { border-bottom: 1px solid transparent; }
nav.scrolled {
  background: rgba(250,246,241,.88);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--sand);
  box-shadow: none;
}
.nav-links a {
  font-family: var(--ff-mono); font-size: var(--t-xs);
  letter-spacing: .1em; text-transform: uppercase;
}
.nav-logo-text {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 40, 'SOFT' 30, 'WONK' 1;
  font-weight: 600; letter-spacing: -0.02em;
}
.nav-logo-icon { border-radius: 50%; box-shadow: none; border: 1px solid var(--sand); }

/* ---------- Étiquettes de section ---------- */
.section-label { color: var(--gold); }
.section-label::before {
  content: ''; display: inline-block; width: 22px; height: 8px;
  margin-right: 10px; vertical-align: middle;
  background-image:
    linear-gradient(135deg, var(--gold) 1px, transparent 1px),
    linear-gradient(225deg, var(--gold) 1px, transparent 1px);
  background-size: 8px 8px;
}

/* ---------- Encadrés & listes ---------- */
.note-box { border-radius: 0 3px 3px 0; background: var(--sand); border-left-color: var(--gold); }
.gold-list li::before { content: '—'; color: var(--gold); }
.faq summary { font-family: var(--ff-display); font-variation-settings: 'opsz' 40, 'SOFT' 30; }

/* ---------- Menu plein écran ---------- */
.menu-panel { background: var(--ink); }
.menu-panel a { font-family: var(--ff-display); font-variation-settings: 'opsz' 90, 'SOFT' 30, 'WONK' 1; }
.menu-panel a::before { font-family: var(--ff-mono); }

/* ---------- Pied de page ---------- */
.footer-col h4 { color: var(--gold); }

/* ---------- Sélection de texte ---------- */
::selection { background: var(--gold); color: var(--ink); }

/* Le bandeau moussor doit couvrir toute la largeur du pied de page */
footer { position: relative; padding-top: 92px; }
footer > .moussor {
  position: absolute; top: 0; left: 0; right: 0;
  width: auto; height: 12px;
}

/* ═══════════════════════════════════════════════════════
   FORMULAIRES
   ═══════════════════════════════════════════════════════ */
.form-card {
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 3px;
  padding: 40px;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}
.form-card::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: var(--gold);
}
.field { margin-bottom: 22px; }
.field label {
  display: block; margin-bottom: 8px;
  font-family: var(--ff-mono); font-size: var(--t-xs);
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-mid);
}
.field .req { color: var(--rose-deep); }
.field input,
.field select,
.field textarea {
  width: 100%; padding: 14px 16px;
  font-family: var(--ff-sans); font-size: 15px; color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--sand); border-radius: 2px;
  transition: border-color .25s, background .25s;
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--text-mid) 50%),
                    linear-gradient(135deg, var(--text-mid) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.7; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--paper);
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) { border-color: var(--rose-deep); }
.field .hint { margin-top: 6px; font-size: 12.5px; color: var(--text-light); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-submit {
  width: 100%; padding: 17px 28px; border: none; cursor: pointer;
  background: var(--ink); color: var(--cream);
  font-family: var(--ff-mono); font-size: var(--t-xs);
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 2px; transition: background .3s;
}
.form-submit:hover:not(:disabled) { background: var(--rose-deep); }
.form-submit:disabled { opacity: .55; cursor: wait; }

.form-msg {
  margin-top: 18px; padding: 16px 18px; border-radius: 2px;
  font-size: 14px; line-height: 1.7; display: none;
}
.form-msg.show { display: block; }
.form-msg.ok { background: rgba(184,137,60,.1); border-left: 3px solid var(--gold); color: var(--text-mid); }
.form-msg.err { background: rgba(184,93,110,.09); border-left: 3px solid var(--rose-deep); color: var(--text-mid); }
.form-note {
  margin-top: 16px; font-size: 12.5px; line-height: 1.7;
  color: var(--text-light); text-align: center;
}
/* Champ anti-robot : invisible pour les humaines */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

@media (max-width: 640px) {
  .form-card { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* Le formulaire garde ses libellés alignés à gauche, même dans une section centrée */
.payment .form-card { text-align: left; }
.payment .form-card .form-note,
.payment .form-card .form-submit { text-align: center; }
