*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Cinzel", "Trajan Pro", "Trajan Pro 3", Georgia, "Times New Roman", serif;
  color: #1a1a1a;
  background-color: #f2f0ec;
  /* White-wash overlay + photo underneath (CSS reproduces PSD Layer 1672) */
  background-image:
    linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    url("/assets/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
}

/* Prefer WebP where supported */
@supports (background-image: image-set(url("x.webp") type("image/webp"))) {
  body {
    background-image:
      linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
      image-set(
        url("/assets/bg.webp") type("image/webp"),
        url("/assets/bg.jpg") type("image/jpeg")
      );
  }
}

.stage {
  text-align: center;
  max-width: 68rem;
  width: 100%;
}

.logo {
  width: clamp(320px, 55vw, 720px);
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}

.tagline {
  font-weight: 600;
  font-size: clamp(0.875rem, 1.6vw, 1.375rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0 auto 1.25rem;
  max-width: 58rem;
  text-transform: uppercase;
  font-variant: small-caps;
}

.contact {
  font-weight: 500;
  font-size: clamp(0.8125rem, 1.25vw, 1.125rem);
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.contact a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease;
}

.contact a:hover,
.contact a:focus-visible {
  border-bottom-color: currentColor;
}

.contact .sep {
  display: inline-block;
  margin: 0 0.75em;
  opacity: 0.5;
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
    padding: 2rem 1rem;
  }
  .tagline br { display: none; }
  .contact .sep {
    display: block;
    margin: 0.25em 0;
  }
}
