/* About page. Same grammar as the service pages: a hero, then numbered
   sections built on the two-column split, alternating tint and light. */

.about-hero {
  padding-top: clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  background: radial-gradient(circle at 82% 12%, rgba(168, 126, 20, 0.09), rgba(247, 246, 244, 0) 42%), var(--bg);
}

.about-hero .container {
  max-width: 1100px;
}

.about-hero h1 {
  max-width: 1000px;
}

.about-hero-lede {
  max-width: 66ch;
  margin-bottom: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

/* Every heading on this page is a full sentence, so the left rail runs at the
   reduced display scale the service pages use for their longer headings. */
.split-layout > div > h2 {
  max-width: 24ch;
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height: 1.16;
}

/* Numbered sections: a hairline at every boundary, tint on the odd ones. */
.about-origin,
.about-local,
.about-partnership,
.about-bring,
.about-contact {
  border-top: 1px solid var(--hairline);
}

.about-origin,
.about-partnership,
.about-contact {
  background: var(--surface-tint);
}

.about-contact {
  border-bottom: 1px solid var(--hairline);
}

/* The Brisbane note closes section 02 as a labelled final paragraph. */
.about-local-note {
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--hairline);
}

.about-local-note strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Quiet rows: the label/copy pair the deliverable and commitment lists use. */
.about-partner-list {
  min-width: 0;
  max-width: 68ch;
  border-top: 1px solid var(--hairline);
}

.about-partner-list p {
  display: grid;
  margin: 0;
  padding-block: clamp(1.1rem, 2.2vw, 1.6rem);
  border-bottom: 1px solid var(--hairline);
  grid-template-columns: minmax(0, 8rem) minmax(0, 1fr);
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
  color: var(--ink-soft);
  line-height: 1.6;
}

.about-partner-list strong {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-close-copy > p:not(.eyebrow) {
  max-width: 46ch;
  margin: 1.5rem 0 2rem;
}

/* The question form is the right column of section 05. The element carries
   three hooks from earlier builds; all three resolve to this one column. */
.blueprint-form-card,
.blueprint-form,
.about-question-form {
  min-width: 0;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid var(--accent);
}

.blueprint-form-head {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--hairline);
}

.blueprint-form-head .eyebrow {
  margin-bottom: 1rem;
}

.blueprint-form-head h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.blueprint-form-head p:last-child {
  margin-bottom: 0;
}

.blueprint-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.form-field {
  display: grid;
  min-width: 0;
  gap: 0.55rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field > span {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.25s ease;
}

.form-field input {
  min-height: 3.25rem;
  padding: 0.6rem 0;
}

.form-field textarea {
  min-height: 9rem;
  padding: 0.8rem 0;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #76736d;
}

.blueprint-botcheck {
  position: absolute;
  left: -9999px;
}

.blueprint-submit {
  margin-top: 2rem;
  cursor: pointer;
}

.blueprint-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.blueprint-form-status {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  color: var(--positive);
}

.blueprint-form-status.is-error {
  color: #8d2f25;
}

@media (max-width: 960px) {
  .split-layout > div > h2 {
    max-width: 28ch;
  }
}

@media (max-width: 760px) {
  .blueprint-form-card,
  .blueprint-form,
  .about-question-form {
    padding-top: 1.5rem;
    padding-left: 0;
    border-top: 1px solid var(--accent);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .about-partner-list p {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
  }

  .blueprint-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-field--full {
    grid-column: auto;
  }

  .blueprint-submit {
    width: 100%;
  }
}
