/* =========================================
   TYPOGRAPHY — MT Luxury Wood
   Font imports + scale + stili base
   ========================================= */

/* Google Fonts — caricato via <link> in index.html (non duplicare qui) */

/* --- Font families --- */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.7;
}

/* --- Titoli --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

em {
  font-style: italic;
  color: var(--gold-light);
}

/* --- Label / eyebrow --- */
.label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* --- Linea decorativa prima del label --- */
.label-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.label-line::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* --- Paragrafo descrittivo --- */
.desc {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--cream-dim);
  line-height: 1.8;
  max-width: 52ch;
}

/* --- Separatore dorato --- */
.divider {
  width: 1px;
  height: 40px;
  background: var(--gold-dim);
  opacity: 0.4;
}
