@font-face {
  font-family: 'Chianti BT';
  src: url('../fonts/chiantibt_roman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chianti BT';
  src: url('../fonts/chiantibt_bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-page-bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

/* Typography utilities */
.eyebrow {
  font-family: var(--font-family);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.heading-display {
  font-family: var(--font-family);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.heading-section {
  font-family: var(--font-family);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 400;
  line-height: 1.2;
}

.heading-card {
  font-family: var(--font-family);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.25;
}

.body-lg {
  font-size: var(--text-lg);
  line-height: 1.8;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Layout utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--space-lg);
}

.section--alt {
  background: var(--color-surface-alt);
}

.section__header {
  margin-bottom: var(--space-lg);
}

.section__header--center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section__header .eyebrow {
  margin-bottom: var(--space-sm);
}

.section__header .heading-section {
  margin-bottom: var(--space-md);
}
