/* AskAdèle — site vitrine (v32). Polices système : aucune ressource externe, aucun traceur. */
:root {
  --bg: #fbfaf7; --surface: #ffffff; --soft: #eef6f4; --sand: #f6efe6;
  --text: #15201d; --muted: #56645f; --line: #e3e8e5;
  --brand: #0f766e; --brand-dark: #0b5a54; --brand-ink: #ffffff; --accent: #e8734a;
  --ok: #1d7a3e; --warn: #9a5b00; --danger: #b42318;
  --radius: 18px; --shadow: 0 1px 2px rgba(16,24,20,.05), 0 12px 32px rgba(16,24,20,.07);
  --max: 1120px;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #0e1412; --surface: #151d1b; --soft: #13241f; --sand: #1c1a16; --text: #e8eeec; --muted: #9eaca7; --line: #25302d;
    --brand: #2dd4bf; --brand-dark: #5eead4; --brand-ink: #062522; --accent: #ff9b73; --shadow: none; color-scheme: dark; }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font: 17px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--brand); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.center { text-align: center; }
.skip { position: absolute; left: -999px; } .skip:focus { left: 12px; top: 12px; background: var(--surface); padding: 8px 12px; z-index: 99; }

/* En-tête */
.site-head { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.site-head .wrap { display: flex; align-items: center; gap: 16px; min-height: 64px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.2rem; color: var(--text); text-decoration: none; }
.logo span[aria-hidden] { font-size: 1.4rem; }
.nav { display: flex; gap: 20px; margin-left: auto; align-items: center; }
.nav a { color: var(--text); text-decoration: none; font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--brand); }
.nav .btn { color: var(--brand-ink); }
@media (max-width: 760px) { .nav a:not(.btn) { display: none; } }

/* Boutons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid var(--brand); background: var(--brand); color: var(--brand-ink); cursor: pointer; transition: transform .15s, background .15s; }
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--brand); }
.btn.ghost:hover { background: var(--soft); }
.btn.big { min-height: 56px; padding: 14px 28px; font-size: 1.08rem; }
.btn.sm { min-height: 40px; padding: 8px 16px; font-size: .92rem; }
.ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Héros */
.hero { padding: 56px 0 40px; background: radial-gradient(1100px 500px at 80% 0%, var(--soft), transparent 70%); }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero .kicker { display: inline-block; background: var(--sand); color: var(--text); padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: .88rem; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero .lead { font-size: 1.2rem; color: var(--muted); max-width: 34em; margin-bottom: 26px; }
.hero .reassure { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px; color: var(--muted); font-size: .93rem; }
.hero .reassure span::before { content: "✓ "; color: var(--ok); font-weight: 800; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; } .hero { padding-top: 32px; } .hero .phones { order: 2; } }

/* Téléphones */
.phone { position: relative; width: 100%; max-width: 290px; aspect-ratio: 390 / 844; border-radius: 42px; padding: 10px; background: #111; box-shadow: 0 30px 60px -20px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06) inset; }
.phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 32px; background: #fff; }
.phone::before { content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 84px; height: 22px; border-radius: 999px; background: #111; z-index: 2; }
.phones { display: flex; justify-content: center; align-items: flex-end; gap: 0; }
.phones .phone.back { max-width: 230px; transform: translate(34px, -16px) rotate(-6deg); opacity: .96; }
.phones .phone.front { z-index: 1; transform: rotate(3deg); }
@media (max-width: 860px) { .phones .phone.back { display: none; } .phones .phone.front { transform: none; max-width: 260px; } }

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.sand { background: var(--sand); }
.sec-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.sec-head p { color: var(--muted); font-size: 1.1rem; }

/* Étapes */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); position: relative; }
.step::before { counter-increment: s; content: counter(s); display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: var(--brand-ink); font-weight: 800; margin-bottom: 14px; }
.step p { color: var(--muted); margin: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* Fonctions (alternées texte / capture) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 28px 0; }
.feature + .feature { border-top: 1px dashed var(--line); }
.feature:nth-child(even) .f-text { order: 2; }
.feature .phone { margin: 0 auto; max-width: 260px; }
.feature .tag { display: inline-block; font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 8px; }
.feature ul { padding-left: 0; list-style: none; margin: 16px 0 0; }
.feature li { padding-left: 28px; position: relative; margin: 6px 0; color: var(--muted); }
.feature li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; gap: 24px; } .feature:nth-child(even) .f-text { order: 0; } }

