* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0a0b0e;
  color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.nav {
  padding: 16px 24px;
  border-bottom: 1px solid #1e2129;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { font-weight: 800; font-size: 16px; letter-spacing: 1px; }
.brand span { color: #c9a96e; }
.nav-link { color: #8a8d96; text-decoration: none; font-size: 13px; }
.nav-link:hover { color: #c9a96e; }

.container { max-width: 700px; margin: 0 auto; padding: 30px 20px 50px; }
.container-wide { max-width: 1200px; margin: 0 auto; padding: 30px 20px 50px; }

.page-head { margin-bottom: 24px; }
.page-kicker { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #c9a96e; margin-bottom: 8px; }
.page-title { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; }
.page-sub { color: #a8acb6; font-size: 14px; margin-top: 6px; }

.card {
  background: #12141a;
  border: 1px solid #1e2129;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 14px;
}

.label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8a8d96;
  margin-bottom: 10px;
  display: block;
}

input[type="text"], input[type="number"], input[type="date"], input[type="email"], select, textarea {
  width: 100%;
  background: #0a0b0e;
  border: 1px solid #2a2e38;
  color: #fff;
  padding: 13px 14px;
  border-radius: 9px;
  font-size: 15px;
  font-family: inherit;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: #c9a96e; }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23c9a96e' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

textarea { min-height: 90px; resize: vertical; }

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 600px) { .row, .row-3 { grid-template-columns: 1fr; } }

.field { margin-bottom: 14px; }
.field:last-child { margin-bottom: 0; }
.hint { font-size: 12px; color: #6a6e76; margin-top: 6px; }

.photo-zone {
  background: #0a0b0e;
  border: 2px dashed #2a2e38;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.photo-zone .ico { font-size: 32px; margin-bottom: 6px; }
.photo-zone .txt { font-size: 13px; color: #8a8d96; }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; margin-top: 12px; }
.photo-thumb { aspect-ratio: 1; border-radius: 8px; overflow: hidden; position: relative; }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.photo-thumb .x { position: absolute; top: 4px; right: 4px; background: rgba(0,0,0,.7); color: #fff; border: none; width: 22px; height: 22px; border-radius: 50%; cursor: pointer; font-size: 14px; line-height: 1; }

.btn {
  width: 100%;
  padding: 16px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-primary { background: linear-gradient(135deg, #c9a96e, #d4845a); color: #0a0b0e; }
.btn-primary:disabled { opacity: .4; cursor: not-allowed; }
.btn-ghost { background: transparent; border: 1px solid #2a2e38; color: #fff; }

.badge { padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: inline-block; }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #00d4aa;
  color: #0a0b0e;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 50;
}
.toast.show { opacity: 1; }
.toast.error { background: #d4845a; color: #fff; }
