/* Base — typography, body, utilities */

body {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

/* Fluid type scale */
h1, .h1 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
}

h2, .h2 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

h3, .h3 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4, .h4 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

p { color: var(--text-muted); }

strong { font-weight: 600; color: var(--text); }

/* Eyebrow / kicker */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gradient-gold);
  flex-shrink: 0;
}

/* Gold gradient text utility */
.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Focus states — accessibility */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Smooth scroll only for in-page anchor links, not full-page programmatic scrolls */
html:focus-within { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
}

/* Selection */
::selection {
  background: var(--gold-300);
  color: var(--navy-900);
}

/* Utility classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }

.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 1.5rem; }
.mb-xl { margin-bottom: 2rem; }
.mb-2xl { margin-bottom: 3rem; }

/* Font-display swap is set via the Fontshare/Google Fonts URL parameters */
