/* ============================================
   TYPOGRAPHY ENHANCEMENTS
   ============================================ */

/* 1. Gradient text on section headings */
.section-header h2 {
  font-weight: 900;
  background: linear-gradient(135deg, #3D5210 0%, #5C7A1F 50%, #C0392B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

/* 3. Decorative underline on section headings */
.section-header .section-line {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #5C7A1F, #C0392B);
  border-radius: 3px;
  margin: 0.85rem auto 0;
  position: relative;
}

.section-header .section-line::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #F4B942;
  border-radius: 2px;
}

/* 4. Ultra-bold headings + light body contrast */
h1, h2, h3 {
  font-weight: 900;
  letter-spacing: -0.02em;
}

body {
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* 8. All-caps spaced section labels */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-label::before { content: '— '; }
.section-label::after  { content: ' —'; }

/* 2. Marker highlight on key words */
.highlight {
  background: linear-gradient(120deg, #FFE08A 0%, #FFD600 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 85%;
  padding: 0 2px;
  font-style: normal;
}

/* 9. Coloured pill chips for stats/phrases */
.pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pill-green  { background: rgba(92,122,31,0.12);  color: #3D5210; }
.pill-red    { background: rgba(192,57,43,0.12);  color: #8B1A1A; }
.pill-amber  { background: rgba(244,185,66,0.18); color: #7A5500; }

/* 5. Pull quote block */
.pull-quote {
  text-align: center;
  padding: 3rem var(--container-padding);
  background: linear-gradient(135deg, #EFF5E6, #FFFDF4);
  border-left: none;
  position: relative;
  overflow: hidden;
}

.pull-quote::before {
  content: '"';
  font-family: var(--font-accent);
  font-size: 10rem;
  color: rgba(92,122,31,0.08);
  position: absolute;
  top: -2rem;
  left: 1rem;
  line-height: 1;
}

.pull-quote p {
  font-family: var(--font-accent);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: #3D5210;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 0.75rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.pull-quote cite {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* 7. Outlined/stroke accent word */
.text-outline {
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: transparent;
  color: var(--secondary);
}

/* 10. Drop shadow on hero text */
.hero-badge,
.hero-motto {
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* 6. Typing animation target (JS driven) */
.typing-text::after {
  content: '|';
  animation: blink 0.75s step-end infinite;
  color: #FFE08A;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
