/* === Pimp my Dégust' — styles communs === */
:root {
  --bg: #fdeed4;
  --text: #3a0a14;
  --text-soft: #6b3540;
  --wine: #7a1530;
  --wine-dark: #5a0e22;
  --accent: #c73552;
  --blush: #f4a8a8;
  --rule: rgba(58, 10, 20, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

header.site-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 36px;
}

header.site-header .logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

header.site-header h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 700;
}

header.site-header h1 a {
  color: var(--text);
  text-decoration: none;
}

header.site-header .tagline {
  margin: 2px 0 0;
  font-size: 14px;
  color: var(--text-soft);
}

h1.page-title {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

h1.page-title + .lead {
  color: var(--text-soft);
  font-size: 18px;
  margin: 0 0 32px;
}

h2 {
  font-size: 22px;
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
  color: var(--wine);
}

h3 {
  font-size: 17px;
  margin: 24px 0 8px;
  color: var(--text);
}

p, ul, ol { margin: 0 0 14px; }

ul, ol { padding-left: 24px; }
li { margin-bottom: 6px; }

a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover { color: var(--wine-dark); }

strong { font-weight: 600; }

.callout {
  background: rgba(122, 21, 48, 0.06);
  border-left: 3px solid var(--wine);
  padding: 16px 20px;
  border-radius: 6px;
  margin: 20px 0;
}
.callout p:last-child { margin-bottom: 0; }

.meta {
  font-size: 14px;
  color: var(--text-soft);
  padding-top: 24px;
  margin-top: 48px;
  border-top: 1px solid var(--rule);
}

.legal-footer {
  font-size: 13px;
  color: var(--text-soft);
  padding-top: 28px;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
  line-height: 1.5;
}

footer.site-footer {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--text-soft);
}
footer.site-footer nav { margin-bottom: 12px; }
footer.site-footer a { margin-right: 16px; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 15px;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
th {
  background: rgba(122, 21, 48, 0.05);
  font-weight: 600;
  color: var(--wine);
}

.btn-primary {
  display: inline-block;
  background: var(--wine);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 12px;
}
.btn-primary:hover { background: var(--wine-dark); color: var(--bg); }

/* Logo SVG inline pour rester cohérent même si l'image manque */
.logo-svg {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg);
  display: block;
}

@media (max-width: 600px) {
  .container { padding: 24px 18px 60px; }
  h1.page-title { font-size: 26px; }
  h2 { font-size: 20px; }
  body { font-size: 16px; }
}
