:root {
  color: #17233a;
  background: #f4f2eb;
  font-family: Georgia, serif;
}

* { box-sizing: border-box; }

body { margin: 0; }

.brief-page {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  min-height: 100vh;
}

.brief-intro {
  padding: clamp(3rem, 10vw, 9rem) clamp(1.5rem, 7vw, 7rem);
  background: #152846;
  color: #f4f2eb;
}

.eyebrow { color: #deba66; font: 700 0.75rem/1 Arial, sans-serif; letter-spacing: 0.15em; }
h1 { max-width: 8ch; margin: 1rem 0; font-size: clamp(2.7rem, 6vw, 5rem); line-height: 0.95; }
.brief-intro > p:last-child { max-width: 30rem; color: #d7dfec; font-size: 1.15rem; line-height: 1.5; }

.project-brief {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-content: center;
  padding: clamp(2rem, 8vw, 7rem);
  font-family: Arial, sans-serif;
}

label { display: grid; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
input, select, textarea { width: 100%; padding: 0.8rem 0; border: 0; border-bottom: 1px solid #7c8491; outline: 0; background: transparent; color: inherit; font: 1rem/1.4 Arial, sans-serif; }
input:focus, select:focus, textarea:focus { border-color: #b27416; }
textarea { resize: vertical; }
.wide, .form-status { grid-column: 1 / -1; }
button { width: fit-content; padding: 0.9rem 1.25rem; border: 0; border-radius: 999px; background: #b27416; color: white; cursor: pointer; font: 700 0.85rem Arial, sans-serif; letter-spacing: 0.04em; text-transform: uppercase; }
button:disabled { cursor: wait; opacity: 0.7; }
.form-status { min-height: 1.25rem; margin: 0; color: #475467; }
.honeypot { position: absolute; left: -9999px; }

@media (max-width: 700px) {
  .brief-page { grid-template-columns: 1fr; }
  .brief-intro { padding: 3rem 1.5rem; }
  .project-brief { grid-template-columns: 1fr; }
  .wide, .form-status { grid-column: auto; }
}
