:root {
  --accent: #a24333;
  --accent-dark: #7f3226;
  --background: #f3eee9;
  --surface: #ffffff;
  --text: #2f2a28;
  --muted: #6d6763;
  --border: #ddd3cc;
  --shadow: 0 10px 24px rgba(47, 42, 40, 0.08);
}

/* Base generale du site */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8f4ef 0%, #efe6df 100%);
  color: var(--text);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  max-width: 1040px;
  margin: 32px auto;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* En-tete et menu principal */
.site-header {
  padding: 36px 24px 20px;
  text-align: center;
  background: linear-gradient(180deg, #fbf7f3 0%, #f4ece6 100%);
}

.site-header h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  color: var(--accent-dark);
}

.subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-nav {
  background: #f0e4db;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-nav ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 14px 18px;
}

.site-nav a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--accent-dark);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(162, 67, 51, 0.12);
  outline: none;
}

.site-nav a.active {
  background: var(--accent);
  color: #ffffff;
}

/* Blocs de contenu */
main {
  padding: 32px 28px 40px;
}

section + section {
  margin-top: 36px;
}

h2 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 1.15rem;
}

p {
  margin-top: 0;
}

.intro {
  max-width: 760px;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.hero-media {
  padding: 18px;
  background: #faf7f3;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.hero-media img {
  width: 100%;
  border-radius: 12px;
}

.temoignage-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.temoignage-photo {
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(47, 42, 40, 0.08);
}

.temoignage-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.cards,
.grid-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card,
.quote-card,
.summary-box {
  padding: 20px;
  background: #fcfaf8;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.quote-card {
  border-left: 5px solid var(--accent);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fcfaf8;
  border: 1px solid var(--border);
}

th,
td {
  padding: 14px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

th {
  background: #efe1d7;
  color: var(--accent-dark);
}

.site-footer {
  padding: 18px 24px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
