:root {
    --bg: #F4EFE3;
    --bg-2: #EDE6D4;
    --bg-3: #E5DCC3;
    --ink: #1A2620;
    --ink-soft: #5C5A4D;
    --line: #DCD3BE;
    --line-dark: #2A4538;
    --brand: #163828;
    --brand-2: #1F4A36;
    --brand-deep: #0F2A1E;
    --accent: #C8A363;
    --accent-2: #B8924E;
    --accent-soft: #DDC395;
    --accent-bg: #EDE2C8;
    /* Typographie simple & pro : Hanken Grotesk (titres) + Inter (corps) */
    --serif: 'Hanken Grotesk', -apple-system, system-ui, sans-serif;
    --sans: 'Inter', -apple-system, system-ui, sans-serif;
    --mono: 'Inter', -apple-system, system-ui, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 12px -4px rgba(22,56,40,0.10);
    --shadow-md: 0 18px 44px -22px rgba(22,56,40,0.22);
    --shadow-lg: 0 40px 90px -40px rgba(22,56,40,0.30);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans); color: var(--ink); background: var(--bg);
    line-height: 1.6; overflow-x: hidden;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
    position: relative;
  }
  /* Grain papier — texture tactile "édition imprimée" */
  body::before {
    content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
    opacity: 0.035; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  /* Barre de progression de lecture (or) */
  .scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 200;
    background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--accent-soft)); transition: width 0.1s linear; }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  ::selection { background: var(--accent); color: var(--brand-deep); }
  .container { max-width: 1320px; margin: 0 auto; padding: 0 36px; }
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    html { scroll-behavior: auto; }
  }

  .utility-bar { background: var(--brand-deep); color: rgba(245,239,227,0.8); font-size: 12.5px; padding: 11px 0; letter-spacing: 0.02em; font-family: var(--mono); font-weight: 400; }
  .utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .utility-bar a { color: inherit; text-decoration: none; transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11.5px; }
  .utility-bar a:hover { color: var(--accent-soft); }
  .utility-bar .left, .utility-bar .right { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
  .utility-bar svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: 7px; }
  .utility-bar .cities { text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; }
  .utility-bar .cities span { color: var(--accent); margin: 0 4px; }

  .nav { position: sticky; top: 0; z-index: 100; background: rgba(244,239,227,0.92); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
  .nav.scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(22,56,40,0.05); }
  .nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
  .logo { display: inline-flex; align-items: center; text-decoration: none; line-height: 1; }
  .logo img { height: 54px; width: auto; display: block; }
  .logo-img.logo-white { display: none; }
  .logo-word { display: none; }
  @media (max-width: 720px) { .logo img { height: 46px; } }
  .nav-menu { display: flex; gap: 38px; list-style: none; }
  .nav-menu a { color: var(--ink); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color 0.2s; position: relative; }
  .nav-menu a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1.5px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
  .nav-menu a:hover { color: var(--brand); }
  .nav-menu a:hover::after { transform: scaleX(1); }
  .nav-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--brand); color: var(--bg); padding: 12px 22px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 13.5px; letter-spacing: 0.01em; transition: all 0.25s; }
  .nav-cta:hover { background: var(--accent-2); color: white; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(184,146,78,0.32); }
  .nav-cta svg { width: 13px; height: 13px; }
  .burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .burger span { display: block; width: 22px; height: 2px; background: var(--brand); margin: 4px 0; transition: 0.2s; }

  .section-tag { font-family: var(--mono); font-size: 11.5px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-2); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
  .section-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--accent-2); }
  .section-title { font-family: var(--serif); font-size: clamp(38px, 5vw, 64px); line-height: 1.0; font-weight: 400; letter-spacing: -0.035em; color: var(--brand); max-width: 880px; font-variation-settings: "opsz" 144, "SOFT" 50; }
  .section-title em { font-style: italic; color: var(--accent-2); font-weight: 400; }
  .section-sub { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--ink-soft); max-width: 680px; line-height: 1.55; font-weight: 400; margin-top: 22px; }
  .section-head { margin-bottom: 70px; }
  section { padding: 120px 0; position: relative; }

  .hero { position: relative; padding: 60px 0 100px; overflow: hidden; background: radial-gradient(ellipse at top right, rgba(200,163,99,0.12), transparent 50%), radial-gradient(ellipse at bottom left, rgba(22,56,40,0.06), transparent 60%), var(--bg); }
  .hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11.5px; font-weight: 500; color: var(--brand); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 36px; padding: 8px 14px; background: rgba(22,56,40,0.06); border-radius: 999px; }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2.2s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(200,163,99,0.6); } 70% { box-shadow: 0 0 0 9px rgba(200,163,99,0); } }
  .hero h1 { font-family: var(--serif); font-size: clamp(52px, 7.5vw, 104px); line-height: 0.95; font-weight: 400; letter-spacing: -0.045em; color: var(--brand); margin-bottom: 32px; font-variation-settings: "opsz" 144, "SOFT" 100; }
  .hero h1 em { font-style: italic; color: var(--accent-2); font-weight: 300; display: block; }
  .hero-lead { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink-soft); max-width: 560px; margin-bottom: 42px; line-height: 1.5; font-weight: 400; }
  .hero-pillars { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 44px; align-items: center; }
  .hero-pillar { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--brand); letter-spacing: 0.14em; text-transform: uppercase; }
  .hero-pillar-sep { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn { display: inline-flex; align-items: center; gap: 10px; padding: 17px 32px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 14.5px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); cursor: pointer; border: none; font-family: var(--sans); line-height: 1; letter-spacing: 0.01em; position: relative; overflow: hidden; }
  .btn svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); position: relative; z-index: 1; }
  .btn span, .btn { z-index: 0; }
  .btn:hover svg { transform: translateX(3px); }
  /* Reflet lumineux qui balaie le bouton au survol */
  .btn::after { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent); transform: skewX(-18deg); transition: left 0.6s var(--ease); }
  .btn:hover::after { left: 140%; }
  .btn-primary { background: var(--brand); color: var(--bg); }
  .btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(184,146,78,0.34); color: white; }
  .btn-ghost { background: transparent; color: var(--brand); border: 1.5px solid var(--brand); }
  .btn-ghost:hover { background: var(--brand); color: var(--bg); transform: translateY(-2px); }

  .hero-form-wrap { position: relative; }
  .hero-form-card { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 50px 100px -40px rgba(22,56,40,0.32), 0 0 0 1px rgba(22,56,40,0.05); position: relative; }
  .hero-form-card::before { content: ''; position: absolute; top: -10px; left: 36px; right: 36px; height: 10px; background: var(--brand); border-radius: 10px 10px 0 0; }
  .hero-form-card::after { content: ''; position: absolute; top: -20px; left: 70px; right: 70px; height: 10px; background: var(--accent); border-radius: 10px 10px 0 0; z-index: -1; }
  .hero-form-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10.5px; font-weight: 500; color: var(--brand); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; padding: 6px 12px; background: var(--accent-bg); border-radius: 999px; }
  .hero-form-tag svg { width: 12px; height: 12px; color: var(--accent-2); }
  .hero-form-card h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 8px; color: var(--brand); }
  .hero-form-card h3 em { font-style: italic; color: var(--accent-2); font-weight: 400; }
  .hero-form-sub { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 24px; line-height: 1.5; }
  .form-group { margin-bottom: 14px; display: flex; flex-direction: column; gap: 7px; }
  .form-group label { font-family: var(--mono); font-size: 10.5px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); }
  .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px; font-family: var(--sans); font-size: 14.5px; color: var(--ink); background: var(--bg); transition: all 0.2s; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); background: white; box-shadow: 0 0 0 4px rgba(22,56,40,0.07); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-form-submit { width: 100%; background: var(--brand); color: white; padding: 16px; border: none; border-radius: 999px; font-family: var(--sans); font-size: 14.5px; font-weight: 600; cursor: pointer; transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; letter-spacing: 0.01em; }
  .hero-form-submit:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(184,146,78,0.34); }
  .hero-form-submit svg { width: 16px; height: 16px; }
  .hero-form-trust { display: flex; gap: 18px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; justify-content: center; }
  .trust-item { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10.5px; font-weight: 500; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; }
  .trust-item svg { width: 12px; height: 12px; color: var(--brand); }

  .stats-bar { background: var(--brand); color: var(--bg); padding: 70px 0; position: relative; overflow: hidden; }
  .stats-bar::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,163,99,0.18), transparent 65%); border-radius: 50%; }
  .stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; align-items: end; position: relative; }
  .stat-item .stat-divider { width: 28px; height: 1.5px; background: var(--accent); margin-bottom: 18px; }
  .stat-num { font-family: var(--serif); font-size: clamp(56px, 7vw, 92px); font-weight: 300; color: white; letter-spacing: -0.045em; line-height: 0.85; margin-bottom: 14px; font-style: italic; }
  .stat-num span { color: var(--accent); font-style: italic; font-size: 0.55em; font-weight: 300; margin-left: 2px; }
  .stat-label { font-family: var(--mono); font-size: 11.5px; color: rgba(245,239,227,0.7); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }

  .about { background: var(--bg); }
  .about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
  .about-text p { font-size: 17px; color: var(--ink-soft); margin-bottom: 22px; line-height: 1.7; max-width: 560px; }
  .about-text p strong { color: var(--ink); font-weight: 600; }
  .about-text .lead { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--brand); line-height: 1.4; margin-bottom: 28px; max-width: 580px; font-weight: 400; }
  .about-quote { background: var(--brand); color: var(--bg); padding: 50px 44px; border-radius: var(--radius-lg); position: relative; margin-top: 16px; }
  .about-quote-tag { font-family: var(--mono); font-size: 10.5px; color: var(--accent); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 22px; display: inline-flex; gap: 10px; align-items: center; }
  .about-quote-tag::before { content: ''; width: 18px; height: 1.5px; background: var(--accent); }
  .about-quote-text { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 42px); font-weight: 300; line-height: 1.15; letter-spacing: -0.025em; color: white; margin-bottom: 24px; }
  .about-quote-text em { font-style: italic; color: var(--accent-soft); }
  .about-quote-cite { padding-top: 20px; border-top: 1px solid rgba(200,163,99,0.3); font-family: var(--mono); font-size: 11.5px; color: rgba(245,239,227,0.6); letter-spacing: 0.08em; }

  .atouts { background: var(--bg-2); position: relative; }
  .atouts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .atout { background: var(--bg); padding: 44px 38px; border-radius: var(--radius-lg); border: 1px solid var(--line); transition: all 0.35s ease; position: relative; overflow: hidden; }
  .atout-num { font-family: var(--serif); font-style: italic; font-size: 56px; font-weight: 300; color: var(--accent-2); line-height: 1; letter-spacing: -0.04em; margin-bottom: 32px; display: block; }
  .atout h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; letter-spacing: -0.025em; color: var(--brand); margin-bottom: 24px; line-height: 1.1; }
  .atout h3 em { font-style: italic; color: var(--accent-2); font-weight: 400; }
  .atout-list { list-style: none; }
  .atout-list li { padding: 12px 0; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--ink-soft); display: flex; align-items: baseline; gap: 12px; }
  .atout-list li::before { content: '—'; color: var(--accent); font-weight: 500; flex-shrink: 0; }
  .atout-list li:first-child { border-top: none; padding-top: 0; }
  .atout.dark { background: var(--brand); color: var(--bg); border-color: var(--brand); }
  .atout.dark h3 { color: white; }
  .atout.dark h3 em { color: var(--accent-soft); }
  .atout.dark .atout-num { color: var(--accent); }
  .atout.dark .atout-list li { color: rgba(245,239,227,0.75); border-color: rgba(200,163,99,0.2); }

  .engagements { background: var(--bg); }
  .engagements-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
  .engagements-aside { background: var(--bg-2); border-left: 3px solid var(--accent); padding: 32px; border-radius: 0 12px 12px 0; font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink-soft); line-height: 1.6; }
  .engagements-list { display: flex; flex-direction: column; }
  .engagement-item { display: grid; grid-template-columns: 60px 1fr 2fr; gap: 32px; padding: 36px 0; border-top: 1px solid var(--line); align-items: start; }
  .engagement-item:first-child { border-top: none; padding-top: 0; }
  .engagement-num { font-family: var(--mono); font-size: 13px; color: var(--accent-2); letter-spacing: 0.12em; font-weight: 500; padding-top: 4px; }
  .engagement-title { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--brand); line-height: 1.15; letter-spacing: -0.02em; }
  .engagement-title em { font-style: italic; color: var(--accent-2); font-weight: 400; }
  .engagement-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

  .services { background: var(--brand); color: var(--bg); overflow: hidden; }
  .services .section-tag { color: var(--accent-soft); }
  .services .section-tag::before { background: var(--accent-soft); }
  .services .section-title { color: white; }
  .services .section-title em { color: var(--accent-soft); }
  .services .section-sub { color: rgba(245,239,227,0.7); }
  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(200,163,99,0.18); border: 1px solid rgba(200,163,99,0.18); border-radius: var(--radius-lg); overflow: hidden; }
  .service { background: var(--brand); padding: 44px 40px; position: relative; display: flex; gap: 28px; }
  .service-num { font-family: var(--serif); font-style: italic; font-size: 36px; font-weight: 300; color: var(--accent); line-height: 1; letter-spacing: -0.04em; flex-shrink: 0; width: 60px; }
  .service-content { flex: 1; }
  .service h4 { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: -0.02em; color: white; margin-bottom: 14px; line-height: 1.15; }
  .service h4 em { font-style: italic; color: var(--accent-soft); font-weight: 400; }
  .service p { color: rgba(245,239,227,0.7); font-size: 14.5px; line-height: 1.6; }
  .service-wide { grid-column: 1 / -1; background: var(--brand-deep); }
  .service-arrow { position: absolute; top: 36px; right: 36px; color: var(--accent); opacity: 0.5; }
  .service-arrow svg { width: 22px; height: 22px; }

  .valeurs { background: var(--bg-2); }
  .valeurs-table { background: var(--bg); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
  .valeur-row { display: grid; grid-template-columns: 70px 1fr 2fr; gap: 32px; padding: 36px 40px; border-bottom: 1px solid var(--line); align-items: center; }
  .valeur-row:last-child { border-bottom: none; }
  .valeur-num { font-family: var(--serif); font-style: italic; font-size: 32px; font-weight: 300; color: var(--accent-2); letter-spacing: -0.04em; }
  .valeur-title { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--brand); letter-spacing: -0.02em; line-height: 1.2; }
  .valeur-title em { font-style: italic; color: var(--accent-2); font-weight: 400; }
  .valeur-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

  .team { background: var(--bg); }
  .team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
  .team-member { background: var(--bg-2); border-radius: var(--radius); padding: 28px 26px; border: 1px solid var(--line); }
  .team-dept { font-family: var(--mono); font-size: 10.5px; color: var(--accent-2); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 8px; }
  .team-dept::before { content: ''; width: 14px; height: 1.5px; background: var(--accent-2); }
  .team-name { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--brand); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 8px; }
  .team-name em { font-style: italic; color: var(--accent-2); font-weight: 400; }
  .team-role { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }

  .featured { background: var(--bg); padding: 40px 0 100px; }
  .featured-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 520px; background-color: var(--brand-deep); background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 60px; color: white; }
  .featured-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,42,30,0.92) 0%, rgba(22,56,40,0.65) 50%, rgba(22,56,40,0.2) 100%); }
  .featured-card-content { position: relative; max-width: 640px; z-index: 1; }
  .featured-tag { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--brand-deep); padding: 7px 14px; border-radius: 999px; font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 24px; }
  .featured-card h3 { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px); line-height: 1.0; font-weight: 400; letter-spacing: -0.035em; margin-bottom: 18px; }
  .featured-card h3 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
  .featured-card .featured-lead { font-family: var(--serif); font-style: italic; font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 540px; line-height: 1.5; }
  .featured-meta { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(200,163,99,0.3); }
  .featured-meta-item { display: flex; flex-direction: column; gap: 6px; }
  .featured-meta-label { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.55); font-weight: 500; }
  .featured-meta-value { font-family: var(--serif); font-size: 22px; font-weight: 500; color: white; letter-spacing: -0.015em; }
  .featured-meta-value em { font-style: italic; color: var(--accent-soft); font-weight: 400; }

  .residences { background: var(--bg-2); }
  .residences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .residence { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease); cursor: pointer; }
  .residence:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
  .residence-img { height: 200px; overflow: hidden; position: relative; }
  /* Duotone vert→or : unifie toutes les photos sous l'identité de marque */
  .residence-img-inner { width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(1) contrast(1.05) brightness(1.02); transition: transform 0.7s var(--ease), filter 0.7s var(--ease); }
  .residence-img-inner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(22,56,40,0.92), rgba(184,146,78,0.55)); mix-blend-mode: multiply; transition: opacity 0.7s var(--ease); }
  .residence-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,42,30,0) 55%, rgba(15,42,30,0.45)); pointer-events: none; z-index: 1; }
  .residence:hover .residence-img-inner { transform: scale(1.06); filter: grayscale(0.35) contrast(1.05) brightness(1.04); }
  .residence:hover .residence-img-inner::after { opacity: 0.78; }
  .residence-tag { position: absolute; top: 14px; left: 14px; background: rgba(244,239,227,0.95); color: var(--brand); padding: 5px 12px; border-radius: 999px; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; backdrop-filter: blur(10px); z-index: 2; }
  .residence-body { padding: 22px 24px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .residence-name { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--brand); line-height: 1.15; margin-bottom: 6px; letter-spacing: -0.015em; }
  .residence-meta { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
  .residence-meta span { color: var(--accent-2); margin-right: 6px; }
  .residence-arrow { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-2); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.45s var(--ease), background 0.45s var(--ease), color 0.45s var(--ease); }
  .residence:hover .residence-arrow { background: var(--accent); color: var(--brand-deep); transform: rotate(-45deg); }
  .residence-arrow svg { width: 14px; height: 14px; }

  .expansion { background: var(--brand); color: var(--bg); padding: 100px 0; position: relative; overflow: hidden; }
  .expansion::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%; background: radial-gradient(ellipse, rgba(200,163,99,0.08), transparent 60%); pointer-events: none; }
  .expansion-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; position: relative; }
  .expansion h2 { color: white; }
  .expansion h2 em { color: var(--accent-soft); }
  .expansion .section-tag { color: var(--accent-soft); }
  .expansion .section-tag::before { background: var(--accent-soft); }
  .expansion-lead { font-family: var(--serif); font-style: italic; font-size: 19px; color: rgba(245,239,227,0.75); line-height: 1.55; margin-top: 24px; max-width: 480px; }
  .cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .city-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,163,99,0.2); border-radius: var(--radius); padding: 28px 26px; position: relative; overflow: hidden; }
  .city-card.active { background: var(--accent); border-color: var(--accent); }
  .city-card.active .city-name { color: var(--brand-deep); }
  .city-card.active .city-status { color: rgba(15,42,30,0.7); }
  .city-card.active .city-tag { color: var(--brand-deep); border-color: rgba(15,42,30,0.3); }
  .city-tag { font-family: var(--mono); font-size: 9.5px; font-weight: 500; color: var(--accent-soft); letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 8px; border: 1px solid rgba(200,163,99,0.3); border-radius: 999px; display: inline-block; margin-bottom: 16px; }
  .city-name { font-family: var(--serif); font-size: 28px; font-weight: 400; color: white; letter-spacing: -0.025em; line-height: 1; margin-bottom: 6px; }
  .city-name em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
  .city-status { font-family: var(--mono); font-size: 11px; color: rgba(245,239,227,0.5); letter-spacing: 0.08em; text-transform: uppercase; }

  .contact-form { background: var(--bg-2); }
  .contact-form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
  .contact-info-list { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
  .contact-info-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-top: 1px solid var(--line); }
  .contact-info-item:first-child { border-top: none; padding-top: 0; }
  .contact-icon { width: 42px; height: 42px; background: var(--accent-bg); color: var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-icon svg { width: 18px; height: 18px; }
  .contact-info-label { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); margin-bottom: 4px; }
  .contact-info-value { font-family: var(--serif); font-size: 19px; color: var(--brand); font-weight: 500; text-decoration: none; letter-spacing: -0.015em; }
  .contact-info-sub { font-size: 13px; color: var(--ink-soft); margin-top: 3px; }
  .form-card-full { background: var(--bg); border-radius: var(--radius-lg); padding: 48px; box-shadow: 0 30px 70px -20px rgba(22,56,40,0.18); border: 1px solid var(--line); }
  .form-card-full .form-head { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .form-card-full .form-head h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; letter-spacing: -0.025em; margin-bottom: 6px; color: var(--brand); }
  .form-card-full .form-head h3 em { font-style: italic; color: var(--accent-2); font-weight: 400; }
  .form-card-full .form-head p { font-size: 14px; color: var(--ink-soft); }
  .form-card-full .form-group textarea { min-height: 110px; resize: vertical; }
  .form-card-full .submit-btn { width: 100%; background: var(--brand); color: white; padding: 18px; border: none; border-radius: 999px; font-family: var(--sans); font-size: 15px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; letter-spacing: 0.01em; }
  .form-card-full .submit-btn svg { width: 17px; height: 17px; }
  .form-disclaimer { font-size: 12px; color: var(--ink-soft); text-align: center; margin-top: 16px; }

  .footer { background: var(--brand-deep); color: rgba(245,239,227,0.7); padding: 90px 0 40px; }
  .footer-cta { text-align: center; padding-bottom: 70px; margin-bottom: 70px; border-bottom: 1px solid rgba(200,163,99,0.15); }
  .footer-cta-title { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); font-weight: 400; color: white; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 22px; }
  .footer-cta-title em { font-style: italic; color: var(--accent); font-weight: 300; }
  .footer-cta-sub { font-family: var(--serif); font-style: italic; font-size: 18px; color: rgba(245,239,227,0.6); max-width: 540px; margin: 0 auto 32px; line-height: 1.5; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 60px; margin-bottom: 60px; padding-bottom: 50px; border-bottom: 1px solid rgba(200,163,99,0.15); }
  .footer-logo { display: inline-block; margin-bottom: 18px; line-height: 1; }
  .footer-logo img { height: 86px; width: auto; display: block; }
  .footer-logo--mono img { filter: none; }
  .footer-tagline { font-family: var(--serif); font-style: italic; font-size: 15.5px; line-height: 1.6; max-width: 320px; margin-bottom: 28px; }
  .footer-pillars { display: flex; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
  .footer-pillar { font-family: var(--mono); font-size: 10.5px; color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
  .footer-social { display: flex; gap: 12px; }
  .footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(200,163,99,0.08); display: flex; align-items: center; justify-content: center; color: rgba(245,239,227,0.7); }
  .footer-social svg { width: 16px; height: 16px; }
  .footer h5 { color: white; font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 24px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a { color: rgba(245,239,227,0.65); text-decoration: none; font-size: 14.5px; }
  .footer-contact-block { display: flex; flex-direction: column; gap: 16px; }
  .footer-contact-line { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; }
  .footer-contact-line svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
  .footer-contact-line a { color: rgba(245,239,227,0.8); text-decoration: none; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(245,239,227,0.4); flex-wrap: wrap; gap: 16px; text-transform: uppercase; }

  .wa-float { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,0.5); z-index: 90; transition: transform 0.3s var(--ease); }
  .wa-float:hover { transform: scale(1.08) rotate(4deg); }
  .wa-float svg { width: 30px; height: 30px; color: white; }

  /* ============================================================
     ÉLÉVATION — interactions, profondeur & détails raffinés
     ============================================================ */
  /* Cartes Atouts — lift + liseré or */
  .atout:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
  .atout::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
  .atout:hover::after { transform: scaleX(1); }
  .atout.dark:hover { box-shadow: 0 30px 70px -30px rgba(0,0,0,0.5); }
  /* Services — fond qui s'éclaire + flèche qui glisse */
  .service { transition: background 0.4s var(--ease); }
  .service:hover { background: var(--brand-2); }
  .service-wide:hover { background: #0A1F14; }
  .service-arrow svg { transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
  .service:hover .service-arrow { opacity: 1; }
  .service:hover .service-arrow svg { transform: translate(4px, -4px); }
  /* Lignes Valeurs — surbrillance au survol */
  .valeur-row { transition: background 0.3s var(--ease); }
  .valeur-row:hover { background: var(--accent-bg); }
  /* Villes — élévation */
  .city-card { transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease); }
  .city-card:not(.active):hover { transform: translateY(-4px); background: rgba(200,163,99,0.12); border-color: var(--accent-soft); }
  /* Featured — léger zoom de fond */
  .featured-card { transition: box-shadow 0.5s var(--ease); }
  .featured-card:hover { box-shadow: var(--shadow-lg); }
  /* Champs de formulaire — focus raffiné */
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent-2); background: white; box-shadow: 0 0 0 4px rgba(200,163,99,0.14); }
  /* Liens footer — glissement + couleur */
  .footer-links a, .footer-contact-line a { transition: color 0.25s var(--ease), padding-left 0.25s var(--ease); }
  .footer-links a:hover { color: var(--accent); padding-left: 6px; }
  .footer-contact-line a:hover { color: white; }
  .footer-social a { transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease); }
  .footer-social a:hover { background: var(--accent); color: var(--brand-deep); transform: translateY(-3px); }
  /* Citation About — filet décoratif */
  .about-quote::after { content: '\201D'; position: absolute; top: 18px; right: 34px; font-family: var(--serif); font-size: 120px; line-height: 1; color: rgba(200,163,99,0.18); font-style: italic; pointer-events: none; }
  /* Stat — léger glow */
  .stat-num { text-shadow: 0 0 40px rgba(200,163,99,0.10); }

  /* ============================================================
     MULTI-PAGES — éléments propres au site à plusieurs pages
     ============================================================ */

  /* Lien de navigation actif (page courante) */
  .nav-menu a.active { color: var(--brand); }
  .nav-menu a.active::after { transform: scaleX(1); }

  /* Bannière d'en-tête des pages intérieures */
  .page-hero {
    position: relative; overflow: hidden;
    padding: 88px 0 64px;
    background:
      radial-gradient(ellipse at top right, rgba(200,163,99,0.14), transparent 55%),
      radial-gradient(ellipse at bottom left, rgba(22,56,40,0.07), transparent 60%),
      var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .page-hero .container { position: relative; z-index: 1; }
  .page-hero-eyebrow {
    font-family: var(--mono); font-size: 11.5px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent-2);
    display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
  }
  .page-hero-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--accent-2); }
  .page-hero h1 {
    font-family: var(--serif); font-size: clamp(46px, 6.5vw, 86px);
    line-height: 0.98; font-weight: 400; letter-spacing: -0.04em; color: var(--brand);
    font-variation-settings: "opsz" 144, "SOFT" 80; max-width: 980px;
  }
  .page-hero h1 em { font-style: italic; color: var(--accent-2); font-weight: 300; }
  .page-hero-lead {
    font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--ink-soft);
    max-width: 640px; line-height: 1.5; margin-top: 24px; font-weight: 400;
  }
  /* Fil d'Ariane */
  .breadcrumb {
    font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--ink-soft); margin-bottom: 30px; display: flex; gap: 10px; align-items: center;
  }
  .breadcrumb a { color: var(--accent-2); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--brand); }
  .breadcrumb span { opacity: 0.5; }

  /* Bande CTA réutilisable (bas de page intérieure) */
  .cta-band { background: var(--brand-deep); color: var(--bg); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
  .cta-band::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 70%; height: 180%; background: radial-gradient(ellipse, rgba(200,163,99,0.10), transparent 60%); pointer-events: none; }
  .cta-band-inner { position: relative; z-index: 1; }
  .cta-band h2 { font-family: var(--serif); font-size: clamp(34px, 4.4vw, 56px); font-weight: 400; color: white; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 20px; }
  .cta-band h2 em { font-style: italic; color: var(--accent); font-weight: 300; }
  .cta-band p { font-family: var(--serif); font-style: italic; font-size: 18px; color: rgba(245,239,227,0.65); max-width: 540px; margin: 0 auto 32px; line-height: 1.5; }

  /* Aperçu services (page Accueil) — version compacte */
  .services-preview { background: var(--brand); color: var(--bg); }
  .services-preview .section-tag { color: var(--accent-soft); }
  .services-preview .section-tag::before { background: var(--accent-soft); }
  .services-preview .section-title { color: white; }
  .services-preview .section-title em { color: var(--accent-soft); }
  .services-preview .section-sub { color: rgba(245,239,227,0.7); }
  .svc-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(200,163,99,0.18); border: 1px solid rgba(200,163,99,0.18); border-radius: var(--radius-lg); overflow: hidden; }
  .svc-mini { background: var(--brand); padding: 34px 30px; transition: background 0.4s var(--ease); }
  .svc-mini:hover { background: var(--brand-2); }
  .svc-mini-num { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--accent); margin-bottom: 14px; letter-spacing: -0.04em; }
  .svc-mini h4 { font-family: var(--serif); font-size: 20px; font-weight: 500; color: white; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 8px; }
  .svc-mini h4 em { font-style: italic; color: var(--accent-soft); font-weight: 400; }
  .svc-mini p { font-size: 13.5px; color: rgba(245,239,227,0.65); line-height: 1.55; }

  /* ====== ACTUALITÉS / BLOG ====== */
  .news { background: var(--bg); }
  .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .news-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease); cursor: pointer; display: flex; flex-direction: column; }
  .news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
  .news-img { height: 210px; overflow: hidden; position: relative; }
  .news-img-inner { width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(1) contrast(1.05); transition: transform 0.7s var(--ease), filter 0.7s var(--ease); }
  .news-img-inner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(22,56,40,0.90), rgba(184,146,78,0.5)); mix-blend-mode: multiply; }
  .news-card:hover .news-img-inner { transform: scale(1.05); filter: grayscale(0.35) contrast(1.05); }
  .news-cat { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(244,239,227,0.95); color: var(--brand); padding: 5px 12px; border-radius: 999px; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
  .news-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
  .news-date { font-family: var(--mono); font-size: 11px; color: var(--accent-2); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
  .news-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--brand); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 12px; }
  .news-title em { font-style: italic; color: var(--accent-2); font-weight: 400; }
  .news-excerpt { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 20px; flex: 1; }
  .news-link { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s var(--ease), color 0.3s var(--ease); }
  .news-card:hover .news-link { gap: 14px; color: var(--accent-2); }
  .news-link svg { width: 14px; height: 14px; }
  /* Newsletter */
  .newsletter { background: var(--bg-2); border-radius: var(--radius-lg); padding: 56px; text-align: center; border: 1px solid var(--line); }
  .newsletter h3 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 40px); font-weight: 400; color: var(--brand); letter-spacing: -0.03em; margin-bottom: 14px; }
  .newsletter h3 em { font-style: italic; color: var(--accent-2); }
  .newsletter p { color: var(--ink-soft); font-size: 15px; max-width: 480px; margin: 0 auto 28px; }
  .newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
  .newsletter-form input { flex: 1; min-width: 220px; padding: 15px 18px; border: 1.5px solid var(--line); border-radius: 999px; font-family: var(--sans); font-size: 14.5px; background: var(--bg); }
  .newsletter-form input:focus { outline: none; border-color: var(--accent-2); background: white; box-shadow: 0 0 0 4px rgba(200,163,99,0.14); }
  .newsletter-form button { white-space: nowrap; }

  @media (max-width: 980px) {
    .svc-mini-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .page-hero { padding: 64px 0 48px; }
  }
  @media (max-width: 720px) {
    .news-grid { grid-template-columns: 1fr; }
    .newsletter { padding: 34px 24px; }
  }
