body {
  margin: 0;
  padding: 0;
  background-color: #f9f8f6;
  -webkit-font-smoothing: antialiased;
}
.grain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
  pointer-events: none;
  z-index: 10;
}
.thin-border {
  border: 0.5px solid #d1d1d1;
}
.btn-ghost {
  border: 0.5px solid currentColor;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background-color: currentColor;
  color: #f9f8f6;
}
.btn-ghost-dark:hover {
  background-color: #081a66;
  color: #f9f8f6;
  border-color: #081a66;
}
.text-editorial {
  font-family: "Playfair Display", serif;
}
.text-sub {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.05em;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
