:root {
  --bg: #fffaf2;
  --card: #ffffff;
  --text: #1b1b1b;
  --muted: #666;
  --brand: #b68b4c;     /* couleur doré/marron choisie */
  --brand-2: #9d7a40;   /* accent légèrement plus sombre */
  --ring: rgba(182,139,76,.25);
  --shadow: 0 8px 24px rgba(0,0,0,.06);
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 700; }
.brand img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); background:#fff; }

.top-nav a { color: var(--text); text-decoration: none; margin-left: 18px; }
.top-nav a:hover { text-decoration: underline; }

.hero { padding: 48px 0 12px; text-align: center; }
.hero h1 { font-size: clamp(28px, 4.6vw, 40px); margin: 0 0 8px; }
.hero .sub { color: var(--muted); margin: 0 0 16px; }

.cta-row { display: inline-flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px; border-radius: 999px;
  background: #fff; color: var(--text); border: 1px solid #ddd;
  text-decoration: none; font-weight: 600;
}
.btn:hover { border-color: #ccc; }
.btn.primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}
.btn.primary:hover { filter: brightness(.95); }

.section { padding: 42px 0; }
.section h2 { font-size: 26px; margin: 0 0 18px; }

.prices {
  display: grid; gap: 16px;
  grid-template-columns: repeat( auto-fit, minmax(280px, 1fr) );
}

.card {
  background: var(--card); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
  border: 1px solid #eee2cf;
}
.card h3 { margin-top: 0; }

.price {
  font-size: 28px; font-weight: 800; margin: 6px 0 10px;
}
.price.accent { color: var(--brand); }

.list { padding-left: 18px; margin: 0 0 10px; }
.hint { font-size: 14px; color: var(--muted); }

.contact-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat( auto-fit, minmax(260px, 1fr) );
}

.link { color: var(--brand); text-decoration: none; font-weight: 600; }
.link:hover { text-decoration: underline; }

.note {
  margin-top: 14px; font-size: 14px; color: var(--muted);
  background: #fff; border: 1px dashed #e8e0d2; padding: 12px;
  border-radius: 12px;
}

.site-footer {
  padding: 36px 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap; color: var(--muted); font-size: 14px;
}
.foot-nav { display: inline-flex; gap: 8px; }
.foot-nav a { color: var(--muted); text-decoration: none; }
.foot-nav a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .brand span { display: none; }
}
