/* WhiteDoor placeholder. Carried over from the splash page whitedoor.com
   serves today, so the hosted version looks the same. */

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

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #000000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 24px;
  text-align: center;
}

/* The brand mark is the page heading, so it carries the h1. */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0;
  font-weight: 400;
}

.logo img { display: block; }
.logo-icon { height: 40px; width: auto; }
.logo-text { height: 30px; width: auto; }

.tagline {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.01em;
}

.contact a {
  font-size: 14px;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact a:hover { opacity: 0.6; }
