body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

.font-playfair {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  font-size: 5.0rem;
  line-height:1.02;
}

h2 {
  font-size: 3.2rem;
}

.bg-dark-blue-gradient {
  background: linear-gradient(150deg, #102550, #1e5ec6);
}

.bg-dark-blue {
  background: #102550;
}

.bg-light-gray {
  background: #f4f7fb;
}

.bg-dark-gold {
  background: #d7a72d;
}

.bg-tan {
  background: #f8f4ea;
}

.dark-blue {
  color: #102550;
}

.light-blue {
  color: #dce7ff;
}

.medium-blue {
  color: #61708e;
}

.max-width-400 {
  max-width: 400px;
}

.max-width-400-or-60vw {
  max-width: min(400px, 60vw);
}

.shadow {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rounded {
  border-radius: 8px;
}

.height-full {
  height: 100%;
}

.height-220 {
  height: 220px;
}

.height-440 {
  height: 440px;
}

.object-cover {
  object-fit: cover;
}
