/* ============================================================
   BASE — Reset, variabili CSS, elementi globali
   Importato da tutti i fogli di stile
============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Variabili ──────────────────────────────────────────────── */
:root {
  /* Palette ocra pastello */
  --bg:          #FEFCF8;
  --ochre-100:   #FBF3E0;
  --ochre-200:   #F0DEBB;
  --ochre-300:   #E2C58A;
  --ochre-400:   #CFA75E;
  --ochre-500:   #B8892F;
  --text-dark:   #4A3618;
  --text-mid:    #7A6040;
  --text-light:  #A8895A;
  --white:       #FFFFFF;

  /* Spacing / sizing */
  --gap:         2rem;
  --card-radius: 1.25rem;
  --photo-h:     clamp(180px, 40vw, 280px);

  /* Timeline */
  --line-w:      2px;
  --dot-size:    14px;
}

/* ── Globali ────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-dark);
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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