@font-face {
  font-family: 'Agelia';
  src:
    local('Agelia Regular'),
    local('Agelia-Regular'),
    local('Agelia'),
    url('../fonts/Agelia-Regular.woff2') format('woff2'),
    url('../fonts/Agelia-Regular.woff') format('woff'),
    url('../fonts/Agelia-Regular.otf') format('opentype'),
    url('../fonts/Agelia-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.clinic-brand-name {
  font-family: 'Agelia', 'Agelia Regular', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.navbar-brand .clinic-brand-name {
  font-size: 18px;
  color: #fff;
}

/* Site watermark — cream logo, darkened on light pages */
body {
  isolation: isolate;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("../watermark.png") center 46% / min(78vw, 860px) no-repeat;
  opacity: 0.07;
  filter: brightness(0);
}
[data-theme="dark"] body::before,
body.has-dark-brand-bg::before {
  filter: none;
  opacity: 0.14;
}
@media print {
  body::before {
    display: none;
  }
}
