/* === Base: variabili + reset + tipografia === */

:root{
  --bg: #faf6ef;
  --bg-soft: #f3ecdf;
  --ink: #1a1d2b;
  --ink-soft: #4a4e62;
  --gold: #b8863d;
  --gold-light: #d9b376;
  --blue: #1e2a4a;
  --accent: #c46a2f;
  --line: rgba(26, 29, 43, 0.12);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

/* Texture sottile di sfondo */
body::before{
  content:'';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(184, 134, 61, 0.08), transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(30, 42, 74, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.serif{ font-family: 'Cormorant Garamond', serif; }

/* Bottoni condivisi */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
  font-family: 'Inter', sans-serif;
}
.btn-primary{
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover{
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184, 134, 61, 0.3);
}
.btn-secondary{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover{
  background: var(--ink);
  color: var(--bg);
}

/* Animazioni riusabili */
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(20px); }
  to{ opacity:1; transform: translateY(0); }
}
@keyframes fadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}
