:root {
  --cream: oklch(0.975 0.012 80);
  --nude: oklch(0.9 0.03 60);
  --rose-soft: oklch(0.82 0.05 20);
  --wine: oklch(0.36 0.09 20);
  --brown: oklch(0.45 0.06 40);
  --chocolate: oklch(0.28 0.04 40);
  --border: oklch(0.88 0.02 60);

  --font-serif: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  background: var(--cream);
  color: var(--chocolate);
  font-family: var(--font-sans);
}

main {
  width: 100%;
  max-width: 26rem;
  padding: 3rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 5.5rem;
  height: 5.5rem;
}

h1 {
  margin: 1.25rem 0 0;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tagline {
  margin: 0.5rem 0 2.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--brown);
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--chocolate);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.link-button:hover {
  background: var(--nude);
  border-color: var(--rose-soft);
}

.link-button:active {
  transform: scale(0.98);
  background: var(--rose-soft);
}

.link-button:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 2px;
}

.link-icon {
  font-size: 1.15rem;
  line-height: 1;
}

footer {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: var(--brown);
}

.loading,
.error {
  font-size: 0.9rem;
  color: var(--brown);
}
