/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Base ── */
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: #faf8f4;
  color: #2a2a2a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* ── Card ── */
.card {
  background: #ffffff;
  border: 1px solid #e4dbd0;
  border-radius: 3px;
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ── Monogram ── */
.monogram {
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #a67c52;
  margin-bottom: 0.75rem;
}

/* ── Ornamental divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto 1.5rem;
  max-width: 200px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e4dbd0;
}

.divider-diamond {
  color: #a67c52;
  font-size: 0.55rem;
}

/* ── Headings ── */
h1 {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  color: #2a2a2a;
  margin-bottom: 0.4rem;
}

/* ── Date line ── */
.date {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a67c52;
  margin-bottom: 1.5rem;
}

/* ── Body text ── */
.subtitle {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ── Form elements ── */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.5rem;
}

input[type="tel"],
input[type="text"],
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #2a2a2a;
  background: #faf8f4;
  transition: border-color 0.2s;
  appearance: auto;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #a67c52;
}

textarea {
  resize: vertical;
}

/* ── Radio options ── */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Georgia', serif;
  text-transform: none;
  letter-spacing: 0;
  color: #2a2a2a;
  margin-bottom: 0;
  transition: border-color 0.2s, background 0.2s;
}

.radio-group label:hover {
  border-color: #a67c52;
  background: #faf8f4;
}

.radio-group input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #a67c52;
  flex-shrink: 0;
}

/* ── Primary button ── */
.btn {
  width: 100%;
  padding: 0.95rem;
  background: #2a2a2a;
  color: white;
  border: none;
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
  margin-top: 0.5rem;
}

.btn:hover {
  background: #a67c52;
}

/* ── Inline error message ── */
.error-msg {
  color: #b94040;
  font-size: 0.85rem;
  margin-top: 0.6rem;
  display: none;
  font-style: italic;
}

/* ── Dev hint (remove before going live) ── */
.dev-hint {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2a2a;
  color: #ccc;
  font-family: monospace;
  font-size: 0.78rem;
  padding: 0.6rem 1rem;
  text-align: center;
  z-index: 999;
}

.dev-hint strong {
  color: #f0c070;
}