/* ============================================================
   HERO CINÉMATIQUE — version premium photographique
   ============================================================ */
.hero-cinematic {
  position: relative; display: flex; align-items: center;
  overflow: hidden; background: var(--brand-deep);
  padding: 210px 0 130px; min-height: 112vh;
}
.hero-cine-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.04); animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
/* Voile plus léger : sombre à gauche (texte) → clair à droite (photo + carte) */
.hero-cine-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,42,30,0.88) 0%, rgba(15,42,30,0.50) 42%, rgba(15,42,30,0.20) 100%),
    linear-gradient(180deg, rgba(15,42,30,0.30) 0%, rgba(15,42,30,0.10) 45%, rgba(15,42,30,0.55) 100%);
}
.hero-cine-inner { position: relative; z-index: 2; width: 100%; color: var(--bg); }
.hero-cine-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.hero-cine-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 28px;
}
.hero-cine-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--accent); }
.hero-cinematic h1 {
  font-family: var(--serif); font-weight: 400; color: white;
  font-size: clamp(44px, 5.6vw, 88px); line-height: 0.96; letter-spacing: -0.04em;
  margin-bottom: 26px; font-variation-settings: "opsz" 144; max-width: 13ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-cinematic h1 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.hero-cine-lead {
  font-family: var(--serif); font-style: italic; font-size: clamp(17px, 1.7vw, 21px);
  color: rgba(245,239,227,0.88); max-width: 44ch; line-height: 1.5; margin-bottom: 34px; font-weight: 400;
}
.hero-cine-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-cine-meta {
  display: flex; gap: 30px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(200,163,99,0.30);
}
.hero-cine-meta-num { font-family: var(--serif); font-style: italic; font-size: 36px; font-weight: 300; color: white; line-height: 1; letter-spacing: -0.03em; }
.hero-cine-meta-num span { color: var(--accent); }
.hero-cine-meta-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,239,227,0.62); margin-top: 8px; }

