:root { --ink: #0f1216; --muted: #5b6672; --line: #dfe4ea; --accent: #c8a24a; }
* { box-sizing: border-box; }
body { margin: 0; font: 16px/1.5 system-ui, sans-serif; color: var(--ink); background: #fafbfc; }
header { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--line); background: #fff; }
h1 { margin: 0; font-size: 20px; letter-spacing: -0.02em; }
main { max-width: 760px; margin: 0 auto; padding: 24px; }
section { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 20px; margin-bottom: 20px; }
h2 { margin-top: 0; font-size: 18px; }
label { display: block; margin-bottom: 12px; font-size: 14px; color: var(--muted); }
input, textarea, select { display: block; width: 100%; min-width: 0; margin-top: 4px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 6px; font: inherit; color: var(--ink); background: #fff; }
input[type="color"] { padding: 2px; height: 38px; }
input[type="checkbox"], input[type="radio"] { display: inline; width: auto; }
button { padding: 9px 16px; border: 0; border-radius: 6px; background: var(--ink); color: #fff; font: inherit; cursor: pointer; }
button:hover { opacity: 0.9; }
button:disabled { opacity: 0.5; cursor: not-allowed; }
.tiers { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.tier { border: 1px solid var(--line); border-radius: 8px; padding: 14px; margin: 0; cursor: pointer; }
.tier:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(200, 162, 74, 0.2); }
.tier strong { display: block; margin: 6px 0; color: var(--ink); }
.tier p { margin: 0 0 6px; color: var(--ink); font-size: 14px; }
.photos { list-style: none; padding: 0; display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(min(140px, 100%), 1fr)); }
.photos li { border: 1px solid var(--line); border-radius: 8px; padding: 8px; background: #fff; cursor: grab; min-width: 0; }
.photos img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; }
.photos span { display: block; font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
#requestList { list-style: none; padding: 0; }
#requestList li { display: grid; gap: 4px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.stage { justify-self: start; font-size: 12px; padding: 2px 10px; border-radius: 999px; background: #eef2f6; color: var(--muted); }
small { color: var(--muted); font-size: 13px; }
#terms h3 { font-size: 15px; margin: 16px 0 4px; }
#terms ul { margin: 0 0 8px; padding-left: 20px; font-size: 14px; color: var(--ink); }
#terms li { margin-bottom: 4px; border: 0; padding: 0; }
#terms label { display: flex; align-items: baseline; gap: 8px; margin-top: 16px; }
#terms label input { display: inline; width: auto; margin-top: 0; }
#terms .agreed { color: #1a7f37; font-weight: 600; }
