/* ============ DESIGN SYSTEM — V3 MODERNE & DYNAMIQUE ============ */
:root {
  --ink:    #0e0f12;
  --ink-2:  #17181d;
  --body:   #45474f;
  --muted:  #82858f;
  --line:   #e4e4e0;
  --light:  #f1f1ec;
  --light-2:#e8e8e1;
  --paper:  #ffffff;
  --lime:   #FE7F2D;
  --lime-d: #ec6f1d;
  --lime-ink: #2e1400;

  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 20px 50px -22px rgba(14,15,18,.3);

  --maxw: 1240px;
  --disp: 'Space Grotesk', system-ui, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --s-6: 80px; --s-7: 112px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); color: var(--body); background: var(--light);
  line-height: 1.6; font-size: 17px; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--disp); color: var(--ink); line-height: 1.0; font-weight: 600; letter-spacing: -0.03em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 6.5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--lime); color: var(--lime-ink); }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

/* skip link (accessibilité) */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--ink); color: var(--light); padding: 12px 18px; border-radius: 0 0 12px 0; font-family: var(--disp); font-weight: 600; }
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.section { padding: var(--s-7) 0; }
.section.tight { padding: var(--s-6) 0; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--disp); font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); background: var(--lime); padding: 7px 14px; border-radius: 999px; }
.eyebrow.on-dark { color: var(--ink); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--body); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--disp); font-weight: 600; font-size: 1rem; padding: 15px 28px; border: 2px solid transparent; border-radius: 999px; cursor: pointer; transition: transform .18s cubic-bezier(.2,.8,.2,1), background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -8px rgba(200,242,58,.7); }
.btn-dark { background: var(--ink); color: var(--light); }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-3px); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--light); transform: translateY(-3px); }
.btn-line-light { background: transparent; color: var(--light); border-color: rgba(255,255,255,.4); }
.btn-line-light:hover { background: var(--light); color: var(--ink); border-color: var(--light); transform: translateY(-3px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(241,241,236,.85); backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--disp); font-weight: 700; font-size: 1.35rem; color: var(--ink); letter-spacing: -0.04em; flex-shrink: 0; }
.logo .mark { width: 32px; height: 32px; border-radius: 9px; background: var(--ink); display: grid; place-items: center; color: var(--lime); font-weight: 700; font-size: 1.05rem; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a { font-family: var(--disp); font-size: .92rem; font-weight: 500; color: var(--body); padding: 9px 13px; border-radius: 999px; cursor: pointer; transition: background .15s, color .15s; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); background: var(--light-2); }
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.main-nav .mobile-cta { display: none; }
.burger { display: none; width: 46px; height: 46px; border: 2px solid var(--ink); border-radius: 12px; background: transparent; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.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); }