/* Grille de cartes */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.card .ico { font-size: 1.8rem; margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* Confiance */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust div { text-align: center; padding: 18px 10px; }
.trust b { display: block; font-size: 1.05rem; margin: 6px 0 4px; }
.trust span[aria-hidden] { font-size: 2rem; }
.trust p { color: var(--muted); font-size: .93rem; margin: 0; }
@media (max-width: 760px) { .trust { grid-template-columns: repeat(2, 1fr); } }

/* Bloc restaurateurs */
.pro-band { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; background: var(--brand); color: var(--brand-ink); border-radius: 28px; padding: 44px; }
.pro-band h2 { color: var(--brand-ink); }
.pro-band p { opacity: .92; }
.pro-band .btn { background: var(--brand-ink); color: var(--brand); border-color: var(--brand-ink); }
.pro-band .btn.ghost { background: transparent; color: var(--brand-ink); border-color: var(--brand-ink); }
.pro-band ul { margin: 0; padding-left: 20px; }
.pro-band li { margin: 6px 0; }
@media (max-width: 860px) { .pro-band { grid-template-columns: 1fr; padding: 28px; } }

/* Tarifs */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { display: flex; flex-direction: column; }
.plan .price { font-size: 1.6rem; font-weight: 800; margin: 6px 0 2px; }
.plan ul { padding-left: 20px; color: var(--muted); flex: 1; }
.plan.best { border: 2px solid var(--brand); }
.plan .badge { align-self: flex-start; background: var(--brand); color: var(--brand-ink); border-radius: 999px; padding: 3px 10px; font-size: .78rem; font-weight: 800; margin-bottom: 8px; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; }
.faq summary { cursor: pointer; padding: 18px 20px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--brand); }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 20px 18px; color: var(--muted); }

/* Appel final */
.final { text-align: center; }
.final .ctas { justify-content: center; }

/* Pied de page */
.site-foot { border-top: 1px solid var(--line); padding: 40px 0 56px; font-size: .93rem; color: var(--muted); }
.site-foot .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; }
.site-foot h4 { color: var(--text); margin: 0 0 8px; font-size: .95rem; }
.site-foot a { color: var(--muted); text-decoration: none; display: block; margin: 4px 0; }
.site-foot a:hover { color: var(--brand); }
@media (max-width: 760px) { .site-foot .wrap { grid-template-columns: 1fr 1fr; } }

/* Pages de texte (légal, ville) */
.page { padding: 48px 0 72px; }
.page .wrap { max-width: 820px; }
.page h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.page h2 { font-size: 1.35rem; margin-top: 2em; }
.page table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; font-size: .95rem; }
.page th, .page td { text-align: left; border-bottom: 1px solid var(--line); padding: 8px 6px; vertical-align: top; }
.draft { background: #fff4de; color: #7a4a00; border: 1px solid #f2d39b; padding: 12px 16px; border-radius: 12px; margin-bottom: 24px; font-size: .95rem; }
.todo { background: #fff4de; color: #7a4a00; padding: 0 4px; border-radius: 4px; }
.resto-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.resto-list li { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; display: flex; gap: 12px; align-items: center; }
.resto-list li .grow { flex: 1; }
.pill { display: inline-block; font-size: .78rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: var(--soft); color: var(--brand); }
.pill.wait { background: var(--sand); color: var(--warn); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) { .cards.two { grid-template-columns: 1fr; } }
.tbl { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tbl table { min-width: 560px; }
.page ul { padding-left: 22px; }
