/* ════════════════════════════════════════════════════════════════
   Paris Curage Pro — B2B Restaurants
   Charcoal × Ivoire chaud × Cuivre brûlé
   Typo : Instrument Serif (display) + Geist (body)
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Ivoire chaud */
  --bg:        #F8F4EA;
  --bg-2:      #EEE7D5;
  --bg-3:      #E4DCC0;
  --surface:   #FFFFFF;
  --surface-2: #FAF6ED;

  /* Encres */
  --ink:       #0E0E0E;
  --ink-2:     #232323;
  --ink-3:     #5A5651;
  --ink-4:     #8A8680;
  --ink-5:     #B8B3A7;

  /* Cuivre brûlé */
  --copper:    #C2502F;
  --copper-d:  #9B3E25;
  --copper-l:  #DC6A48;
  --copper-soft: #F5D9C8;
  --copper-tint: #FCEDDF;

  /* Lignes */
  --line:      #D7CCB4;
  --line-2:    #BFB293;
  --line-soft: #E8DFC8;

  /* Dark */
  --dark:      #0E0E0E;
  --dark-2:    #1A1A1A;
  --dark-3:    #2D2D2D;

  /* Subtil gold accent (filets, séparateurs) */
  --gold:      #B8924A;

  --maxw:      1260px;
  --r-sm:      4px;
  --r:         8px;
  --r-lg:      14px;

  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans:  'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, system-ui, sans-serif;
  --mono:  'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --shadow-sm:   0 1px 2px 0 rgba(14, 14, 14, .06);
  --shadow:      0 4px 14px -3px rgba(14, 14, 14, .08), 0 2px 6px -2px rgba(14, 14, 14, .04);
  --shadow-md:   0 18px 40px -12px rgba(14, 14, 14, .16), 0 6px 14px -8px rgba(14, 14, 14, .06);
  --shadow-copper: 0 14px 32px -10px rgba(194, 80, 47, .38);
  --shadow-dark: 0 18px 48px -16px rgba(14, 14, 14, .35);
}

* { box-sizing: border-box; }
*::selection { background: var(--copper); color: var(--bg); }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Typographie */
h1, h2 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0 0 .55em;
  letter-spacing: -.025em;
  line-height: 1.02;
  font-weight: 400;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
