:root {
  --brand: #003366;           /* Bleu fonce logo */
  --acc: #f47920;             /* Orange logo */
  --ink: #222222;             /* Texte principal */
  --muted: #666666;           /* Texte secondaire */
  --bg: #ffffff;              /* Fond blanc */
  --maxw: 900px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

.wrap {
  max-width: var(--maxw);
  margin: auto;
  padding: clamp(16px, 3vw, 32px);
}

header {
  text-align: center;
  padding: 40px 0;
}

.brandmark img {
  height: 80px;
  width: auto;
}

.hero h1 {
  margin: 20px 0 10px;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
}

.hero p {
  margin: 0 auto 1.2rem;
  max-width: 700px;
  color: var(--muted);
  text-align: center;
  font-size: 1.1rem;
  text-wrap: balance;
}

.hero p:last-of-type {
  margin-bottom: 0;
}

main {
  margin-top: 40px;
  text-align: center;
}

.patchwork img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-section {
  margin-top: 24px;
}

.contact-note {
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  margin-top: 40px;
  padding: 20px 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.photos{
  display: grid;
  grid-template-columns: 2fr 1fr;   /* gauche large, droite plus étroit */
  grid-template-rows: auto auto;
  gap: 16px;                       /* espace entre les images */
  align-items: stretch;
}

.photos figure{
  margin: 0;
}

.photos img{
  width: 100%;
  height: 100%;
  object-fit: cover;               /* recadre proprement si ratios différents */
  display: block;
}

/* placements */
.p1{ grid-column: 1; grid-row: 1; }
.p2{ grid-column: 2; grid-row: 1; }
.p3{ grid-column: 1 / -1; grid-row: 2; } /* pleine largeur en bas */
