:root {
  color-scheme: light;
  --paper: #efeee8;
  --ink: #10100f;
  --muted: #6c6962;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

.holding {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(24px, 4vw, 64px);
}

.brand {
  position: relative;
  z-index: 2;
  width: min(42vw, 510px);
}

.brand-name {
  display: grid;
  width: max-content;
}

.brand-name strong {
  font-size: clamp(62px, 8vw, 150px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
}

.brand-name span {
  margin-top: clamp(18px, 2.3vw, 34px);
  padding-bottom: clamp(12px, 1.2vw, 18px);
  border-bottom: clamp(4px, 0.45vw, 8px) solid currentColor;
  font-size: clamp(40px, 5vw, 88px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
}

.brand p {
  margin: clamp(16px, 2vw, 28px) 0 0;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: clamp(10px, 0.85vw, 13px);
  letter-spacing: 0.28em;
}

.disc {
  position: absolute;
  top: 50%;
  left: 47%;
  display: grid;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  transform: translate(-50%, -48%);
}

.disc-name {
  display: grid;
  justify-items: center;
  line-height: 1;
}

.disc-name strong {
  font-size: clamp(58px, 8vw, 126px);
  font-weight: 900;
}

.disc-name i {
  width: clamp(20px, 2.8vw, 42px);
  aspect-ratio: 1;
  margin: clamp(24px, 3vw, 44px) 0;
  border-radius: 50%;
  background: var(--paper);
}

.disc-name span {
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.announcement {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(28px, 4vw, 64px);
  z-index: 2;
  text-align: right;
}

.announcement h1 {
  margin: 0;
  font-size: clamp(70px, 11vw, 180px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: 0;
}

.announcement p {
  margin: clamp(24px, 3vw, 42px) 0 0;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: clamp(10px, 0.9vw, 14px);
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram {
  position: absolute;
  bottom: clamp(28px, 4vw, 64px);
  left: clamp(24px, 4vw, 64px);
  z-index: 3;
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.instagram:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 8px;
}

@media (max-width: 760px) {
  .holding {
    display: grid;
    min-height: 100svh;
    align-content: space-between;
  }

  .brand {
    width: min(78vw, 360px);
  }

  .disc {
    top: 48%;
    left: 52%;
    width: min(82vw, 500px);
    transform: translate(-50%, -50%);
  }

  .announcement {
    right: 24px;
    bottom: 80px;
  }

  .announcement p {
    display: none;
  }

  .instagram {
    bottom: 24px;
    left: 24px;
  }
}

@media (max-height: 650px) and (min-width: 761px) {
  .disc {
    width: min(52vw, 560px);
  }
}