h1 em, h2 em { color: var(--copper); font-style: italic; font-weight: 400; }
h3 { font-family: var(--sans); font-size: clamp(1.18rem, 1.7vw, 1.38rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.25; color: var(--ink); margin: 0 0 .55em; }
h4 { font-family: var(--sans); font-size: .95rem; font-weight: 700; color: var(--ink); }
p  { margin: 0 0 1rem; max-width: 64ch; color: var(--ink-2); }
em { font-style: italic; color: var(--copper); font-weight: 500; font-family: var(--serif); }
strong { font-weight: 600; color: var(--ink); }
code { font-family: var(--mono); font-size: .9em; background: var(--bg-2); padding: .12rem .35rem; border-radius: 3px; color: var(--ink); }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 32px; }
.section { padding: clamp(76px, 9vw, 130px) 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.section--white { background: var(--surface); border-block: 1px solid var(--line-soft); }
.section--dark { background: var(--dark); color: var(--bg); }
.section--dark h2, .section--dark h3 { color: var(--bg); }
.section--dark p { color: rgba(248, 244, 234, .72); }

.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .76rem; font-weight: 600;
  color: var(--copper-d); letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.eyebrow::before, .kicker::before { content: ""; width: 24px; height: 1.5px; background: var(--copper); }
.section--dark .eyebrow, .section--dark .kicker { color: var(--copper-l); }
.section--dark .eyebrow::before, .section--dark .kicker::before { background: var(--copper-l); }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.6rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  letter-spacing: -.005em;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform .12s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--copper); color: var(--bg); box-shadow: var(--shadow-copper); }
.btn-primary:hover { background: var(--copper-d); }
.btn-dark { background: var(--dark); color: var(--bg); box-shadow: var(--shadow-dark); }
.btn-dark:hover { background: var(--dark-3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-outline { background: transparent; color: var(--copper-d); border-color: var(--copper-d); }
.btn-outline:hover { background: var(--copper-d); color: var(--bg); }
.btn-cream { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn-cream:hover { background: var(--copper); color: var(--bg); border-color: var(--copper); }
.btn-ghost-light { background: transparent; color: var(--bg); border-color: rgba(248, 244, 234, .4); }
.btn-ghost-light:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn-lg { padding: 1.1rem 1.9rem; font-size: 1.02rem; }
.btn-arrow::after { content: "→"; margin-left: .15rem; transition: transform .25s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* Topbar B2B */
.topbar { background: var(--dark); color: rgba(248, 244, 234, .82); font-size: .8rem; padding: .55rem 0; font-variant-numeric: tabular-nums; border-bottom: 1px solid rgba(194, 80, 47, .25); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: var(--bg); font-weight: 600; transition: color .2s; }
.topbar a:hover { color: var(--copper-l); }
.topbar .est { color: var(--bg); font-weight: 600; }
.topbar .glyph { color: var(--copper-l); margin: 0 .55rem; }
.topbar .pulse { display: inline-block; width: 7px; height: 7px; background: var(--copper-l); border-radius: 50%; margin-right: .55rem; animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(220, 106, 72, .65); } 70% { box-shadow: 0 0 0 9px rgba(220, 106, 72, 0); } 100% { box-shadow: 0 0 0 0 rgba(220, 106, 72, 0); } }
@media (prefers-reduced-motion: reduce) { .topbar .pulse { animation: none; } }
@media (max-width: 700px) { .topbar .desktop { display: none; } }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(248, 244, 234, .92); backdrop-filter: saturate(150%) blur(14px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; min-height: 78px; position: relative; }
.logo { display: flex; align-items: center; gap: .9rem; color: var(--ink); }
.logo-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--dark); color: var(--bg);
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.05rem; letter-spacing: -.04em;
  border-radius: 6px;
  position: relative;
  box-shadow: var(--shadow-dark);
}
.logo-mark::after {
  content: ""; position: absolute; right: -2px; bottom: -2px;
  width: 10px; height: 10px; background: var(--copper); border-radius: 2px; transform: rotate(45deg);
}
.logo-name { font-family: var(--serif); font-weight: 400; font-size: 1.42rem; line-height: 1.05; letter-spacing: -.025em; color: var(--ink); }
.logo-name small { display: block; font-family: var(--sans); font-weight: 500; font-size: .68rem; letter-spacing: .14em; color: var(--copper-d); margin-top: .3rem; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a { font-family: var(--sans); font-weight: 500; font-size: .92rem; color: var(--ink-3); padding: .4rem 0; position: relative; transition: color .15s ease; }
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1.5px; background: var(--copper); }
.nav-toggle { display: none; background: var(--bg); border: 1.5px solid var(--ink); color: var(--ink); padding: .55rem .95rem; cursor: pointer; font: 600 .88rem var(--sans); border-radius: var(--r-sm); }
@media (max-width: 1040px) {
  .nav { display: none; }
  .nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: -32px; right: -32px; background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1rem 32px 1.4rem; gap: 0; align-items: stretch; z-index: 49; }
  .nav.is-open a { padding: .95rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav.is-open a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
}

.header-tel { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.25rem; background: var(--copper); color: var(--bg); font-family: var(--sans); font-weight: 600; font-size: .94rem; font-variant-numeric: tabular-nums; border-radius: var(--r-sm); box-shadow: var(--shadow-copper); transition: background .2s, transform .12s; }
.header-tel:hover { background: var(--copper-d); transform: translateY(-1px); }
@media (max-width: 540px) { .header-tel .tel-txt { display: none; } }

/* Hero — DARK charcoal avec accent cuivre */
.hero {
  background: var(--dark);
  color: var(--bg);
  padding: clamp(76px, 9vw, 130px) 0 clamp(60px, 7vw, 110px);
  position: relative; overflow: hidden;
}
.hero::before { content: ""; position: absolute; top: -260px; right: -180px; width: 720px; height: 720px; background: radial-gradient(circle, rgba(194, 80, 47, .22) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.hero::after { content: ""; position: absolute; bottom: -200px; left: -150px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(184, 146, 74, .12) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2.5rem, 5vw, 5.5rem); align-items: center; position: relative; z-index: 1; }
.hero-text { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .95rem;
  background: rgba(194, 80, 47, .12);
  border: 1px solid rgba(194, 80, 47, .35);
  border-radius: 999px;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  color: var(--bg); margin-bottom: 1.6rem;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--copper-l); border-radius: 50%; box-shadow: 0 0 8px var(--copper); }

.hero h1 { color: var(--bg); max-width: 16ch; margin: 0 0 .35em; font-weight: 400; }
.hero h1 em { color: var(--copper-l); font-style: italic; }
.hero-lead { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.2rem, 1.75vw, 1.45rem); color: rgba(248, 244, 234, .88); line-height: 1.45; margin: 1.4rem 0 0; max-width: 42ch; }
.hero-sub { font-family: var(--sans); font-size: 1.02rem; color: rgba(248, 244, 234, .68); line-height: 1.6; margin: 1.2rem 0 0; max-width: 54ch; font-weight: 400; }
.hero-cta { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-meta { display: flex; align-items: center; gap: 1.6rem; margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid rgba(248, 244, 234, .15); font-family: var(--sans); font-size: .85rem; color: rgba(248, 244, 234, .68); flex-wrap: wrap; }
.hero-meta > span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta strong { color: var(--bg); font-weight: 600; font-variant-numeric: tabular-nums; }
.hero-meta .ic-check { color: var(--copper-l); font-size: 1.1rem; }

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--dark-2);
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .5), 0 12px 24px -6px rgba(194, 80, 47, .25);
  border: 1px solid rgba(248, 244, 234, .08);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.05) brightness(.94); }

