:root {
  color-scheme: dark;
  --ink: #fbf5e8;
  --muted: #c7b99b;
  --gold: #d8b36a;
  --wine: #5a1825;
  --plum: #241019;
  --charcoal: #101010;
  --line: rgba(216, 179, 106, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--charcoal);
}

body {
  min-height: 100%;
  margin: 0;
  font-family:
    "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  background: var(--charcoal);
  color: var(--ink);
}

.placeholder {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(2rem, 7vw, 6rem);
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(90, 24, 37, 0.72), rgba(16, 16, 16, 0.8) 44%),
    linear-gradient(215deg, rgba(216, 179, 106, 0.13), transparent 38%),
    var(--charcoal);
}

.placeholder::before,
.placeholder::after {
  position: absolute;
  inset: clamp(1rem, 3vw, 2.4rem);
  content: "";
  pointer-events: none;
  border: 1px solid var(--line);
  z-index: -1;
}

.placeholder::after {
  inset: clamp(1.35rem, 3.6vw, 3rem);
  border-color: rgba(251, 245, 232, 0.08);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(251, 245, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 245, 232, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.content {
  display: grid;
  width: min(100%, 760px);
  justify-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.mark {
  width: clamp(4.8rem, 12vw, 7rem);
  height: auto;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.28));
}

.kicker {
  margin: clamp(0.75rem, 2vw, 1.25rem) 0 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(0.72rem, 1.6vw, 0.86rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.6;
  color: var(--muted);
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

@media (max-width: 560px) {
  .placeholder {
    padding: 2rem;
  }

  .placeholder::before {
    inset: 1rem;
  }

  .placeholder::after {
    inset: 1.35rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 17vw, 4.75rem);
  }
}
