:root {
  --bordeaux: #7A2438;
  --bordeaux-mid: #B06A78;
  --bordeaux-light: #D3A3AC;
  --bordeaux-pale: #F7EEEF;
  --bordeaux-line: #E7D9DB;
  --text: #262422;
  --text-soft: #6B6660;
  --bg: #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; height: 100%; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1, h2, h3, .mark-word {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--bordeaux-line);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand svg { margin-right: 12px; }
.brand-word { font-size: 18px; letter-spacing: 0.02em; color: var(--bordeaux); }
.brand-word span { color: var(--bordeaux-mid); font-weight: 500; }
nav ul { list-style: none; display: flex; font-size: 15px; font-weight: 500; }
nav ul li { margin-right: 36px; }
nav ul li:last-child { margin-right: 0; }
nav ul a { text-decoration: none; color: var(--text); padding-bottom: 4px; border-bottom: 2px solid transparent; }
nav ul a:hover { color: var(--bordeaux); }
nav ul a.active { color: var(--bordeaux); border-bottom: 2px solid var(--bordeaux); }
.nav-cta {
  background: var(--bordeaux); color: #fff !important; padding: 10px 20px;
  border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none;
}
@media (max-width: 720px) { nav ul { display: none; } }

/* ===== HERO (home) ===== */
header.hero { padding: 96px 0 88px; }
.hero .wrap { display: flex; flex-direction: column; align-items: flex-start; }
.hero-mark { width: 84px; height: 84px; margin-bottom: 28px; }
.hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.08; max-width: 760px; margin-bottom: 28px; }
.hero h1 em { font-style: normal; color: var(--bordeaux); }
.hero p.lede { font-size: 19px; color: var(--text-soft); max-width: 560px; margin-bottom: 28px; }
.hero-line { width: 64px; height: 3px; background: var(--bordeaux-mid); border: none; margin-bottom: 28px; }
.btn-row { display: flex; flex-wrap: wrap; margin-top: 8px; }
.btn-row > * { margin: 0 16px 12px 0; }
.btn-primary {
  background: var(--bordeaux); color: #fff; padding: 14px 28px; border-radius: 6px;
  text-decoration: none; font-weight: 600; font-size: 15px; display: inline-block;
}
.btn-secondary {
  border: 1.5px solid var(--bordeaux-line); color: var(--text); padding: 14px 28px;
  border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 15px; display: inline-block;
}

/* ===== PAGE HEADER (sous-pages) ===== */
header.page-header { padding: 72px 0 56px; border-bottom: 1px solid var(--bordeaux-line); }
.page-header .eyebrow { margin-bottom: 12px; }
.page-header h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.page-header p { font-size: 18px; color: var(--text-soft); max-width: 640px; }

/* ===== SECTION LABEL ===== */
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px;
  color: var(--bordeaux-mid); font-weight: 600; margin-bottom: 10px;
}

/* ===== SERVICES (grid) ===== */
section.services { padding: 88px 0; background: var(--bordeaux-pale); }
section.services.on-page { padding-top: 72px; }
.services h2 { font-size: 30px; margin-bottom: 8px; }
.services > .wrap > p.section-intro { color: var(--text-soft); max-width: 520px; margin-bottom: 48px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 720px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  background: #fff; border: 1px solid var(--bordeaux-line); border-radius: 10px;
  padding: 28px;
}
.service-card .num { font-size: 13px; font-weight: 700; color: var(--bordeaux-light); margin-bottom: 14px; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--text-soft); font-size: 15px; }

/* ===== COMPTABILITE (deux profils) ===== */
section.profiles { padding: 88px 0; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
@media (max-width: 720px) { .profile-grid { grid-template-columns: 1fr; } }
.profile-card {
  border: 1px solid var(--bordeaux-line); border-radius: 12px; padding: 36px;
}
.profile-card .tag {
  display: inline-block; background: var(--bordeaux); color: #fff; font-size: 13px;
  font-weight: 600; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.profile-card h3 { font-size: 22px; margin-bottom: 14px; }
.profile-card p { color: var(--text-soft); font-size: 16px; }
.profile-card p + p { margin-top: 12px; }

/* ===== ABOUT ===== */
section.about-page { padding: 88px 0; }
.about-inner { display: flex; align-items: flex-start; max-width: 720px; }
.about-text { font-size: 17px; color: var(--text); }
.about-text p + p { margin-top: 18px; }

/* ===== CONTACT ===== */
section.contact { padding: 96px 0; text-align: center; }
section.contact.on-page { padding-top: 72px; }
.contact h2 { font-size: 32px; margin-bottom: 14px; }
.contact p.lede { color: var(--text-soft); font-size: 17px; margin-bottom: 36px; }
.contact-links { display: flex; justify-content: center; flex-wrap: wrap; }
.contact-links > * { margin: 0 10px 12px; }

footer { border-top: 1px solid var(--bordeaux-line); padding: 28px 0; margin-top: auto; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-soft); }
@media (max-width: 560px) { footer .wrap { flex-direction: column; gap: 8px; } }