.floating-tag { position: absolute; left: 14px; bottom: 14px; background: var(--bg); padding: .85rem 1.1rem; border-radius: var(--r); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .65rem; font-family: var(--sans); font-size: .8rem; font-weight: 600; border: 1px solid var(--line); }
.floating-tag .ic { width: 32px; height: 32px; background: var(--copper-soft); color: var(--copper-d); border-radius: 5px; display: grid; place-items: center; }
.floating-tag .lbl { color: var(--ink-3); font-weight: 500; font-size: .7rem; display: block; text-transform: uppercase; letter-spacing: .06em; }
.floating-tag .val { font-family: var(--serif); font-weight: 400; color: var(--ink); font-size: 1.15rem; font-variant-numeric: tabular-nums; letter-spacing: -.02em; display: block; }
.floating-stat { position: absolute; right: 14px; top: 14px; background: var(--copper); color: var(--bg); padding: .9rem 1.15rem; border-radius: var(--r); box-shadow: var(--shadow-md); text-align: right; }
.floating-stat .big { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.floating-stat .sub { font-family: var(--sans); font-size: .7rem; color: rgba(248, 244, 234, .82); font-weight: 500; margin-top: .25rem; }

@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 2.6rem; } .hero-photo { aspect-ratio: 4/3; max-width: 580px; } }

