:root {
  --bg: #000000;
  --text: #ead7c8;
  --border: rgba(255, 255, 255, 0.92);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--bg);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

.coming-soon {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 56px) 20px;
}

.content {
  width: min(100%, 460px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand {
  margin-bottom: clamp(32px, 5vh, 56px);
}

.brand h1 {
  margin: 0;
  font-family: 'Julius Sans One', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.artwork-frame {
  width: min(100%, 350px);
  margin: 0;
  padding: clamp(14px, 2vw, 18px);
  border: 2px solid var(--border);
  border-radius: clamp(32px, 4vw, 42px);
  background: transparent;
}

.artwork {
  width: 100%;
  height: auto;
  border-radius: clamp(18px, 2.6vw, 24px);
}

.status {
  margin: clamp(42px, 6vh, 64px) 0 clamp(28px, 4vh, 40px);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  transform: translateY(-2px);
  opacity: 0.9;
}

.instagram-link:focus-visible {
  outline: 2px solid rgba(234, 215, 200, 0.7);
  outline-offset: 6px;
  border-radius: 12px;
}

.instagram-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-link .fill-dot {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 640px) {
  .content {
    width: min(100%, 360px);
  }

  .artwork-frame {
    width: min(100%, 315px);
    border-width: 1.5px;
  }
}

@media (max-width: 420px) {
  .coming-soon {
    padding: 24px 16px 28px;
  }

  .brand {
    margin-bottom: 28px;
  }

  .artwork-frame {
    width: min(100%, 290px);
    padding: 12px;
    border-radius: 28px;
  }

  .artwork {
    border-radius: 18px;
  }

  .status {
    margin-top: 34px;
    margin-bottom: 24px;
    font-size: clamp(20px, 6vw, 24px);
  }
}
