:root {
  --terra: #B86F4F;
  --cream: #F0E1C2;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: var(--terra);
  color: var(--cream);
  font-family: "Albert Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
}

.wordmark {
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cream);
  margin: 0 0 6px;
}

.subline {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.65;
  margin: 0 0 64px;
}

.coming-soon {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  opacity: 0.85;
  margin: 0 0 36px;
}

.about {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.9;
  max-width: 480px;
  margin: 0 0 48px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--cream);
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.15s;
}

.instagram-link:hover {
  opacity: 1;
}

.instagram-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

footer {
  padding: 24px 40px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0.4;
}

@media (max-width: 480px) {
  main   { padding: 48px 28px; }
  footer { padding: 20px 28px; }
}
