/* Williams Art Advisory Ltd — home page styles
   Text colour: Pantone 539 C (#00263A) */

:root {
  --pantone-539c: #00263A;
  --page-margin: clamp(1.25rem, 3vw, 2.5rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  /* svh = viewport height with the mobile URL bar expanded, so the
     footer stays visible on load; plain % is the older-browser fallback */
  min-height: 100%;
  min-height: 100svh;
  font-family: 'LT Univers', Helvetica, Arial, sans-serif;
  color: var(--pantone-539c);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--page-margin);
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-weight: 500;
  font-size: clamp(1.2rem, 2.56vw, 1.9rem);
  letter-spacing: 0.01em;
}

.contact {
  font-weight: 400;
  font-size: clamp(1.0125rem, 1.62vw, 1.35rem);
  color: var(--pantone-539c);
  text-decoration: none;
}

.contact:hover,
.contact:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.02rem;
  }

  .contact {
    font-size: 0.911rem;
  }
}
