:root {
	color-scheme: light;
	font-family: Georgia, "Times New Roman", serif;
	background: #f4f0e8;
	color: #17221d;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	min-height: 100vh;
	background: radial-gradient(circle at 80% 10%, #e4c873 0 12rem, transparent 12.1rem), #f4f0e8;
}

.shell { max-width: 720px; margin: 0 auto; padding: 12vh 24px; }
.eyebrow { font: 600 0.75rem/1.2 monospace; letter-spacing: 0.12em; text-transform: uppercase; color: #9b3b25; }
h1 { max-width: 620px; margin: 24px 0 16px; font-size: clamp(3.5rem, 10vw, 7rem); line-height: 0.9; font-weight: 400; }
.intro { max-width: 430px; font-size: 1.2rem; line-height: 1.5; }
form { margin-top: 48px; }
label { display: block; margin-bottom: 8px; font: 600 0.8rem/1.2 monospace; text-transform: uppercase; }
.input-row { display: flex; gap: 8px; }
input, button { min-height: 48px; border: 1px solid #17221d; border-radius: 2px; font: inherit; }
input { width: 100%; padding: 0 14px; background: #fffdf8; }
button { padding: 0 18px; background: #9b3b25; color: #fffdf8; cursor: pointer; }
button:hover { background: #17221d; }
.greeting { margin-top: 14px; padding: 14px; border-left: 3px solid #c8a641; font-size: 1.05rem; background: #fffdf8; }
.greeting-success { border-color: #9b3b25; }

@media (max-width: 520px) {
	.shell { padding-top: 8vh; }
	.input-row { flex-direction: column; }
}