body {
  font-family:
    "Cormorant Garamond",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 1.3rem;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section-pad {
  padding: 72px 0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  line-height: 1.5;
}
h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  padding-top: 2px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 2px;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  font-family: "Cormorant Garamond", serif;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1.1;
  font-family: "Cormorant Garamond", serif;
}

h4 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--wine);
  font-size: 1.2rem;
  font-weight: 700;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  line-height: 1.5;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary {
  background: var(--wine);
  color: #fff;
}
.btn-secondary {
  background: var(--blue);
  color: #fff;
}
.full {
  width: 100%;
}
.text-link {
  font-weight: 800;
  text-decoration-color: var(--wine);
  text-underline-offset: 4px;
}
.section-title {
  margin-bottom: 28px;
}
.section-title.between {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.section-title.centered {
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.quick-facts span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
}
@media (max-width: 865px) {
  .eyebrow-desktop {
    display: none;
  }
}
@media (max-width: 720px) {
  .section-pad {
    padding: 48px 0;
  }
  .section-title.between {
    display: block;
  }
}
