h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--charcoal);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em; /* Modern sans display için sıkı tracking */
  margin-bottom: var(--spacing-md);
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p {
  margin-bottom: var(--spacing-md);
  font-weight: 400;
  line-height: 1.75;
  max-width: 72ch; /* Satır uzunluğu kısıtlaması - okunabilirlik */
  text-wrap: pretty;
}

a {
  color: var(--edirne-red-700);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:not(.btn):hover { color: var(--edirne-red-800); }

/* Editoryal vurgu metni (eski serif italik alıntıların modern karşılığı) */
.lead-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--edirne-red-800);
  border-left: 3px solid var(--heritage-gold);
  padding-left: var(--spacing-md);
  margin-bottom: 2rem;
}

.section-lead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal-soft);
}

/* Ekran Okuyucu Yönlendirici Metin (A11y) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Klavye Focus Ring (A11y) */
:focus-visible {
  outline: 3px solid var(--heritage-gold);
  outline-offset: 3px;
  border-radius: 3px;
}
