:root {
  --ink: #1a1410;
  --ink2: #3a2e22;
  --beige: #faf7f2;
  --beige2: #f4ede0;
  --beige3: #e8dece;
  --gold: #c4a05a;
  --gold-d: #a07c38;
  --muted: #9a8c7a;
  --border: #e8dece;
  --white: #ffffff;
  --error: #c44a4a;
  --success: #4a9e6e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Instrument Sans", sans-serif;
  background: var(--beige);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.card {
  background: var(--white);
  border: 1px solid var(--beige3);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(26, 20, 16, 0.08);
}

.brand {
  font-family: "Cormorant", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}

h1 {
  margin: 0 0 12px;
  font-family: "Cormorant", serif;
  font-size: clamp(26px, 5vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}

.lead {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--ink2);
  margin-bottom: 8px;
}

input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--beige3);
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 16px;
  font-family: inherit;
  background: var(--beige);
  color: var(--ink);
}

input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.checkbox-row input {
  margin-top: 3px;
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

button:hover,
.button:hover {
  background: #d4b06a;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.message {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.45;
}

.message.success {
  background: rgba(74, 158, 110, 0.12);
  color: var(--success);
  border: 1px solid rgba(74, 158, 110, 0.25);
}

.message.error {
  background: rgba(196, 74, 74, 0.1);
  color: var(--error);
  border: 1px solid rgba(196, 74, 74, 0.25);
}

.status {
  text-align: center;
  padding: 24px 0 8px;
  color: var(--muted);
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.icon.success {
  background: rgba(74, 158, 110, 0.12);
  color: var(--success);
}

.icon.error {
  background: rgba(196, 74, 74, 0.1);
  color: var(--error);
}

.footer {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.footer a {
  color: var(--gold-d);
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .page {
    padding: 24px 16px 40px;
  }

  .card {
    padding: 24px 20px;
  }
}