/* Heritage band — stats B2B */
.heritage-band { background: var(--copper); color: var(--bg); padding: clamp(24px, 3.5vw, 40px) 0; }
.heritage-band-inner { display: flex; align-items: center; justify-content: center; gap: clamp(2rem, 5vw, 5rem); flex-wrap: wrap; text-align: center; }
.hb-item { display: flex; flex-direction: column; align-items: center; }
.heritage-band .hb-num { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.6rem); color: var(--bg); font-weight: 400; line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.heritage-band .hb-num em { font-style: italic; color: var(--bg); }
.heritage-band .hb-lbl { font-family: var(--sans); font-size: .76rem; color: rgba(248, 244, 234, .82); margin-top: .35rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.heritage-band .hb-sep { width: 1px; height: 40px; background: rgba(248, 244, 234, .3); }
@media (max-width: 760px) { .heritage-band .hb-sep { display: none; } }

/* Process — pourquoi B2B */
.process { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.process-step { padding: clamp(2.4rem, 4vw, 3.4rem) clamp(1.8rem, 2.5vw, 2.4rem); display: flex; gap: 1.3rem; align-items: flex-start; transition: background .2s ease; border-right: 1px solid var(--line); position: relative; }
.process-step:last-child { border-right: 0; }
.process-step::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 2px; background: transparent; transition: background .25s; }
.process-step:hover::before { background: var(--copper); }
.process-step:hover { background: var(--bg); }
.process-step .step-no { font-family: var(--mono); font-weight: 500; font-size: .76rem; color: var(--copper-d); letter-spacing: .12em; min-width: 36px; padding-top: .35rem; }
.process-step h3 { margin: 0 0 .55rem; font-size: 1.22rem; font-weight: 600; color: var(--ink); }
.process-step p { margin: 0; font-size: .95rem; color: var(--ink-3); line-height: 1.6; max-width: none; }
@media (max-width: 880px) { .process-inner { grid-template-columns: 1fr; } .process-step { border-right: 0; border-bottom: 1px solid var(--line); } .process-step:last-child { border-bottom: 0; } }

/* Section head */
.section-head { max-width: 760px; margin: 0 0 clamp(2.8rem, 4vw, 4rem); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p { color: var(--ink-2); font-size: 1.04rem; line-height: 1.65; max-width: 60ch; }
.section-head.center p { margin-inline: auto; }

/* Grilles */
.grid { display: grid; gap: clamp(1rem, 1.6vw, 1.4rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Cards services B2B */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.7rem, 2.2vw, 2.2rem);
  transition: transform .2s, box-shadow .25s, border-color .2s;
  display: flex; flex-direction: column;
  min-height: 310px;
  position: relative;
  overflow: hidden;
}
.card::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0%; background: var(--copper); transition: width .35s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.card:hover::after { width: 100%; }
.card .ic { display: grid; place-items: center; width: 50px; height: 50px; background: var(--copper-tint); color: var(--copper-d); border-radius: 6px; margin-bottom: 1.3rem; transition: background .2s, color .2s; }
.card:hover .ic { background: var(--copper); color: var(--bg); }
.card h3 { margin: 0 0 .55rem; font-family: var(--sans); font-size: 1.18rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.3; color: var(--ink); }
.card p { margin: 0; color: var(--ink-3); font-size: .96rem; line-height: 1.6; max-width: none; }
.card .price-tag { margin-top: 1.2rem; font-family: var(--mono); font-size: .82rem; color: var(--copper-d); font-weight: 600; letter-spacing: .02em; }
.card .price-tag::before { content: "→ "; }
.card a.card-cta { margin-top: auto; padding-top: 1.4rem; font-family: var(--sans); font-weight: 600; font-size: .78rem; color: var(--copper-d); display: inline-flex; align-items: center; gap: .4rem; letter-spacing: .08em; text-transform: uppercase; }
.card a.card-cta::after { content: "→"; transition: transform .2s; }
.card a.card-cta:hover::after { transform: translateX(4px); }

/* Encart réglementation */
.reglement {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 3vw, 2.8rem);
}
.reglement h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2vw, 1.8rem); margin-bottom: 1rem; color: var(--ink); font-style: italic; letter-spacing: -.02em; }
.reglement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1.6rem; }
@media (max-width: 760px) { .reglement-grid { grid-template-columns: 1fr; gap: 1.4rem; } }
.reglement-item { padding: 0; }
.reglement-item .norme { font-family: var(--mono); font-size: .74rem; color: var(--copper-d); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; margin-bottom: .55rem; }
.reglement-item h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin: 0 0 .55rem; color: var(--ink); }
.reglement-item p { font-size: .92rem; color: var(--ink-3); line-height: 1.6; margin: 0; max-width: none; }

