/* Non-critical CSS - Loaded asynchronously */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  padding: 0.75rem 1.75rem;
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--dark);
}

.btn-outline {
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-text {
  font-weight: 600;
  color: var(--gold-text);
  background: transparent;
  padding: 0.5rem 0;
}

.btn-text:hover {
  color: var(--gold-dark);
}

/* Eyebrow */
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-text);
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* Section heading */
.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center p {
  max-width: 680px;
  margin: 0.6rem auto 0;
  color: var(--muted);
}

.section-heading.center p + p {
  margin-top: 0.45rem;
}

.section-heading.light {
  color: #fff;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
}

/* Responsive Typography (mobile) */
@media (max-width: 768px) {
  /* Mobile Typography Scale */
  body {
    font-size: 1rem; /* 16px mobile */
    line-height: 1.6;
  }

  h1 {
    font-size: 2rem; /* 32px mobile */
    line-height: 1.2;
  }

  h2 {
    font-size: 1.625rem; /* 26px mobile */
    line-height: 1.3;
  }

  h3 {
    font-size: 1.25rem; /* 20px mobile */
    line-height: 1.4;
  }

  h4 {
    font-size: 1.125rem; /* 18px mobile */
    line-height: 1.5;
  }

  h5, h6 {
    font-size: 1rem; /* 16px mobile */
    line-height: 1.5;
  }

  /* Small text remains the same on mobile */
  small,
  .text-small {
    font-size: 0.875rem; /* 14px - unchanged */
    line-height: 1.6;
  }
}

