:root {
  --bg: #7a1a1a;
  --card: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --muted: #c4a882;
  --border: rgba(240, 230, 210, 0.15);
  --accent: #dfc8a0;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
}

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

.header {
  margin-bottom: 32px;
}

.header h1 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.subhead {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.card {
  margin-top: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.field {
  display: grid;
  gap: 6px;
  margin: 20px 0;
}

label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
}

input[type="text"],
textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  transition: border-color 0.2s;
}

input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

input[type="text"]::placeholder,
textarea::placeholder {
  color: rgba(240, 230, 210, 0.5);
  font-size: 13px;
}

textarea {
  resize: vertical;
}

.hint {
  color: var(--muted);
  font-size: 12px;
  opacity: 0.7;
}

/* Photo upload drop zone */
.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 16px;
  border: 1px dashed rgba(240, 230, 210, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.upload-zone .upload-icon {
  font-size: 28px;
  line-height: 1;
  opacity: 0.6;
}

.upload-zone .upload-text {
  font-size: 13px;
  color: var(--muted);
}

.upload-zone .upload-filename {
  font-size: 12px;
  color: var(--accent);
}

.upload-zone input[type="file"] {
  display: none;
}

.upload-zone .upload-preview {
  max-width: 100px;
  max-height: 140px;
  border-radius: 4px;
  object-fit: cover;
}

.button {
  margin-top: 28px;
  width: 100%;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}

.button:hover {
  background: var(--accent);
  color: var(--bg);
}

.button:active {
  transform: translateY(1px);
}

.footer {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
  opacity: 0.6;
}

.hidden {
  display: none;
}