/* Carte formulaire dans le hero (sur la photo) */
.hero-cinematic .hero-form-card { box-shadow: 0 50px 110px -40px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06); }

@media (max-width: 980px) {
  .hero-cine-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-cinematic { min-height: auto; padding: 150px 0 96px; }
  .hero-cine-meta { gap: 24px; }
}

/* ============================================================
   HEADER TRANSPARENT (overlay) — pages avec hero photo
   ============================================================ */
body.is-overlay .utility-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: transparent; color: rgba(245,239,227,0.85);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
body.is-overlay .utility-bar .cities span { color: var(--accent-soft); }
body.is-overlay .nav {
  position: fixed; top: 42px; left: 0; right: 0; z-index: 100;
  background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: top 0.35s var(--ease), background 0.35s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
/* État haut de page : texte clair, logo blanc, CTA or */
body.is-overlay .nav:not(.scrolled) .nav-menu a { color: rgba(245,239,227,0.92); }
body.is-overlay .nav:not(.scrolled) .nav-menu a:hover { color: #fff; }
body.is-overlay .nav:not(.scrolled) .nav-menu a::after { background: var(--accent-soft); }
body.is-overlay .nav:not(.scrolled) .logo-color { display: none; }
body.is-overlay .nav:not(.scrolled) .logo-white { display: block; }
body.is-overlay .nav:not(.scrolled) .nav-cta { background: var(--accent); color: var(--brand-deep); }
body.is-overlay .nav:not(.scrolled) .nav-cta:hover { background: #fff; color: var(--brand-deep); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
body.is-overlay .nav:not(.scrolled) .burger span { background: #fff; }
/* Au scroll : la barre utilitaire s'efface, la nav devient solide et remonte */
body.is-overlay.scrolled .utility-bar { transform: translateY(-100%); }
body.is-overlay .nav.scrolled {
  top: 0; background: rgba(244,239,227,0.93);
  backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-color: var(--line); box-shadow: 0 4px 24px rgba(22,56,40,0.06);
}

/* ============================================================
   BANNIÈRE PHOTOGRAPHIQUE des pages intérieures
   ============================================================ */
.page-hero--photo {
  position: relative; overflow: hidden; border-bottom: 0;
  padding: 168px 0 76px; background: var(--brand-deep); color: var(--bg);
}
.page-hero--photo .page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.04); animation: heroZoom 16s ease-out forwards;
}
.page-hero--photo .page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,42,30,0.86) 0%, rgba(15,42,30,0.55) 55%, rgba(15,42,30,0.35) 100%),
    linear-gradient(180deg, rgba(15,42,30,0.40), rgba(15,42,30,0.62));
}
.page-hero--photo .container { position: relative; z-index: 1; }
.page-hero--photo .breadcrumb { color: rgba(245,239,227,0.6); }
.page-hero--photo .breadcrumb a { color: var(--accent-soft); }
.page-hero--photo .breadcrumb a:hover { color: #fff; }
.page-hero--photo .breadcrumb span { color: rgba(245,239,227,0.4); }
.page-hero--photo .page-hero-eyebrow { color: var(--accent-soft); }
.page-hero--photo .page-hero-eyebrow::before { background: var(--accent); }
.page-hero--photo h1 { color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,0.3); }
.page-hero--photo h1 em { color: var(--accent-soft); }
.page-hero--photo .page-hero-lead { color: rgba(245,239,227,0.84); }
@media (max-width: 980px) { .page-hero--photo { padding: 132px 0 56px; } }

