/* ============================================
   HORIZON37 — TYPOGRAPHY SYSTEM
   Inter (sans) + Source Serif Pro (serif)
   Option B: Serif headings + lead text, Inter for UI
   ============================================ */

/* --- Font imports --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Source+Serif+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* --- Preserved site rules --- */
.site-title { color: #32557d; }
.entry-header .entry-title { display: none; }
.single-post .post-thumbnail { display: none; }
a { color: #32557d; }

/* --- NUCLEAR font reset: kills all inline font-family styles --- */
* { font-family: inherit !important; }

/* --- Root: set Inter as the base --- */
html, body {
  font-family: 'Inter', sans-serif !important;
}

/* --- Headings: Source Serif Pro --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Serif Pro', serif !important;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* --- Typographic scale --- */
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); line-height: 1.08; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.15; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); line-height: 1.25; }
h4, h5, h6 { font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.35; }

p, li {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
}

/* --- UI elements: always Inter --- */
nav, button, input, select, textarea,
.wp-block-navigation,
.wp-block-navigation a,
.wp-block-button__link,
.wp-block-site-title,
.h37-impact,
.h37-impact .num,
.h37-impact .lbl,
.h37-impact .ilbl,
.h37-impact .ibody,
.h37-impact .pillar {
  font-family: 'Inter', sans-serif !important;
}

/* --- Eyebrow / label text --- */
p[style*="font-size:11px"],
p[style*="font-size: 11px"] {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.6875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  line-height: 1.5 !important;
}

/* --- Buttons: Inter medium --- */
.wp-block-button__link {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
}

/* ============================================
   HEADER LOGO FIX
   ============================================ */

.site-logo img,
.custom-logo {
  max-height: 60px;
  width: auto;
  height: auto;
  display: block;
}

/* Prevent header from stretching logo */
.site-logo {
  display: flex;
  align-items: center;
}