@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy: #111827;
  --gold: #a47c2f;
  --paper: #f7f9f8;
  --muted: #53615e;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0;
}

.holding-page {
  width: min(100%, 900px);
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(48px, 9vh, 100px) 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.brand-seal {
  width: clamp(98px, 15vw, 132px);
  height: auto;
}

.brand-wordmark {
  width: clamp(168px, 25vw, 220px);
  height: auto;
}

.holding-copy {
  width: min(100%, 520px);
  margin-top: clamp(58px, 9vh, 88px);
  padding-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--gold) 58%, transparent);
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
}

@media (max-height: 560px) and (orientation: landscape) {
  .holding-page {
    min-height: 560px;
  }
}