/* ============================================================
   PORTFOLIO RÉSIDENCES — version premium (tuiles photo plein cadre)
   ============================================================ */
.res-portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.res-tile {
  position: relative; display: block; height: 420px; border-radius: 14px;
  overflow: hidden; isolation: isolate; background: var(--brand-deep);
  border: 1px solid var(--line);
}
.res-tile-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(1.02);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.res-tile-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(22,56,40,0.82), rgba(184,146,78,0.42));
  mix-blend-mode: multiply;
}
/* Voile bas pour lisibilité du texte */
.res-tile::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(15,42,30,0.94) 0%, rgba(15,42,30,0.45) 38%, rgba(15,42,30,0.04) 66%, transparent 100%);
  transition: opacity 0.5s var(--ease);
}
.res-tile-index {
  position: absolute; top: 18px; right: 24px; z-index: 2;
  font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 42px;
  color: rgba(245,239,227,0.55); letter-spacing: -0.04em; line-height: 1;
  transition: color 0.4s var(--ease);
}
.res-tile-tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: rgba(244,239,227,0.96); color: var(--brand);
  padding: 5px 12px; border-radius: 999px; font-family: var(--mono);
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.res-tile-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px 26px 26px; }
.res-tile-rule { width: 30px; height: 2px; background: var(--accent); margin-bottom: 16px; transition: width 0.45s var(--ease); }
.res-tile:hover .res-tile-rule { width: 56px; }
.res-tile-name {
  font-family: var(--serif); font-size: 25px; font-weight: 500; color: #fff;
  letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 9px;
}
.res-tile-meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(245,239,227,0.78); display: flex; align-items: center; gap: 9px;
}
.res-tile-meta i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; font-style: normal; }
.res-tile-cta {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-soft);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), opacity 0.4s var(--ease), margin-top 0.45s var(--ease);
}
.res-tile-cta svg { width: 14px; height: 14px; }
.res-tile:hover .res-tile-cta { max-height: 40px; opacity: 1; }
.res-tile:hover .res-tile-img { transform: scale(1.07); filter: grayscale(0.3) contrast(1.05) brightness(1.04); }
.res-tile:hover .res-tile-index { color: var(--accent); }
.res-tile:hover::after { background: linear-gradient(to top, rgba(15,42,30,0.96) 0%, rgba(15,42,30,0.55) 44%, rgba(15,42,30,0.10) 72%, transparent 100%); }

