/* =============================================================================
   TYPOGRAPHY.CSS — Premium type system for Pet Transfer Bodrum
   Plus Jakarta Sans (headings) + Inter (body)
   ============================================================================= */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.25rem, 5vw, var(--text-5xl)); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, var(--text-4xl)); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Section label — small uppercase tag above headings ──── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ── Section heading + subtitle pattern ──────────────────── */
.section-heading {
  font-size: clamp(1.75rem, 3vw, var(--text-4xl));
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-heading em {
  font-style: normal;
  color: var(--color-accent);
}

.section-subheading {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 560px;
}

.section-subheading.centered {
  margin: 0 auto;
  text-align: center;
}

/* Light variant for dark backgrounds */
.section-heading--light { color: white; }
.section-subheading--light { color: rgba(255,255,255,0.65); }
.label--light { color: var(--color-accent-light); }
.label--light::before { background: var(--color-accent-light); }

/* ── Price display ───────────────────────────────────────── */
.price {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-unit {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 4px;
}

/* ── Prose ───────────────────────────────────────────────── */
.prose h2 { margin: 2em 0 0.75em; font-size: var(--text-2xl); }
.prose h3 { margin: 1.75em 0 0.6em; font-size: var(--text-xl); }
.prose p  { margin-bottom: 1.4em; color: var(--color-text-muted); }
.prose ul, .prose ol { margin-bottom: 1.4em; padding-left: 1.5em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.5em; color: var(--color-text-muted); }
.prose a  { color: var(--color-accent); text-decoration: underline; }
.prose strong { color: var(--color-text); font-weight: 600; }
.prose blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--color-text-muted);
}
