:root{
  --font-head: "Playfair Display", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

html, body {
  height: 100%;
  overflow-x: hidden;
}
body{
  font-family: var(--font-body);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

/* Main content grows to push footer down */
#siteMain {
  flex: 1 0 auto;
  margin-top: -24px;
}

/* Footer stays at bottom */
#siteFooter {
  flex-shrink: 0;
}

a{text-decoration: none !important;}
