:root {
  --paper: #efe6d2;
  --ink: #181612;
  --quiet: #615a4e;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
}

body {
  position: relative;
  font-family: Baskerville, "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", serif;
}

/* Warm parchment tint applied over BOTH the page and the JPG,
   so the crest cannot show as a separate pale square. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(154, 112, 55, 0.11);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 9999;
}

.page {
  width: min(92vw, 760px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(26px, 4vh, 46px) 18px clamp(42px, 6vh, 62px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-3vh);
}

.crest {
  display: block;
  width: min(68vw, 400px);
  height: auto;
  margin: 0 auto;
}

.copy {
  margin-top: clamp(18px, 2.8vh, 28px);
}

.coming {
  margin: 0;
  font-size: clamp(1.75rem, 3.6vw, 2.45rem);
  line-height: 1;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.statement {
  margin: clamp(34px, 5vh, 48px) 0 0;
  font-size: clamp(1rem, 2vw, 1.23rem);
  line-height: 1.5;
  font-weight: 400;
}

.branches {
  margin: 24px 0 0;
  font-size: clamp(.92rem, 1.75vw, 1.05rem);
  letter-spacing: .055em;
  font-weight: 400;
}

.branches span {
  padding: 0 .45em;
}

.location {
  margin-top: clamp(46px, 6.8vh, 66px);
  color: var(--quiet);
}

.location p {
  margin: 0;
  font-weight: 400;
}

.place {
  font-size: clamp(.84rem, 1.55vw, .95rem);
  letter-spacing: .08em;
}

.coords {
  margin-top: 10px !important;
  font-size: clamp(.71rem, 1.3vw, .8rem);
  letter-spacing: .15em;
}

@media (max-width: 520px) {
  .page {
    width: 94vw;
    padding-left: 14px;
    padding-right: 14px;
    transform: translateY(-2vh);
  }

  .crest {
    width: min(76vw, 370px);
  }
}