/* reveal — visible by default; keyframe entrance is purely additive (never hides content if it can't play) */
.reveal { opacity: 1; }
.reveal.in { animation: revealUp .6s cubic-bezier(.2,.8,.2,1); }
@keyframes revealUp { from { opacity: 0.15; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal.in { animation: none; } }

/* placeholders */
.ph { position: relative; overflow: hidden; border-radius: var(--radius); background: repeating-linear-gradient(135deg, #e2e2db 0 15px, #ebebe4 15px 30px); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); min-height: 220px; }
.ph::after { content: attr(data-label); font-family: var(--disp); font-size: .76rem; font-weight: 500; color: var(--ink); background: rgba(255,255,255,.8); padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line); max-width: 80%; text-align: center; line-height: 1.4; }
.ph.dark { background: repeating-linear-gradient(135deg, #1c1d22 0 15px, #232429 15px 30px); border-color: #2c2d33; color: var(--lime); }
.ph.dark::after { background: rgba(14,15,18,.7); border-color: #34353b; color: var(--lime); }
.ph.cover { min-height: 100%; height: 100%; }
/* when a real <img> is dropped inside .ph it fills the frame and hides the label */
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph:has(> img)::after { display: none; }

/* ============ HERO BENTO ============ */
.hero { padding: clamp(28px,4vw,52px) 0 var(--s-6); }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(140px, auto); gap: 18px; }
.bento .tile { border-radius: var(--radius); overflow: hidden; position: relative; }
.tile-head { grid-column: span 2; grid-row: span 2; background: var(--ink); color: var(--light); padding: 40px; display: flex; flex-direction: column; justify-content: space-between; }
.tile-head h1 { color: var(--light); }
.tile-head h1 em { font-style: normal; color: var(--lime); }
.tile-head .lead { color: rgba(241,241,236,.74); margin-top: 18px; }
.tile-head .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.tile-photo { grid-column: span 2; grid-row: span 2; min-height: 320px; }
.tile-photo .ph { border-radius: 0; border: none; height: 100%; min-height: 320px; }
.tile-stat { grid-column: span 1; background: var(--lime); color: var(--ink); padding: 26px; display: flex; flex-direction: column; justify-content: center; }
.tile-stat .num { font-family: var(--disp); font-size: clamp(2.2rem,3.4vw,3rem); font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.tile-stat small { font-size: .86rem; font-weight: 500; margin-top: 8px; }
.tile-mini { grid-column: span 2; background: var(--paper); border: 1px solid var(--line); padding: 26px; display: flex; align-items: center; gap: 16px; }
.tile-mini .dot { width: 12px; height: 12px; border-radius: 50%; background: #2bbf5a; box-shadow: 0 0 0 5px rgba(43,191,90,.18); flex-shrink: 0; }
.tile-mini b { font-family: var(--disp); color: var(--ink); font-size: 1.05rem; display: block; }
.tile-mini small { color: var(--muted); }

/* marquee trust */
.trust { background: var(--ink); padding: 22px 0; overflow: hidden; }
.trust-track { display: flex; align-items: center; gap: 56px; white-space: nowrap; animation: marquee 26s linear infinite; }
.trust-track span { font-family: var(--disp); font-weight: 600; font-size: 1.25rem; color: rgba(241,241,236,.55); display: inline-flex; align-items: center; gap: 56px; }
.trust-track span::after { content: "●"; color: var(--lime); font-size: .6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none; justify-content: center; flex-wrap: wrap; } }

/* grid helpers */
.grid { display: grid; gap: 20px; }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { margin: 18px 0 14px; }

/* feature bento (piliers) */
.feat-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat { border-radius: var(--radius); padding: 34px; border: 1px solid var(--line); background: var(--paper); transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s; position: relative; overflow: hidden; }
.feat:hover { transform: translateY(-6px); background: var(--ink); color: var(--light); border-color: var(--ink); }
.feat:hover h3, .feat:hover .feat-idx { color: var(--lime); }
.feat:hover p { color: rgba(241,241,236,.78); }
.feat .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--lime); color: var(--ink); display: grid; place-items: center; margin-bottom: 24px; transition: transform .25s; }
.feat:hover .ico { transform: rotate(-8deg) scale(1.05); }
.feat .ico svg { width: 26px; height: 26px; }
.feat .feat-idx { font-family: var(--disp); font-size: .82rem; font-weight: 600; color: var(--muted); position: absolute; top: 28px; right: 30px; }
.feat h3 { margin-bottom: 10px; transition: color .25s; }
.feat p { font-size: .98rem; transition: color .25s; }

/* room cards */
.room-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s, box-shadow .3s; display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card .ph { border-radius: 0; border: none; border-bottom: 1px solid var(--line); min-height: 260px; }
.room-body { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.room-tag { font-family: var(--disp); font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); background: var(--lime); padding: 6px 12px; border-radius: 999px; align-self: flex-start; margin-bottom: 16px; }
.room-body h3 { font-size: 1.8rem; margin-bottom: 8px; }
.room-meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .92rem; font-weight: 500; margin-bottom: 18px; }
.room-meta b { color: var(--ink); }
.price-row { display: flex; align-items: baseline; gap: 8px; margin: auto 0 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.price-row .from { font-size: .85rem; color: var(--muted); }
.price-row .amount { font-family: var(--disp); font-size: 2rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.price-row .unit { font-size: .9rem; color: var(--muted); }

/* usage bento */
.usage { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; cursor: pointer; }
.usage .ph { position: absolute; inset: 0; border-radius: 0; border: none; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.usage:hover .ph { transform: scale(1.05); }
.usage .usage-overlay { position: relative; z-index: 2; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(14,15,18,.92), rgba(14,15,18,.1) 70%, transparent); color: var(--light); }
.usage h3 { color: var(--light); margin-bottom: 6px; }
.usage p { color: rgba(241,241,236,.82); font-size: .95rem; }
.usage .arrow { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--lime); color: var(--ink); position: absolute; top: 26px; right: 26px; transition: transform .25s; }
.usage:hover .arrow { transform: rotate(-45deg) scale(1.1); }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,68px); align-items: center; }
.feature-list { display: grid; gap: 16px; margin-top: 30px; list-style: none; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .check { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: var(--lime); color: var(--ink); display: grid; place-items: center; margin-top: 2px; }
.feature-list .check svg { width: 15px; height: 15px; }
.feature-list b { color: var(--ink); }

/* dark services band */
.dark-band { background: var(--ink); color: var(--light); }
.dark-band h2 { color: var(--light); }
.dark-band h2 em { font-style: normal; color: var(--lime); }
.dark-band .lead { color: rgba(241,241,236,.72); }
.dark-band .feature-list b { color: var(--light); }
.dark-band .feature-list span { color: rgba(241,241,236,.72); }
.dark-band .feature-list .check { background: var(--lime); color: var(--ink); }
.dark-band .eyebrow { background: var(--lime); }

/* equip chips */
.equip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; }
.equip { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--disp); font-weight: 500; color: var(--ink); transition: transform .2s, border-color .2s; }
.equip:hover { transform: translateY(-3px); border-color: var(--ink); }
.equip .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--light-2); color: var(--ink); display: grid; place-items: center; flex-shrink: 0; }
.equip .ico svg { width: 20px; height: 20px; }

