/* Page praticienne uniquement — ne pas combiner avec site.css sans revoir les sélecteurs (.header, .container, etc.) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf8f5;
  --bg-alt: #f2ede6;
  --surface: #fff;
  --ink: #2d231c;
  --ink-muted: #5c4a3d;
  --ink-soft: #8a7566;
  --accent: #7a9e7e;
  --border: #e8dfd4;
  --gold-soft: #d4b896;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --radius: 4px;
  --radius-lg: 8px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.header {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-6);
  background: rgba(250, 248, 245, 0.98);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header a.back { color: var(--accent); font-size: 0.95rem; }

.logo { height: 36px; width: auto; object-fit: contain; }

.page { padding: var(--space-10) var(--space-4); background: var(--bg-alt); }

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.media {
  flex: 1 1 360px;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

.media img { width: 100%; height: 420px; object-fit: cover; }

.content { flex: 1 1 420px; min-width: 0; padding: var(--space-2); }

h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

h1 em { font-style: italic; color: var(--accent); }

.lead { color: var(--ink-muted); margin-bottom: var(--space-5); font-size: 1.05rem; }

.content p { margin-bottom: var(--space-4); color: var(--ink-muted); }

.content ul {
  list-style: none;
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.content li { padding-left: 1.1rem; position: relative; color: var(--ink-muted); }

.content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-soft);
  font-weight: 700;
}

.actions { margin-top: var(--space-6); display: flex; flex-wrap: wrap; gap: var(--space-3); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn.primary { background: #b8956b; border-color: #b8956b; }

.btn:hover { background: #efe7d9; border-color: var(--accent); }

.btn.primary:hover { background: #d4b896; }

.footer {
  padding: var(--space-8);
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.footer .links a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer .copy { color: var(--ink-soft); font-size: 0.85rem; }

@media (max-width: 900px) {
  .container { flex-direction: column; }
  .media img { height: 360px; }
  .content { padding: 0; }
}