@media (max-width: 980px) { .res-portfolio { grid-template-columns: 1fr 1fr; } .res-tile { height: 360px; } }
@media (max-width: 720px) { .res-portfolio { grid-template-columns: 1fr; } .res-tile { height: 380px; } }

/* ============================================================
   RESPONSIVE GLOBAL (reconstruit) — tablette & mobile
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid, .engagements-grid, .contact-form-grid, .expansion-grid { grid-template-columns: 1fr; gap: 48px; }
  .atouts-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .audit-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Menu mobile (burger) ---- */
@media (max-width: 960px) {
  .burger {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; width: 46px; height: 46px; padding: 0; border-radius: 10px;
    position: relative; z-index: 120;
  }
  .burger span { margin: 0; width: 22px; }
  .nav-cta { display: none; }
  body.is-overlay .nav:not(.scrolled) .burger { background: var(--brand); box-shadow: 0 4px 14px rgba(0,0,0,0.28); }
  body.is-overlay .nav:not(.scrolled) .burger span { background: #fff; box-shadow: none; }
  .nav.scrolled .burger { background: var(--brand); }
  .nav.scrolled .burger span { background: #fff; box-shadow: none; }
  body.menu-open .burger { background: transparent; box-shadow: none; }
  .nav-menu {
    position: fixed; inset: 0; z-index: 96; margin: 0;
    background: var(--brand-deep);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; padding: 90px 28px 40px;
    transform: translateX(100%); transition: transform 0.42s var(--ease);
  }
  .nav-menu.open { transform: none; }
  .nav-menu a { color: var(--bg); font-family: var(--serif); font-size: clamp(26px, 7vw, 36px); font-weight: 400; padding: 12px 0; letter-spacing: -0.02em; }
  .nav-menu a::after { display: none; }
  .nav-menu a.active { color: var(--accent-soft); }
  /* burger en X quand ouvert + toujours visible */
  body.menu-open { overflow: hidden; }
  body.menu-open .burger span { background: #fff; }
  .burger span { box-shadow: 0 1px 5px rgba(0,0,0,0.45); }
  .burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  /* en mode overlay, garder le burger blanc en haut de page */
  body.is-overlay .nav:not(.scrolled) .burger span { background: #fff; }
}

/* ---- Mobile ---- */
@media (max-width: 720px) {
  .container { padding: 0 22px; }
  section { padding: 78px 0; }
  .utility-bar .right { display: none; }
  .utility-bar .cities { font-size: 9.5px; letter-spacing: 0.06em; }
  .section-head { margin-bottom: 44px; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .engagement-item { grid-template-columns: 1fr; gap: 12px; }
  .valeur-row { grid-template-columns: 46px 1fr; gap: 14px; padding: 24px 20px; }
  .valeur-row .valeur-desc { grid-column: 1 / -1; }
  .service { padding: 30px 24px; gap: 16px; }
  .service-num { font-size: 28px; width: 44px; }
  .featured-card { padding: 32px 24px; min-height: 420px; }
  .featured-meta { gap: 22px; }
  .cities-grid { grid-template-columns: 1fr; }
  .about-quote { padding: 34px 28px; }
  /* Hero photo mobile */
  .nav-inner { padding: 14px 0; }
  .nav .container { padding-left: 30px; padding-right: 30px; }
  .hero-cinematic { padding: 200px 0 136px; min-height: auto; }
  .hero-cinematic .container { padding-left: 30px; padding-right: 30px; }
  .hero-cine-meta { gap: 18px; margin-top: 32px; padding-top: 22px; }
  .hero-cine-meta-num { font-size: 30px; }
  .hero-form-card { padding: 24px; }
  .page-hero--photo { padding: 116px 0 50px; }
  .res-tile { height: 340px; }
  /* Boutons un peu plus compacts */
  .btn { padding: 15px 24px; font-size: 14px; }
}

@media (max-width: 400px) {
  .stats-bar-grid, .hero-cine-meta { gap: 14px; }
  .hero-cine-meta-num { font-size: 26px; }
}

/* ===== Message de succès des formulaires (Web3Forms) ===== */
.bq-success { text-align: center; padding: 26px 8px; }
.bq-success-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-bg); color: var(--brand); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.bq-success-ic svg { width: 30px; height: 30px; }
.bq-success h3 { font-size: 24px; font-weight: 700; color: var(--brand); margin-bottom: 8px; letter-spacing: -0.02em; }
.bq-success p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; max-width: 32ch; margin: 0 auto; }

/* ============================================================
   ANIMATIONS — entrée au scroll + hero + micro-interactions
   IMPORTANT : on NE cache RIEN via CSS. C'est le JS qui masque (en inline)
   uniquement les éléments hors écran, et les révèle au scroll — avec
   un filet de sécurité qui rend tout visible après quelques secondes.
   Ainsi, en cas de souci JS, AUCUN contenu ne reste invisible.
   ============================================================ */

/* Boutons — micro-interactions (sheen déjà présent, on ajoute le retour tactile) */
.btn, .hero-form-submit, .form-card-full .submit-btn, .nav-cta { will-change: transform; }
.btn:active, .hero-form-submit:active, .form-card-full .submit-btn:active, .nav-cta:active { transform: translateY(0) scale(.985); }
.nav-cta svg, .btn svg, .hero-form-submit svg { transition: transform .3s var(--ease); }
.nav-cta:hover svg { transform: translateX(3px); }

/* Cartes — transition douce garantie + petite mise en avant de l'image */
.residence, .atout, .city-card, .news-card, .featured-card, .res-tile {
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.featured-card:hover .featured-card-content { transform: translateY(-4px); }
.featured-card-content { transition: transform .5s var(--ease); }

@media (prefers-reduced-motion: reduce){
  .hero-cine-bg, .page-hero-bg, .feat-img, .hero-img { animation: none !important; }
}

/* ============================================================
   TYPO simple & pro — Hanken Grotesk (titres) + Inter (corps/étiquettes)
   ============================================================ */
/* Titres : gras net, interlettrage serré, sans italique */
.section-title, .hero h1, .hero-cinematic h1, .page-hero h1, .footer-cta-title,
.cta-band h2, .expansion h2, .featured-card h3, .hero-form-card h3,
.form-card-full .form-head h3, .res-tile-name, .engagement-title, .valeur-title,
.atout h3, .service h4, .svc-mini h4, .news-title, .newsletter h3, .about-quote-text {
  font-weight: 700; letter-spacing: -0.02em;
}
.hero-cinematic h1, .hero h1, .section-title, .page-hero h1,
.footer-cta-title, .cta-band h2, .expansion h2 { font-weight: 800; letter-spacing: -0.03em; }

/* Accents (mots en doré) : couleur conservée, sans italique, même graisse */
.section-title em, .hero-cinematic h1 em, .hero h1 em, .page-hero h1 em,
.footer-cta-title em, .cta-band h2 em, .expansion h2 em, .about-quote-text em,
.featured-card h3 em, .hero-form-card h3 em, .res-tile-name em, .engagement-title em,
.valeur-title em, .atout h3 em, .service h4 em, .svc-mini h4 em, .news-title em,
.form-card-full .form-head h3 em {
  font-style: normal; font-weight: inherit; color: var(--accent-2);
}
.logo-word, .footer-logo { font-weight: 800; letter-spacing: -0.01em; }
.logo-word em, .footer-logo em { font-style: normal; }

/* Sous-titres & citations : droits */
.section-sub, .hero-cine-lead, .hero-lead, .page-hero-lead, .expansion-lead,
.engagements-aside, .featured-lead, .about-text .lead, .footer-cta-sub,
.cta-band p, .about-quote-cite, .hero-form-sub, .footer-tagline { font-style: normal; }
.section-sub, .hero-cine-lead, .hero-lead, .page-hero-lead, .about-text .lead { font-weight: 400; }

/* Grands chiffres : droits et gras */
.hero-cine-meta-num, .stat-num, .atout-num, .service-num, .valeur-num,
.res-tile-index, .featured-meta-value, .svc-mini-num, .engagement-num { font-style: normal; }
.hero-cine-meta-num, .stat-num, .atout-num, .res-tile-index, .svc-mini-num,
.service-num, .featured-meta-value { font-weight: 700; }

/* Étiquettes : majuscules + interlettrage */
.section-tag, .page-hero-eyebrow, .hero-cine-eyebrow, .hero-eyebrow,
.utility-bar .cities, .footer-pillar, .res-tile-meta, .res-tile-tag,
.stat-label, .hero-cine-meta-label, .contact-info-label, .form-group label,
.hero-form-tag, .trust-item, .footer h5, .footer-bottom, .residence-meta,
.featured-tag, .featured-meta-label, .city-tag, .news-cat, .news-date,
.about-quote-tag { font-weight: 600; }

/* ============================================================
   RESPONSIVE — corrections fines (mobile & tablette)
   ============================================================ */
/* Anti-débordement horizontal global */
html, body { max-width: 100%; overflow-x: hidden; }
img, .res-tile, .featured-card, .hero-form-card { max-width: 100%; }

@media (max-width: 600px) {
  /* Chiffres du hero en 2 x 2 (au lieu de 4 serrés) */
  .hero-cine-meta { gap: 24px 16px; }
  .hero-cine-meta-item { flex: 0 0 calc(50% - 8px); }
  /* Boutons du hero pleine largeur, empilés */
  .hero-cine-ctas { width: 100%; gap: 12px; }
  .hero-cine-ctas .btn { flex: 1 1 100%; justify-content: center; }
  /* Titre hero adapté */
  .hero-cinematic h1 { font-size: clamp(34px, 11vw, 48px); }
  .hero-cine-lead { font-size: 16px; }
  /* Bannières de pages intérieures : titres adaptés */
  .page-hero--photo h1, .page-hero h1 { font-size: clamp(30px, 9vw, 44px); }
  /* Carte "signature" : texte lisible */
  .featured-card h3 { font-size: clamp(26px, 8vw, 38px); }
  /* Citation About : guillemet décoratif réduit pour ne pas gêner */
  .about-quote::after { font-size: 70px; top: 10px; right: 18px; }
}

@media (max-width: 400px) {
  .hero-cine-meta-num { font-size: 26px; }
  .hero-cine-meta { gap: 18px 14px; }
  .hero-form-card { padding: 22px; }
}

/* ============================================================
   MENU MOBILE — burger aligné avec le logo (dans la barre nav)
   ============================================================ */
@media (max-width: 960px) {
  .utility-bar, body.is-overlay .utility-bar { z-index: 95; }
  .nav, body.is-overlay .nav { z-index: 100; }
  .nav-cta { display: none !important; }

  /* Burger DANS la barre nav → même ligne que le logo, suit la nav au scroll */
  .burger {
    position: relative; z-index: 110;
    display: flex !important; flex-direction: column; align-items: center; justify-content: center;
    width: 46px; height: 46px; padding: 0; border-radius: 10px; gap: 5px;
    background: rgba(15,42,30,0.60);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.22);
  }
  .burger span { display: block !important; width: 24px; height: 2px; margin: 0; background: #fff !important; box-shadow: none; transition: transform .3s var(--ease), opacity .3s var(--ease); }
  /* nav solide (au scroll) : pastille verte pleine, contraste sur fond clair */
  .nav.scrolled .burger { background: var(--brand); }

  /* ---- Panneau plein écran ---- */
  .nav-menu { z-index: 90; padding-top: 112px; }
  body.menu-open { overflow: hidden; }
  body.menu-open .utility-bar { transform: translateY(-100%); }
  body.menu-open .nav, body.menu-open .nav.scrolled {
    top: 0; background: transparent !important; border-color: transparent; box-shadow: none;
    -webkit-backdrop-filter: none !important; backdrop-filter: none !important; transform: none !important;
  }
  /* logo blanc + X restent alignés en haut, au-dessus du panneau */
  body.menu-open .logo { position: relative; z-index: 130; }
  body.menu-open .logo .logo-color { display: none; }
  body.menu-open .logo .logo-white { display: block; }
  body.menu-open .burger,
  body.menu-open .nav.scrolled .burger { z-index: 130; background: rgba(255,255,255,0.14) !important; box-shadow: none; }
  body.menu-open .burger span { background: #fff !important; }
  /* X */
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Liens du menu */
  .nav-menu a { font-family: var(--sans); font-weight: 600; font-size: 26px; }
}

/* ============================================================
   MENU MOBILE — version élégante / éditoriale
   ============================================================ */
@media (max-width: 960px) {
  .nav-menu {
    align-items: stretch; justify-content: center;
    gap: 0; padding: 100px 34px 92px;
    background:
      radial-gradient(120% 70% at 100% 0%, rgba(200,163,99,0.12), transparent 58%),
      linear-gradient(180deg, #133526 0%, var(--brand-deep) 52%, #0b2117 100%);
    counter-reset: navc;
  }
  .nav-menu li {
    counter-increment: navc;
    border-top: 1px solid rgba(200,163,99,0.16);
    opacity: 0; transform: translateY(16px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
  }
  .nav-menu li:last-child { border-bottom: 1px solid rgba(200,163,99,0.16); }
  .nav-menu a {
    display: flex !important; align-items: baseline; gap: 18px;
    font-family: var(--serif); font-weight: 500; font-size: clamp(25px, 7vw, 33px);
    letter-spacing: -0.025em; color: rgba(245,239,227,0.95);
    padding: 23px 6px 23px 2px; position: relative;
  }
  .nav-menu a::before {
    content: "0" counter(navc);
    font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
    color: var(--accent); opacity: 0.9; min-width: 24px;
  }
  .nav-menu a::after { display: none; }
  .nav-menu a.active { color: #fff; }
  .nav-menu a.active::before { opacity: 1; }

  /* signature en bas du panneau */
  .nav-menu::after {
    content: "L\2019 art de g\00E9 rer la copropri\00E9 t\00E9";
    position: absolute; left: 34px; right: 34px; bottom: 34px;
    padding-top: 20px; border-top: 1px solid rgba(200,163,99,0.18);
    font-family: var(--serif); font-style: normal; font-size: 14px; font-weight: 500;
    letter-spacing: 0.01em; color: rgba(200,163,99,0.78); text-align: left;
  }

  /* entrée échelonnée des liens à l'ouverture */
  body.menu-open .nav-menu li { opacity: 1; transform: none; }
  body.menu-open .nav-menu li:nth-child(1) { transition-delay: .14s; }
  body.menu-open .nav-menu li:nth-child(2) { transition-delay: .20s; }
  body.menu-open .nav-menu li:nth-child(3) { transition-delay: .26s; }
  body.menu-open .nav-menu li:nth-child(4) { transition-delay: .32s; }
  body.menu-open .nav-menu li:nth-child(5) { transition-delay: .38s; }
}

/* ============================================================
   FINITION PRO — micro-détails de design
   (mêmes couleurs, mêmes polices — uniquement du raffinement)
   ============================================================ */

/* Sélection de texte aux couleurs de la marque */
::selection { background: rgba(200,163,99,0.35); }

/* Focus clavier net et élégant (accessibilité) */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px;
}

/* Champs de formulaire : focus doré doux */
.form-group input:focus, .form-group select:focus, .form-group textarea:focus,
.newsletter-form input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,163,99,0.16);
}

/* Ombres plus douces et plus profondes (moins « boîte ») */
.hero-form-card {
  border-radius: 18px;
  box-shadow: 0 40px 90px -30px rgba(15,42,30,0.5), 0 4px 18px rgba(15,42,30,0.07), 0 0 0 1px rgba(22,56,40,0.04);
}
.form-card-full {
  box-shadow: 0 34px 80px -28px rgba(22,56,40,0.22), 0 2px 10px rgba(22,56,40,0.05);
}
.wa-float { box-shadow: 0 12px 32px rgba(37,211,102,0.35); }

/* Liseré doré discret en bas des heros photo — assoit la transition */
.hero-cinematic, .page-hero--photo { border-bottom: 1px solid rgba(200,163,99,0.30); }

/* Carte signature : hairline dorée intérieure + fondu bas plus doux */
.featured-card { box-shadow: inset 0 0 0 1px rgba(200,163,99,0.20), 0 30px 70px -30px rgba(15,42,30,0.35); }

/* Tuiles Références : zoom photo doux au survol */
.res-tile { border-radius: 16px; overflow: hidden; }
.res-tile .res-tile-img { transition: transform 1s var(--ease); will-change: transform; }
.res-tile:hover .res-tile-img { transform: scale(1.045); }
.res-tile { transition: box-shadow .45s var(--ease); }
.res-tile:hover { box-shadow: 0 26px 60px -24px rgba(15,42,30,0.45), inset 0 0 0 1px rgba(200,163,99,0.25); }

/* Grilles de services (fond vert) : survol subtilement éclairci */
.service:hover, .svc-mini:hover { filter: brightness(1.07); }

/* Tableau valeurs (Entreprise) : survol de ligne délicat */
.valeur-row { transition: background .3s var(--ease); }
.valeur-row:hover { background: var(--bg-2); }

/* Bande CTA intermédiaire : plus compacte + filets dorés,
   pour ne plus concurrencer le CTA du footer */
.cta-band { padding: 84px 0; border-top: 1px solid rgba(200,163,99,0.16); border-bottom: 1px solid rgba(200,163,99,0.16); }

/* Cartes villes : survol déjà défini — on aligne le rayon */
.city-card { border-radius: 14px; }

/* Défilement fluide vers les ancres */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Desktop : séparateurs hairline entre les chiffres du hero */
@media (min-width: 961px) {
  .hero-cine-meta { gap: 0; }
  .hero-cine-meta-item { padding: 0 34px; }
  .hero-cine-meta-item:first-child { padding-left: 0; }
  .hero-cine-meta-item + .hero-cine-meta-item { border-left: 1px solid rgba(200,163,99,0.25); }
}
/* ===== Crédit agence — discret, tout en bas ===== */
.footer-credit {
  text-align: center;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  color: rgba(245,239,227,0.32);
}
.footer-credit a {
  color: rgba(200,163,99,0.70);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.11em;
  transition: color 0.25s var(--ease);
}
.footer-credit a:hover { color: var(--accent-soft); }

/* ============================================================
   ARTICLES / BLOG — typographie de lecture
   ============================================================ */
.article-section { padding: 84px 0 100px; }
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); text-decoration: none; margin-bottom: 26px; transition: gap .3s var(--ease), color .3s var(--ease); }
.article-back:hover { color: var(--accent-2); gap: 12px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 26px; }
.article-meta .cat { color: var(--brand); font-weight: 600; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.article-body { font-family: var(--sans); font-size: 17.5px; line-height: 1.78; color: var(--ink-soft); }
.article-body > p { margin-bottom: 22px; }
.article-body .article-lead { font-family: var(--serif); font-size: 21px; line-height: 1.6; color: var(--ink); font-weight: 500; margin-bottom: 30px; }
.article-body h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 30px); font-weight: 700; color: var(--brand); letter-spacing: -0.02em; line-height: 1.2; margin: 44px 0 16px; }
.article-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--brand); margin: 30px 0 12px; }
.article-body ul { margin: 0 0 22px; padding: 0; list-style: none; }
.article-body li { position: relative; padding-left: 26px; margin-bottom: 11px; }
.article-body li::before { content: ''; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.article-cta { margin-top: 50px; padding: 36px 34px; background: var(--brand); color: var(--bg); border-radius: var(--radius-lg); text-align: center; }
.article-cta h3 { font-family: var(--serif); font-size: 25px; font-weight: 600; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
.article-cta h3 em { color: var(--accent-soft); font-style: italic; }
.article-cta p { color: rgba(245,239,227,0.72); font-size: 15px; margin-bottom: 22px; line-height: 1.6; }
.article-related { margin-top: 84px; padding-top: 44px; border-top: 1px solid var(--line); }
.article-related .section-tag { margin-bottom: 26px; }
/* menu mobile : 6e lien (Articles) */
@media (max-width: 960px) { body.menu-open .nav-menu li:nth-child(6) { transition-delay: .44s; } }

/* ===== Bouton WhatsApp flottant retiré (masquait le formulaire) ===== */


/* ===== Blog : hero d'article + carte cliquable ===== */
.page-hero--photo.is-article h1 { font-size: clamp(28px, 3.6vw, 44px); max-width: 20ch; }
a.news-card { text-decoration: none; color: inherit; }

/* fix : taille des icônes dans le lien retour article */
.article-back svg { width: 16px; height: 16px; flex-shrink: 0; }
.article-cta .btn svg { width: 18px; height: 18px; }

/* ============================================================
   NOTRE APPLICATION — Direction A « Split premium »
   Toutes les classes sont préfixées .app- ; couleurs via variables.
   ============================================================ */
.app-showcase { background: var(--bg); position: relative; overflow: hidden; }
.app-showcase::before { content: ''; position: absolute; top: -160px; left: -180px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(200,163,99,0.14), transparent 66%); border-radius: 50%; pointer-events: none; }
.app-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; position: relative; z-index: 1; }