/* testimonials */
.testi { background: var(--ink); color: var(--light); border-radius: var(--radius-lg); padding: 44px 40px; }
.testi .quote { font-family: var(--disp); font-size: clamp(1.4rem,2.4vw,2rem); line-height: 1.25; color: var(--light); font-weight: 500; letter-spacing: -0.02em; }
.testi .quote em { font-style: normal; color: var(--lime); }
.testi .stars { color: var(--lime); letter-spacing: 3px; margin-bottom: 20px; font-size: 1.1rem; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.testi-author .av { width: 50px; height: 50px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-family: var(--disp); font-weight: 700; }
.testi-author .who b { display: block; color: var(--light); font-family: var(--disp); }
.testi-author .who small { color: rgba(241,241,236,.6); }

/* cta band */
.cta-band { background: var(--lime); border-radius: var(--radius-lg); padding: clamp(40px,5vw,68px); color: var(--ink); position: relative; overflow: hidden; }
.cta-band h2 { color: var(--ink); }
.cta-band .cta-band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta-band .reassure { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; font-family: var(--disp); font-weight: 600; }
.cta-band .reassure .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink); flex-shrink: 0; }

/* form */
.form-card { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(28px,4vw,40px); box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--disp); font-weight: 500; color: var(--ink); font-size: .9rem; margin-bottom: 7px; }
.field label .req { color: var(--lime-d); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink); padding: 13px 16px; border: 2px solid var(--line); border-radius: 12px; background: var(--light); transition: border-color .15s, background .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: var(--paper); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 8px; }
/* honeypot anti-spam (caché aux humains) */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
/* statut d'envoi du formulaire */
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-size: .95rem; display: none; }
.form-status.show { display: block; }
.form-status.error { background: #fdecec; color: #9b1c1c; border: 1px solid #f5c2c2; }
.form-status.success { background: #e9f7ee; color: #1b7a3e; border: 1px solid #b6e3c5; }

/* faq */
.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--ink); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--disp); font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.faq-q .pm { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--light-2); display: grid; place-items: center; transition: .25s; color: var(--ink); }
.faq-item.open .pm { background: var(--lime); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 24px; color: var(--body); max-width: 70ch; }

/* mini tarifs */
.mini-tarifs { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.mini-tarif { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.mini-tarif .name { font-family: var(--disp); font-weight: 700; color: var(--ink); font-size: 1.3rem; }
.mini-tarif .cap { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.mini-tarif .lines { display: flex; gap: 28px; }
.mini-tarif .lines div b { display: block; font-family: var(--disp); font-size: 1.5rem; color: var(--ink); }
.mini-tarif .lines div small { color: var(--muted); font-size: .8rem; }

/* pricing table -> cards */
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.price-big { border-radius: var(--radius-lg); padding: 38px; border: 1px solid var(--line); background: var(--paper); }
.price-big.feature { background: var(--ink); color: var(--light); border-color: var(--ink); }
.price-big.feature h3, .price-big.feature .big-amt { color: var(--light); }
.price-big.feature .big-amt em { color: var(--lime); }
.price-big .tag { font-family: var(--disp); font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); background: var(--lime); padding: 6px 12px; border-radius: 999px; display: inline-block; margin-bottom: 18px; }
.price-big h3 { font-size: 1.8rem; }
.price-big .cap { color: var(--muted); margin-bottom: 24px; }
.price-big.feature .cap { color: rgba(241,241,236,.6); }
.price-big .rows { display: grid; gap: 14px; }
.price-big .prow { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.price-big.feature .prow { border-color: #2a2b31; }
.price-big .prow .l { font-weight: 500; }
.price-big .big-amt { font-family: var(--disp); font-size: 1.5rem; font-weight: 700; color: var(--ink); }

/* compare */
.compare { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.compare th, .compare td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--ink); color: var(--light); font-family: var(--disp); font-weight: 600; }
.compare thead th:nth-child(2) { color: var(--lime); }
.compare td:first-child { font-weight: 600; color: var(--ink); background: var(--light); font-family: var(--disp); }
.compare tr:last-child td { border-bottom: none; }

/* info cards */
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: transform .2s, border-color .2s; }
.info-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.info-card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--lime); color: var(--ink); display: grid; place-items: center; flex-shrink: 0; }
.info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--body); font-size: .95rem; }
.info-card a:hover { color: var(--ink); }

