/* ========================================
   TYPOGRAPHY
   Syne (Artful/Modernist) + Manrope (Geometric)
   ======================================== */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700; /* Syne looks best bold */
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em; /* Tight packing for Syne */
}

h1 {
  font-size: var(--fs-h1);
  text-transform: uppercase; /* Modernist Impact */
}

h2 {
  font-size: var(--fs-h2);
  /* Optional: uppercase here too depending on preference, let's keep it mixed */
}

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

/* Body Text */
p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--charcoal);
  max-width: 65ch; /* Optimalna szerokość dla czytelności */
}

/* Lead Text */
.lead {
  font-size: calc(var(--fs-body) * 1.25);
  line-height: var(--lh-loose);
  font-weight: var(--fw-light);
  color: var(--charcoal-light);
}

/* Small Text */
.small,
small {
  font-size: var(--fs-small);
  line-height: var(--lh-normal);
}

/* Strong & Bold */
strong,
b {
  font-weight: var(--fw-semibold);
}

/* Emphasis */
em,
i {
  font-style: italic;
}

/* Blockquote (może się przydać w sekcjach) */
blockquote {
  font-family: var(--font-heading);
  font-size: calc(var(--fs-body) * 1.5);
  line-height: var(--lh-loose);
  font-style: italic;
  color: var(--charcoal-light);
  border-left: 4px solid var(--sage-green);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
}

/* Links */
a {
  transition: color var(--transition-base);
}

a:hover {
  color: var(--sage-green);
}

/* Hero specific typography */
.hero-title {
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: calc(var(--fs-body) * 1.25);
  font-weight: var(--fw-light);
  color: var(--white);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: calc(var(--fs-body) * 1.125);
  color: var(--charcoal-light);
  max-width: 600px;
  margin: 0 auto;
}