/* --- Colonne contenu (gauche) --- */
.app-content .section-head { margin-bottom: 46px; }
.app-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0 0 40px; }
.app-feature { display: flex; gap: 20px; align-items: flex-start; padding: 18px 22px; border-radius: var(--radius); border: 1px solid transparent; transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.app-feature:hover { background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.app-feature-icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-bg); color: var(--brand); border: 1px solid var(--line); transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease); }
.app-feature:hover .app-feature-icon { background: var(--brand); color: var(--accent-soft); border-color: var(--brand); }
.app-feature-icon svg { width: 24px; height: 24px; }
.app-feature-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--brand); margin-bottom: 5px; line-height: 1.1; }
.app-feature-body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; max-width: 420px; }
.app-cta { margin-top: 4px; }

/* --- Colonne visuel (droite) : mockup téléphone en CSS pur --- */
.app-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.app-visual::before { content: ''; position: absolute; width: 360px; height: 360px; max-width: 92%; border-radius: 50%; background: radial-gradient(circle, rgba(200,163,99,0.20), transparent 62%); z-index: 0; }

.app-phone { position: relative; z-index: 1; width: 300px; max-width: 80vw; aspect-ratio: 300 / 616; background: linear-gradient(165deg, var(--brand-2), var(--brand-deep)); border-radius: 46px; padding: 13px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15,42,30,0.55), inset 0 0 0 2px rgba(221,195,149,0.10); }
.app-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 116px; height: 26px; background: var(--brand-deep); border-radius: 999px; z-index: 3; }