/* Feature tile équipement */
.feature-tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
.feature-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.feature-img { margin: 0; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-2); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,.61,.36,1); filter: saturate(.95) contrast(1.05); }
.feature-tile:hover .feature-img img { transform: scale(1.05); }
.feature-body { padding: clamp(1.6rem, 2.2vw, 2.1rem); }
.feature-body h3 { margin: 0 0 .55rem; font-family: var(--serif); font-size: 1.42rem; font-weight: 400; letter-spacing: -.02em; color: var(--ink); }
.feature-body p { margin: 0 0 1.3rem; color: var(--ink-3); font-size: .96rem; line-height: 1.6; max-width: none; }

/* Pricing tier — contrats */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 920px) { .pricing { grid-template-columns: 1fr; } }
.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 2.4vw, 2.4rem);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tier.featured { background: var(--dark); color: var(--bg); border-color: var(--dark); position: relative; }
.tier.featured::before { content: "Le plus choisi"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--copper); color: var(--bg); font-family: var(--mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; padding: .35rem .95rem; border-radius: 999px; font-weight: 600; }
.tier h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.6rem; margin: 0 0 .35rem; color: var(--ink); letter-spacing: -.02em; }
.tier.featured h3 { color: var(--bg); }
.tier .tier-desc { font-size: .9rem; color: var(--ink-3); margin: 0 0 1.4rem; max-width: none; }
.tier.featured .tier-desc { color: rgba(248, 244, 234, .72); }
.tier .tier-price { font-family: var(--serif); font-size: 2.6rem; color: var(--ink); font-weight: 400; letter-spacing: -.025em; font-variant-numeric: tabular-nums; line-height: 1; }
.tier.featured .tier-price { color: var(--copper-l); }
.tier .tier-price sub { font-family: var(--sans); font-size: .85rem; color: var(--ink-3); font-weight: 500; vertical-align: baseline; margin-left: .3rem; }
.tier.featured .tier-price sub { color: rgba(248, 244, 234, .55); }
.tier ul { list-style: none; padding: 0; margin: 1.6rem 0 1.8rem; display: grid; gap: .65rem; flex: 1; }
.tier ul li { font-size: .92rem; color: var(--ink-2); padding-left: 1.4rem; position: relative; line-height: 1.5; }
.tier.featured ul li { color: rgba(248, 244, 234, .82); }
.tier ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--copper); font-weight: 700; }
.tier.featured ul li::before { color: var(--copper-l); }
.tier .btn { margin-top: auto; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); color: var(--bg); padding: clamp(48px, 6vw, 80px) 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 95% 30%, rgba(194, 80, 47, .25), transparent 50%); pointer-events: none; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.4rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band h3 { font-family: var(--serif); color: var(--bg); font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin: 0; font-weight: 400; max-width: 30ch; letter-spacing: -.02em; font-style: italic; }
.cta-band p { color: rgba(248, 244, 234, .82); margin: .35rem 0 0; max-width: 52ch; font-size: 1rem; }

