/* ====================================================================
   NovaFolio — typography-fluid.css
   Compléments typographiques fluides (line-heights, lead, presets WP).

   Les tailles canoniques (--nvf-h*-font-size, --nvf-base-font-size)
   sont définies par inc/customizer/output/typography-css.php.
   Ce fichier n'écrase plus ces tokens.
   ==================================================================== */

:root {
  /* Line-heights — tightened for larger fluid heading sizes */
  --nvf-h1-line-height: 1.1;
  --nvf-h2-line-height: 1.15;
  --nvf-h3-line-height: 1.2;
  --nvf-h4-line-height: 1.3;
}

/* Lead paragraphs (used in About — Bio and other patterns) */
.is-style-nvf-lead,
.wp-block-paragraph.is-style-nvf-lead {
  font-size: clamp(1.0625rem, 0.6vw + 0.95rem, 1.25rem);
  line-height: 1.55;
}

/* Single post / portfolio detail title — keep prominent but fluid */
body.single-post,
body.single-portfolio {
  --nvf-single-title-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
}

/* CTA title — harmonize line-height ceiling with fluid scale */
.nvf-cta__title {
  font-size: clamp(1.5rem, 3vw + 0.5rem, var(--nvf-h2-font-size, 2.75rem));
  line-height: var(--nvf-h2-line-height, 1.15);
}

/* WordPress preset font sizes — harmonized fluid scale */
:root {
  --wp--preset--font-size--small:   clamp(0.8125rem, 0.2vw + 0.78rem, 0.875rem);
  --wp--preset--font-size--medium:  var(--nvf-base-font-size);
  --wp--preset--font-size--large:   clamp(1.125rem, 0.7vw + 0.95rem, 1.375rem);
  --wp--preset--font-size--x-large: var(--nvf-h3-font-size);
  --wp--preset--font-size--4xl:     var(--nvf-h1-font-size);
}