.app-screen { position: relative; height: 100%; width: 100%; background: var(--bg); border-radius: 34px; overflow: hidden; display: flex; flex-direction: column; padding: 16px 15px 14px; }

.app-statusbar { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--brand); padding: 2px 6px 14px; letter-spacing: 0.02em; }
.app-statusbar-dots { display: inline-flex; gap: 4px; align-items: center; }
.app-statusbar-dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); opacity: 0.5; display: block; }

.app-appbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding: 0 4px; }
.app-hello { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--brand); letter-spacing: -0.01em; }
.app-res { font-family: var(--mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); margin-top: 3px; }
.app-avatar { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: var(--accent-soft); display: grid; place-items: center; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }

.app-balance { background: linear-gradient(150deg, var(--brand-2), var(--brand-deep)); color: var(--bg); border-radius: 18px; padding: 15px 18px 16px; position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.app-balance::before { content: ''; position: absolute; top: -34px; right: -22px; width: 120px; height: 120px; background: radial-gradient(circle, rgba(200,163,99,0.30), transparent 68%); border-radius: 50%; }
.app-balance-tag { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-soft); margin-bottom: 8px; position: relative; }
.app-balance-amount { font-family: var(--serif); font-size: 30px; font-weight: 600; letter-spacing: -0.03em; color: #fff; line-height: 1; position: relative; }
.app-balance-amount span { font-size: 13px; font-weight: 500; color: var(--accent-soft); margin-left: 3px; letter-spacing: 0; }
.app-balance-meta { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.04em; color: rgba(244,239,227,0.74); position: relative; }
.app-balance-meta svg { width: 12px; height: 12px; color: var(--accent-soft); flex: 0 0 auto; }

.app-tiles-label { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); margin: 16px 4px 10px; }
.app-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.app-tile { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 12px 13px; position: relative; }
.app-tile-ic { width: 30px; height: 30px; border-radius: 9px; background: var(--accent-bg); color: var(--brand); display: grid; place-items: center; margin-bottom: 9px; }
.app-tile-ic svg { width: 17px; height: 17px; }
.app-tile-name { font-family: var(--sans); font-size: 12.5px; font-weight: 600; color: var(--brand); letter-spacing: -0.01em; }
.app-tile-meta { font-family: var(--mono); font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-top: 2px; }
.app-tile-badge { position: absolute; top: 11px; right: 11px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 999px; background: var(--accent); color: var(--brand-deep); font-family: var(--mono); font-size: 9px; font-weight: 700; display: grid; place-items: center; }

.app-charge { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px 13px; margin-top: 9px; }
.app-charge-top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.app-charge-top b { font-family: var(--sans); font-size: 11.5px; font-weight: 600; color: var(--brand); }
.app-charge-val { font-family: var(--mono); font-size: 10px; color: var(--ink-soft); letter-spacing: 0.02em; white-space: nowrap; }
.app-charge-bar { height: 7px; border-radius: 999px; background: var(--bg-3); margin: 9px 0 7px; overflow: hidden; }
.app-charge-bar > span { display: block; height: 100%; width: 66%; border-radius: 999px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); }
.app-charge-note { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }

.app-homebar { width: 96px; height: 4px; border-radius: 999px; background: var(--brand); opacity: 0.22; margin: 14px auto 2px; }

/* Chip flottant « temps réel » — renforce le suivi live, masqué sur mobile */
.app-float { position: absolute; z-index: 4; top: 11%; left: -4%; display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 11px 15px 11px 13px; box-shadow: var(--shadow-md); }
.app-float b { display: block; font-family: var(--sans); font-size: 12px; font-weight: 600; color: var(--brand); letter-spacing: -0.01em; }
.app-float i { display: block; font-family: var(--mono); font-style: normal; font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-top: 2px; }
.app-float-dot { flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px rgba(200,163,99,0.18); }

/* --- Responsive : empilé sous 900px --- */
@media (max-width: 900px) {
  .app-grid { grid-template-columns: 1fr; gap: 56px; }
  .app-visual { order: 2; }
  .app-feature:hover { transform: none; }
  .app-float { display: none; }
}
@media (max-width: 520px) {
  .app-feature { padding: 15px 2px; gap: 16px; }
  .app-feature:hover { background: transparent; border-color: transparent; box-shadow: none; }
  .app-feature-icon { width: 46px; height: 46px; }
  .app-phone { width: 280px; }
}

