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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--guld-ink);
  background: var(--guld-paper);
  line-height: 1.55;
}

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

a {
  color: var(--guld-primary);
}

a:hover {
  color: var(--guld-navy);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--guld-navy);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  max-width: var(--measure);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--guld-primary);
  color: var(--guld-white);
}

.btn--primary:hover {
  background: var(--guld-navy);
  color: var(--guld-white);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--guld-white);
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--guld-white);
}
