/* The whole site: one phone number, centered, tappable. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: #fdf6ec;
  font-family: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif;
}

.phone {
  color: #c1352b;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(2.2rem, 13vw, 7rem);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.phone:hover { color: #2b1a12; }
