:root {
	--ink: #2d2d2d;
	--olive: #6b705c;
	--cream: #f7f5f0;
	--paper: #fffdf9;
	--line: #dedbd2;
	--terracotta: #c46a3d
}

* {
	box-sizing: border-box
}

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

body {
	background: var(--cream);
	color: var(--ink);
	font-family: Montserrat, Arial, sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden
}

body:before,
body:after {
	content: "";
	position: fixed;
	border: 1px solid rgba(107, 112, 92, .16);
	border-radius: 50%;
	pointer-events: none
}

body:before {
	width: min(66vw, 900px);
	height: min(66vw, 900px)
}

body:after {
	width: min(94vw, 1280px);
	height: min(94vw, 1280px);
	border-color: rgba(196, 106, 61, .09)
}

.page {
	width: min(720px, 92vw);
	padding: 48px 20px;
	text-align: center;
	position: relative;
	z-index: 1
}

.logo {
	width: min(245px, 58vw);
	height: auto;
	display: block;
	margin: 0 auto
}

.kicker {
	margin: 0 0 17px;
	color: var(--olive);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .3em;
	text-transform: uppercase
}

h1 {
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(48px, 7vw, 76px);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -.025em
}

.lede {
	width: min(510px, 100%);
	margin: 22px auto 34px;
	color: #5c5a54;
	font-size: 14px;
	line-height: 1.85
}

.signup {
	width: min(530px, 100%);
	margin: auto
}

.form {
	display: flex;
	gap: 8px;
	padding: 7px;
	background: var(--paper);
	border: 1px solid rgba(45, 45, 45, .12);
	border-radius: 999px;
	box-shadow: 0 18px 45px rgba(45, 45, 45, .07)
}

input {
	min-width: 0;
	flex: 1;
	border: 0;
	outline: 0;
	background: transparent;
	padding: 13px 17px;
	color: var(--ink);
	font: 400 13px Montserrat, Arial, sans-serif
}

button {
	border: 0;
	border-radius: 999px;
	background: var(--ink);
	color: #fff;
	padding: 0 23px;
	cursor: pointer;
	font: 600 10px Montserrat, Arial, sans-serif;
	letter-spacing: .14em;
	text-transform: uppercase
}

button:hover {
	background: var(--olive)
}

.message {
	min-height: 20px;
	margin: 13px 0 0;
	font-size: 11px;
	line-height: 1.5
}

.success {
	color: var(--olive)
}

.error {
	color: #a64b32
}

.note {
	margin: 12px 0 0;
	color: #99958b;
	font-size: 9px;
	line-height: 1.6
}

footer {
	margin-top: 44px;
	color: #aaa69c;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: .24em;
	text-transform: uppercase
}

.honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important
}

.confirmation {
	width: min(560px, 90vw);
	padding: 48px 24px;
	text-align: center;
	position: relative;
	z-index: 1
}

.confirmation h1 {
	margin: 20px 0
}

.confirmation p {
	font-size: 15px;
	line-height: 1.8;
	color: #5b5953
}

.back {
	display: inline-block;
	margin-top: 20px;
	color: #fff;
	background: var(--ink);
	padding: 14px 22px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase
}

.admin,
.admin-login {
	position: relative;
	z-index: 1
}

.admin {
	width: min(980px, 92vw);
	padding: 50px 0
}

.admin-login {
	width: min(500px, 90vw);
	padding: 50px 0;
	text-align: center
}

.admin-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 25px
}

.admin h1,
.admin-login h1 {
	font-size: clamp(42px, 6vw, 64px);
	margin: 10px 0
}

.sub {
	color: #6e6b64;
	font-size: 13px;
	margin: 0 0 25px
}

.actions {
	display: flex;
	gap: 10px;
	align-items: center
}

.small {
	margin: 0
}

.logout {
	color: #77736b;
	text-decoration: none;
	font-size: 11px
}

.admin-form {
	display: flex;
	gap: 8px;
	margin-top: 28px
}

.admin-form input {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px
}

.table-wrap {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: auto
}

table {
	width: 100%;
	border-collapse: collapse
}

th,
td {
	text-align: left;
	padding: 14px 16px;
	border-bottom: 1px solid #ebe8e0;
	font-size: 12px
}

th {
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #77736b
}

tr:last-child td {
	border-bottom: 0
}

.empty {
	text-align: center;
	color: #77736b;
	padding: 45px
}

@media(max-width:560px) {
	body {
		overflow: auto
	}

	.page {
		padding: 36px 16px
	}

	.form {
		border-radius: 18px;
		flex-direction: column;
		padding: 8px
	}

	button {
		height: 48px
	}

	input {
		text-align: center;
		height: 44px
	}

	.admin-head {
		display: block
	}

	.actions {
		margin-top: 20px
	}

	.admin-form {
		flex-direction: column
	}

	.admin-form button {
		height: 48px
	}
}