:root {
  /* Fond & surfaces (ivoire chaud) */
  --bg: #FAF9F6;
  --bg-alt: #F2F0EB;
  --card: #FFFFFF;

  /* Textes */
  --text: #2E2E2E;
  --muted: #6E6E6E;

  /* Accent (or doux) */
  --gold: #D4AF6A;
  --gold-dark: #B8964A;

  /* UI */
  --radius: 14px;
  --max: 1100px;

  /* Lignes / ombres (papier) */
  --line: #E3E0D9;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
  background: linear-gradient(180deg, var(--bg), var(--bg-alt));
  color: var(--text);
  line-height: 1.65;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px;
}

header { border-bottom: 1px solid var(--line); }

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{ display:flex; flex-direction:column; gap:4px; }

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.sub{
  font-size: .95rem;
  color: var(--muted);
}

.badge{
  font-size:.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--card);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.hero {
  padding: 64px 0 30px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
  font-weight: 800;
}

.intro {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 18px;
}

/* Photos */
.photosWrap{
  max-width: 720px;
  margin: 0 auto 22px;
  padding: 10px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.photos{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photos img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #F7F5F1;
}

/* Bloc artisan */
.artisanBlock{
  max-width: 720px;
  margin: 0 auto;
  padding: 26px 24px;
  background: linear-gradient(180deg, #FFFFFF, #FBFAF7);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.artisanText{
  font-size: 1.02rem;
  color: var(--text);
}

.artisanText strong{
  color: var(--gold-dark);
  font-weight: 800;
}

.artisanText em{
  font-style: italic;
}

.artisanSignature{
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.sigLine{
  font-weight: 700;
  letter-spacing: .3px;
}

.sigContact{
  margin-top: 6px;
  font-size: .95rem;
  color: var(--muted);
}

.sigContact a{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sigContact a:hover{
  color: var(--gold-dark);
}

.sigContact span{
  margin: 0 6px;
  color: #9A9A9A;
}

/* Features */
.features { padding: 40px 0 70px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { color: var(--muted); }

footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.footer p { text-align:center; }
.muted { color: var(--muted); margin-top: 6px; font-size: .95rem; }

/* Mobile */
@media (max-width: 640px){
  .photos{ grid-template-columns: 1fr; }
  .photos img{ height: 200px; }
}
