:root {
  --bg-base: #111015;
  --bg-top: #2a2130;
  --surface: rgba(22, 20, 28, 0.88);
  --text-main: #f9f4ea;
  --text-muted: #d7cdbb;
  --accent: #d7a861;
  --line: rgba(255, 255, 255, 0.14);
  --font-title: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 16%, rgba(215, 168, 97, 0.2), transparent 38%),
    radial-gradient(circle at 88% 10%, rgba(173, 93, 66, 0.26), transparent 42%),
    linear-gradient(170deg, var(--bg-top), var(--bg-base) 46%);
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.wrap {
  width: min(100%, 680px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  background: linear-gradient(130deg, var(--surface), rgba(17, 15, 22, 0.9));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.36);
}

p {
  margin: 0.45rem 0;
  color: var(--text-muted);
}

h1 {
  margin: 0 0 0.45rem;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4.2vw, 2.2rem);
  color: var(--text-main);
}

a {
  color: #ffe5bf;
  text-decoration: none;
  border-bottom: 1px solid rgba(215, 168, 97, 0.4);
}

a:hover {
  border-bottom-color: var(--accent);
}

.note {
  margin-top: 0.8rem;
  font-size: 0.84rem;
}
