:root {
  color-scheme: dark;
  --ink: #f7f7f1;
  --ground: #0d1411;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ground);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mark-page {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vh, 28px);
  padding: 32px 20px;
}

.tree-mark {
  width: min(64vw, 360px);
  max-height: 62vh;
  height: auto;
  filter: drop-shadow(0 26px 50px rgb(0 0 0 / 0.38));
}

.limbs {
  stroke-width: 22;
}

.blossoms,
.roots {
  fill: currentColor;
}

h1 {
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: clamp(1.15rem, 4.2vw, 3.1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .mark-page {
    padding-inline: 12px;
  }

  .tree-mark {
    width: min(78vw, 330px);
  }

  h1 {
    font-size: clamp(1rem, 7vw, 1.9rem);
    letter-spacing: 0.03em;
  }
}