/* page hero */
.page-hero { padding: clamp(40px,5vw,72px) 0; }
.page-hero .ph { min-height: 400px; border-radius: var(--radius-lg); }
.crumbs { font-family: var(--disp); font-size: .82rem; color: var(--muted); font-weight: 500; margin-bottom: 18px; }
.crumbs a { cursor: pointer; }
.crumbs a:hover { color: var(--ink); }

.map-ph { min-height: 360px; border-radius: var(--radius-lg); }
.map-embed { width: 100%; min-height: 360px; border: 0; border-radius: var(--radius-lg); display: block; margin-top: 14px; }

/* footer */
.site-footer { background: var(--ink); color: #9a9da6; padding: var(--s-7) 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid #25262c; }
.site-footer .logo { color: var(--light); margin-bottom: 18px; }
.footer-about p { color: #797d87; font-size: .95rem; max-width: 34ch; }
.footer-col h4 { color: var(--light); font-family: var(--disp); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: #9a9da6; font-size: .95rem; padding: 6px 0; cursor: pointer; }
.footer-col a:hover { color: var(--lime); }
.socials { display: flex; gap: 11px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: #1d1e23; display: grid; place-items: center; color: #9a9da6; transition: .2s; }
.socials a:hover { background: var(--lime); color: var(--ink); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; flex-wrap: wrap; font-size: .88rem; color: #6c6f78; }
.footer-bottom .legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--lime); }

.mt-s { margin-top: 28px; }

/* prose (pages légales) */
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin: 40px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; color: var(--body); }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--lime-d); text-decoration: underline; }
.prose .updated { color: var(--muted); font-size: .9rem; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); }

/* responsive */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile-head, .tile-photo { grid-column: span 2; }
  .tile-mini { grid-column: span 2; }
  .split, .cta-band-grid, .dark-band .split { grid-template-columns: 1fr !important; }
  .feat-bento, .g-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .price-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-cta .btn { display: none; }
  .burger { display: flex; }
  .main-nav.mobile-open { display: flex; flex-direction: column; align-items: stretch; gap: 4px; position: fixed; top: 78px; left: 0; right: 0; height: calc(100vh - 78px); height: calc(100dvh - 78px); background: var(--light); padding: 24px; z-index: 200; overflow-y: auto; }
  .main-nav.mobile-open a { font-family: var(--disp); font-size: 1.3rem; padding: 14px 16px; }
  .main-nav.mobile-open .mobile-cta { display: inline-flex; margin-top: 18px; text-align: center; justify-content: center; background: var(--lime); color: var(--ink); }
  .section { padding: var(--s-6) 0; }
  .g-2, .mini-tarifs, .field-row, .price-cards { grid-template-columns: 1fr; }
  .tile-stat { grid-column: span 1; }
  .compare { display: block; overflow-x: auto; white-space: nowrap; }
  .footer-top { grid-template-columns: 1fr; }
  .tile-head { padding: 30px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .bento { grid-template-columns: 1fr; }
  .tile-head, .tile-photo, .tile-mini, .tile-stat { grid-column: span 1; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* --- Correctifs mobile additionnels --- */
/* Bloc "devis" (accueil) : empêche le débordement et centre le rectangle blanc */
@media (max-width: 768px) {
  .cta-band { padding: 34px 22px; }
  .cta-band-grid { min-width: 0; }
  .cta-band-grid > * { min-width: 0; max-width: 100%; }
  .cta-band .form-card { width: 100%; max-width: 100%; margin: 0 auto; }
  .form-card .btn { white-space: normal; }
}
/* Nos salles : sur mobile/tablette, afficher le texte LT-92 AVANT ses photos */
@media (max-width: 1024px) {
  .lt92-text { order: -1; }
}

/* Cartes d'avis Google */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; transition: transform .25s, box-shadow .3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card .stars { color: var(--lime); letter-spacing: 2px; margin-bottom: 14px; font-size: 1rem; }
.review-card p { color: var(--body); font-size: .98rem; flex: 1; }
.review-card p em { font-style: normal; color: var(--ink); font-weight: 600; }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.review-card .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-family: var(--disp); font-weight: 700; flex-shrink: 0; }
.review-card .who b { display: block; font-family: var(--disp); color: var(--ink); }
.review-card .who small { color: var(--muted); font-size: .82rem; }
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: 1fr; } }
