@font-face {
  font-family: 'Cocogoose Pro Bold';
  src: url('../assets/fonts/Cocogoose-Pro-Bold-trial.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-family: var(--font-main);
}

.h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 600;
}

.body-large { font-size: 1.125rem; font-weight: 400; line-height: 1.6; }
.text-small { font-size: 0.875rem; font-weight: 500; }
.text-micro {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--bg-white); }

.highlight-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 40%;
  background: rgba(136, 167, 47, 0.4); /* Green from palette */
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.highlight-text.active::after,
.reveal.active .highlight-text::after,
.highlight-text:hover::after {
  transform: scaleX(1);
}