/* Story */
.story { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2.4rem, 5vw, 5rem); align-items: start; }
@media (max-width: 920px) { .story { grid-template-columns: 1fr; } .story-img { order: -1; max-width: 500px; } }
.story-img { overflow: hidden; aspect-ratio: 4/5; background: var(--bg-2); border-radius: var(--r-lg); box-shadow: var(--shadow-md); position: relative; }
.story-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.05); }
.story-img::after { content: "Service B2B · HoReCa"; position: absolute; left: 14px; bottom: 14px; background: var(--dark); color: var(--bg); padding: .5rem .85rem; border-radius: 4px; font-family: var(--mono); font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.story-text p { font-size: 1.04rem; color: var(--ink-2); line-height: 1.75; max-width: 56ch; }
.story-text p.lead { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.32rem, 1.9vw, 1.7rem); color: var(--ink); margin-bottom: 1.4rem; line-height: 1.35; max-width: 32ch; }
.drop-cap::first-letter { font-family: var(--serif); font-style: italic; font-size: 4.4rem; float: left; line-height: .85; padding: .15rem .55rem 0 0; color: var(--copper); font-weight: 400; }

/* Timeline */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; margin-top: clamp(2.4rem, 4vw, 3.6rem); border-top: 1.5px solid var(--ink); list-style: none; padding: 0; }
.tl-step { padding: 2rem 1.5rem 1.6rem 0; position: relative; counter-increment: step; border-right: 1px solid var(--line); }
.tl-step:last-child { border-right: 0; }
.tl-step .num {
  font-family: var(--mono); font-weight: 500;
  font-size: .76rem; color: var(--copper-d);
  letter-spacing: .14em; text-transform: uppercase;
  display: inline-block; margin-bottom: 1rem;
}
.tl-step .num::before { content: "Étape 0" counter(step); }
.tl-step h3 { margin: 0 0 .55rem; font-family: var(--serif); font-size: 1.32rem; font-weight: 400; color: var(--ink); letter-spacing: -.02em; }
.tl-step p { margin: 0; color: var(--ink-3); font-size: .92rem; line-height: 1.6; max-width: none; }
@media (max-width: 880px) { .timeline { grid-template-columns: 1fr; } .tl-step { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.6rem 0; } .tl-step:last-child { border-bottom: 0; } }

/* Photo band */
.photo-band { display: block; position: relative; margin: 0; overflow: hidden; aspect-ratio: 21/9; }
@media (max-width: 760px) { .photo-band { aspect-ratio: 4/3; } }
.photo-band img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.05); }
.photo-band figcaption { position: absolute; left: clamp(24px, 5vw, 50px); bottom: clamp(24px, 5vw, 44px); background: var(--dark); color: var(--bg); padding: 1rem 1.35rem; border-radius: var(--r); font-family: var(--sans); font-size: .92rem; font-weight: 500; max-width: 56ch; border-left: 3px solid var(--copper); }
.photo-band figcaption strong { color: var(--copper-l); font-weight: 600; margin-right: .45rem; }

/* Zones grid — 20 arrondissements */
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); font-family: var(--serif); font-size: 1.08rem; font-weight: 400; }
@media (max-width: 880px) { .zones-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .zones-grid { grid-template-columns: 1fr; } }
.zones-grid a { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding: 1.05rem 1.15rem 1.05rem 0; color: var(--ink); transition: background .15s, padding .25s, color .15s; letter-spacing: -.015em; font-style: italic; }
.zones-grid a:hover { color: var(--copper-d); padding-left: .8rem; background: var(--copper-tint); }
.zones-grid a small { font-family: var(--mono); font-style: normal; font-size: .76rem; color: var(--ink-4); font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: .04em; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 920px) { .reviews { grid-template-columns: 1fr; } }
.review { position: relative; padding: 2.4rem 0 0; display: flex; flex-direction: column; }
.review::before { content: "“"; font-family: var(--serif); font-style: italic; position: absolute; top: -.6rem; left: -.4rem; font-size: 5.5rem; line-height: 1; color: var(--copper); font-weight: 400; }
.review-txt { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.18rem; color: var(--ink); line-height: 1.5; margin: 1.4rem 0 1.4rem; }
.review .stars { color: var(--copper); display: flex; gap: .15rem; margin-bottom: 1rem; font-size: 1rem; letter-spacing: .12rem; }
.review-who { font-family: var(--sans); font-weight: 600; font-size: .92rem; color: var(--ink); display: block; }
.review-where { font-family: var(--mono); font-size: .76rem; color: var(--ink-3); margin-top: .25rem; display: block; letter-spacing: .04em; }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); margin-bottom: .7rem; padding: 0 1.6rem; transition: border-color .2s, box-shadow .2s; }
.faq details:hover { border-color: var(--line-2); }
.faq details[open] { border-color: var(--copper); box-shadow: 0 8px 24px -10px rgba(194, 80, 47, .25); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 0; font-family: var(--sans); font-weight: 600; font-size: clamp(1rem, 1.3vw, 1.1rem); color: var(--ink); line-height: 1.35; letter-spacing: -.005em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-style: italic; font-size: 1.8rem; font-weight: 400; color: var(--copper); transition: transform .25s; flex: 0 0 auto; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--ink-2); margin: 0 0 1.3rem; font-size: 1rem; line-height: 1.65; max-width: none; }

