/* simon-web : feuille unique, sobre et rapide. Pas de JS, pas de framework.
   Palette : encre sur blanc, accent bordeaux (écho de la photo officielle). */

:root {
  --ink: #1c1e21;
  --muted: #5a6068;
  --accent: #7c2d3e;
  --accent-dark: #5e2230;
  --rule: #e6e3de;
  --bg-soft: #faf8f5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: #fff;
}

.wrap { max-width: 700px; margin: 0 auto; padding: 0 1.25rem; }

/* En-tête */
.site-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}
.site-header .brand {
  font-weight: 650; text-decoration: none; color: var(--ink); letter-spacing: .01em;
}
.lang-menu { font-size: .9rem; color: var(--muted); }
.lang-menu a { color: var(--muted); text-decoration: none; padding: 0 .15rem; }
.lang-menu a:hover { color: var(--accent); }
.lang-menu .current { color: var(--ink); font-weight: 600; padding: 0 .15rem; }

/* Héro */
.hero { text-align: center; padding: 3rem 0 2.25rem; }
.hero img.portrait {
  width: 168px; height: 168px; border-radius: 50%;
  object-fit: cover; display: block; margin: 0 auto 1.4rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 8px 28px rgba(124,45,62,.14);
}
.hero h1 { font-size: 2rem; margin: 0 0 .4rem; letter-spacing: -.015em; }
.hero p.tagline { color: var(--muted); margin: 0 auto; max-width: 34rem; }

/* Sections */
main section { padding: 1.6rem 0; }
main h2 {
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--accent); margin: 0 0 1rem;
}
main p { margin: 0 0 1rem; }
a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

/* Projets */
.projects { list-style: none; margin: 0; padding: 0; }
.projects li {
  padding: .85rem 0; border-bottom: 1px solid var(--rule);
}
.projects li:last-child { border-bottom: none; }
.projects .name { font-weight: 650; }
.projects .desc { color: var(--muted); display: block; font-size: .97rem; }

/* Encarts */
.note {
  background: var(--bg-soft); border-left: 3px solid var(--accent);
  padding: .9rem 1.1rem; border-radius: 0 6px 6px 0;
  color: var(--muted); font-size: .97rem; margin: 0 0 1.4rem;
}

/* Page parcours */
.story h2 { text-transform: none; letter-spacing: 0; font-size: 1.35rem; color: var(--ink); margin-top: 2.2rem; }
.story blockquote {
  margin: 1.4rem 0; padding: .2rem 1.2rem;
  border-left: 3px solid var(--accent); color: var(--muted); font-style: italic;
}

/* Pied de page */
.site-footer {
  border-top: 1px solid var(--rule); margin-top: 2.5rem;
  padding: 1.6rem 0 2.2rem; color: var(--muted); font-size: .92rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent); }

@media (max-width: 560px) {
  .hero { padding-top: 2.2rem; }
  .hero h1 { font-size: 1.6rem; }
}
