/* ============================================================
   SILICON VATICAN — SUBMIT PAGE
   Story submission form
   ============================================================ */

.sub-page { padding: 2rem 0; }

.sub-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: var(--rule2);
  margin-bottom: 2rem;
}
.sub-header .headline {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: .6rem;
}
.sub-header p {
  font-style: italic;
  color: rgba(242,232,213,.6);
  max-width: 560px;
  margin: 0 auto;
}

/* ── LAYOUT ── */
.sub-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
}

/* ── FORM ── */
.sub-form { display: flex; flex-direction: column; gap: 1.25rem; }

.field label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(196,164,74,.05);
  border: 1px solid rgba(196,164,74,.3);
  color: var(--parchment);
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  padding: .65rem .85rem;
  transition: border-color .2s;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }
.field textarea    { resize: vertical; min-height: 200px; line-height: 1.65; }
.field select option { background: #1a1408; }

/* ── SUBMIT BUTTON ── */
.btn-sub {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--ink);
  background: var(--gold);
  border: none;
  padding: .8rem 2rem;
  cursor: pointer;
  transition: background .2s;
  text-transform: uppercase;
  font-weight: 700;
}
.btn-sub:hover    { background: var(--gold-bright); }
.btn-sub:disabled { opacity: .5; cursor: not-allowed; }

/* ── SIDEBAR NOTES ── */
.sub-note {
  background: rgba(196,164,74,.05);
  border: var(--rule);
  padding: 1.25rem;
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(242,232,213,.68);
  margin-bottom: 1rem;
}
.sub-note:last-child { margin-bottom: 0; }

.sub-note-title {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .65rem;
}

.sub-note ol { padding-left: 1.2rem; }
.sub-note li { margin-bottom: .4rem; }

/* ── SUCCESS STATE ── */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  border: var(--rule2);
}
.form-success .s-ic {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  color: var(--gold);
}
.form-success h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: .55rem;
}
.form-success p {
  font-style: italic;
  color: rgba(242,232,213,.65);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .sub-layout { grid-template-columns: 1fr; }
}