/* --- Corrections qualité (jury) --- */
.app-phone { aspect-ratio: auto; }        /* pas de hauteur figée -> pas de clip vertical */
.app-screen { height: auto; }             /* ecran a la hauteur naturelle du contenu */
.app-balance-meta { font-size: 10px; color: rgba(244,239,227,0.86); }
.app-tile-meta, .app-charge-note { font-size: 9.5px; }
.app-res, .app-tiles-label, .app-balance-tag { font-size: 10px; }
.app-secure { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-soft); }
.app-secure svg { width: 15px; height: 15px; color: var(--accent-2); flex: 0 0 auto; }
@media (prefers-reduced-motion: reduce) {
  .app-feature, .app-feature-icon { transition: none; }
  .app-feature:hover { transform: none; }
}

/* --- App section : garde-fou anti-débordement mobile --- */
@media (max-width: 900px) {
  .app-grid { grid-template-columns: 1fr; }
  .app-content, .app-visual, .app-feature, .app-feature-body { min-width: 0; }
  .app-feature-body p { max-width: 100%; }
  .app-showcase .section-title { font-size: clamp(30px, 8.5vw, 44px); }
  .app-showcase .container { overflow: hidden; }
}

/* --- App section : repositionnement du chip flottant (ne couvre plus l'en-tête de l'app) --- */
.app-float { top: 33%; left: -7%; }

/* --- App mockup : liste documents (remplace la carte montants) --- */
.app-doclist { margin-top: 10px; display: flex; flex-direction: column; gap: 9px; }
.app-doc { display: flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: 11px; font-weight: 500; color: var(--brand); }
.app-doc svg { width: 15px; height: 15px; color: var(--accent-2); flex: 0 0 auto; }
.app-doc span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.app-doc i { font-family: var(--mono); font-style: normal; font-size: 8px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); flex: 0 0 auto; }

/* ============================================================
   App mockup — rendu 3D (perspective + profondeur + flottement)
   ============================================================ */
.app-visual { perspective: 1500px; perspective-origin: 55% 42%; }
.app-phone {
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(4deg) rotateZ(-1.5deg);
  transition: transform 0.8s var(--ease);
  box-shadow:
    -36px 48px 90px -34px rgba(15,42,30,0.55),
    -10px 14px 34px -14px rgba(15,42,30,0.38),
    0 0 0 1px rgba(15,42,30,0.55),
    inset 0 0 0 2px rgba(221,195,149,0.12);
  animation: appFloat 6.5s ease-in-out infinite;
}
.app-phone:hover { animation: none; transform: rotateY(-7deg) rotateX(1.5deg) rotateZ(0deg) translateY(-6px); }
@keyframes appFloat {
  0%, 100% { transform: rotateY(-18deg) rotateX(4deg) rotateZ(-1.5deg) translateY(0); }
  50%      { transform: rotateY(-18deg) rotateX(4deg) rotateZ(-1.5deg) translateY(-13px); }
}
/* le chip flottant pop legerement en avant */
.app-float { transform: translateZ(48px); }

@media (max-width: 900px) {
  .app-visual { perspective: none; }
  .app-phone { transform: none; animation: none;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15,42,30,0.55), inset 0 0 0 2px rgba(221,195,149,0.10); }
  .app-float { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .app-phone { animation: none; }
}

/* ============================================================
   App mockup — 3D pro / premium (mise en scene produit)
   ============================================================ */
.app-visual { perspective: 1350px; perspective-origin: 52% 38%; }

/* Spotlight de fond */
.app-visual::before {
  content: ''; position: absolute; z-index: 0; top: -10%; left: -8%;
  width: 116%; height: 120%; max-width: none; border-radius: 50%;
  background:
    radial-gradient(closest-side at 62% 40%, rgba(200,163,99,0.26), transparent 70%),
    radial-gradient(closest-side at 44% 66%, rgba(31,74,54,0.13), transparent 74%);
  filter: blur(4px); pointer-events: none;
}
/* Ombre de contact au sol */
.app-visual::after {
  content: ''; position: absolute; z-index: 0; bottom: 1%; left: 50%;
  width: 62%; height: 40px; transform: translateX(-48%) rotate(-2deg);
  background: radial-gradient(ellipse, rgba(15,42,30,0.38), transparent 72%);
  filter: blur(14px); border-radius: 50%; pointer-events: none;
}
/* Ombre du telephone : multi-couche + liseres */
.app-phone {
  box-shadow:
    -42px 54px 100px -36px rgba(15,42,30,0.55),
    -14px 20px 44px -16px rgba(15,42,30,0.40),
    0 0 0 1px rgba(15,42,30,0.60),
    inset 0 0 0 1.5px rgba(221,195,149,0.14),
    inset 0 2px 1px rgba(255,255,255,0.10);
}
/* Reflet verre diagonal sur l'ecran */
.app-screen::after {
  content: ''; position: absolute; inset: 0; z-index: 6; pointer-events: none; border-radius: 34px;
  background: linear-gradient(126deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 20%, transparent 40%);
}
/* Chip avant : bien en avant + ombre portee */
.app-float { transform: translateZ(90px); box-shadow: -6px 16px 34px -10px rgba(15,42,30,0.40), 0 1px 2px rgba(15,42,30,0.10); }
/* 2e chip : couche de profondeur */
.app-float2 {
  position: absolute; z-index: 2; right: -4%; bottom: 15%; transform: translateZ(22px);
  display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 10px 14px 10px 11px;
  box-shadow: 10px 22px 40px -14px rgba(15,42,30,0.35), 0 1px 2px rgba(15,42,30,0.08);
}
.app-float2-ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; background: var(--accent-bg); color: var(--brand); display: grid; place-items: center; }
.app-float2-ic svg { width: 16px; height: 16px; }
.app-float2 b { display: block; font-family: var(--sans); font-size: 11.5px; font-weight: 600; color: var(--brand); letter-spacing: -0.01em; }
.app-float2 i { display: block; font-family: var(--mono); font-style: normal; font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-top: 2px; }

@media (max-width: 900px) {
  .app-visual::after, .app-float2, .app-screen::after { display: none; }
}

/* --- App section : espace bas réduit en mobile --- */
@media (max-width: 720px) {
  .app-showcase { padding-bottom: 34px; }
}

/* ============================================================
   App mockup — désactivation TOTALE de la 3D en mobile
   (corrige le phantom space Safari : perspective ré-activée par erreur)
   ============================================================ */
@media (max-width: 900px) {
  .app-visual { perspective: none !important; transform: none !important; }
  .app-phone {
    transform: none !important;
    animation: none !important;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15,42,30,0.55), inset 0 0 0 2px rgba(221,195,149,0.10) !important;
  }
  .app-visual::before,
  .app-visual::after,
  .app-screen::after,
  .app-float,
  .app-float2 { display: none !important; }
}

/* ============================================================
   App mockup mobile — le visuel épouse le téléphone (zéro slack)
   Cause du grand vide : centrage vertical flex + aspect-ratio réservé
   ============================================================ */
@media (max-width: 900px) {
  .app-visual {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .app-phone {
    aspect-ratio: auto !important;
    height: auto !important;
    margin: 0 auto !important;
  }
  .app-screen { height: auto !important; }
  .app-showcase { padding-bottom: 40px !important; }
  .app-grid { align-items: start !important; }
}

/* ============================================================
   FACILITY MANAGEMENT — « Le Catalogue des Prestations »
   Section catalogue claire (bg-2). Classes préfixées .fm-.
   ============================================================ */
.fm-cards { background: var(--bg-2); position: relative; }
/* liseré or en haut — clôt la bande sombre précédente */
.fm-cards::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,163,99,0.35), transparent); }

/* Head + CTA inline */
.fm-head { max-width: 720px; }
.fm-head .section-sub { margin-top: 22px; max-width: 640px; }
.fm-cta.fm-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 34px; }
.fm-cta svg { width: 18px; height: 18px; transition: transform .45s var(--ease); }
.fm-cta:hover svg { transform: translateX(4px); }
.fm-cta:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 3px; }

/* Grille de cartes */
.fm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Carte */
.fm-card { position: relative; display: flex; flex-direction: column; padding: 34px 30px 32px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); }
.fm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.fm-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 26px; }
.fm-icon { width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; background: var(--accent-bg); color: var(--brand); border: 1px solid var(--line); transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease); }
.fm-icon svg { width: 24px; height: 24px; }
.fm-card:hover .fm-icon { background: var(--brand); color: var(--bg); border-color: var(--brand); }
.fm-num { font-family: var(--serif); font-style: italic; font-size: 16px; letter-spacing: .06em; color: var(--accent-2); line-height: 1; padding-top: 6px; }
.fm-card-title { font-family: var(--serif); font-size: 21px; line-height: 1.18; letter-spacing: -0.02em; color: var(--brand); margin-bottom: 12px; overflow-wrap: anywhere; }
.fm-card-desc { font-family: var(--sans); font-size: 14.5px; line-height: 1.62; color: var(--ink-soft); margin-bottom: 22px; }
/* liseré or bas — épinglé au pied, s'allonge au survol */
.fm-card-rule { margin-top: auto; height: 2px; width: 34px; background: var(--accent); border-radius: 2px; transition: width .5s var(--ease); }
.fm-card:hover .fm-card-rule { width: 58px; }

/* Note de réassurance */
.fm-note { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--sans); font-size: 14px; color: var(--ink-soft); text-align: center; }
.fm-note-dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); }

/* Responsive */
@media (max-width: 960px) { .fm-grid { grid-template-columns: 1fr; max-width: 480px; } }
@media (max-width: 400px) { .fm-card { padding: 28px 24px 26px; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fm-card, .fm-icon, .fm-card-rule, .fm-cta svg { transition: none; }
  .fm-card:hover { transform: none; }
  .fm-cta:hover svg { transform: none; }
}