/* CTA dark */
.cta-dark { background: var(--dark); color: var(--bg); text-align: center; padding: clamp(80px, 10vw, 140px) 0; position: relative; overflow: hidden; }
.cta-dark::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 50% 0%, rgba(194, 80, 47, .25), transparent 55%); pointer-events: none; }
.cta-dark .eyebrow { color: var(--copper-l); }
.cta-dark .eyebrow::before { background: var(--copper-l); }
.cta-dark h2 { color: var(--bg); max-width: 22ch; margin: 0 auto .5rem; font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -.025em; font-style: italic; }
.cta-dark p { color: rgba(248, 244, 234, .76); max-width: 56ch; margin: 0 auto 1.6rem; font-size: 1.04rem; }
.cta-tel {
  display: inline-block; font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(2.8rem, 7.2vw, 5.2rem);
  color: var(--bg); letter-spacing: -.03em; margin: 2rem 0 1.4rem;
  font-variant-numeric: tabular-nums; transition: color .2s ease;
  position: relative;
}
.cta-tel::after { content: ""; position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); width: 64px; height: 2px; background: var(--copper); }
.cta-tel:hover { color: var(--copper-l); }

/* Footer */
.footer { background: var(--dark-2); color: rgba(248, 244, 234, .68); padding: clamp(64px, 7vw, 92px) 0 clamp(28px, 4vw, 40px); font-family: var(--sans); font-size: .9rem; border-top: 1px solid rgba(194, 80, 47, .2); }
.footer h4 { color: var(--bg); font-family: var(--sans); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.2rem; font-weight: 600; }
.footer a { color: rgba(248, 244, 234, .78); transition: color .15s; }
.footer a:hover { color: var(--copper-l); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.6rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer .footer-brand { color: var(--bg); font-family: var(--serif); font-size: 1.55rem; line-height: 1.05; letter-spacing: -.025em; font-weight: 400; font-style: italic; }
.footer .footer-brand small { display: block; font-family: var(--sans); font-style: normal; font-size: .7rem; letter-spacing: .12em; color: var(--copper-l); margin-top: .4rem; text-transform: uppercase; font-weight: 600; }
.footer-bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(248, 244, 234, .1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .76rem; color: rgba(248, 244, 234, .45); letter-spacing: .02em; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* Floating */
.floating { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; flex-direction: column; gap: .8rem; align-items: flex-end; }
.fab { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--copper); color: var(--bg); box-shadow: var(--shadow-copper); transition: transform .2s, background .2s; }
.fab:hover { transform: translateY(-3px) scale(1.04); background: var(--copper-d); }
@media (max-width: 540px) { .floating { left: 16px; right: 16px; bottom: 16px; flex-direction: row; align-items: stretch; } .floating .fab { display: none; } .floating .btn-mobile { display: flex; flex: 1; } body { padding-bottom: 88px; } }
@media (min-width: 541px) { .floating .btn-mobile { display: none; } }

/* A11y */
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
