/* Shared layout for the simpler surface pages (business, contact).
   Same typography and palette as app.css — just container + article
   shell. Keeps those pages tiny. */

/* Shared max-width / gutter for every simple-page section. Matches
   `.container` in app.css (1280/32) so the two navigation strips and
   the article body align visually. Before this, `.article-body` was
   `display: grid` at the section level and the inner `.container`
   used `display: contents` to pass its children through as grid
   items — which erased the container's max-width + padding, making
   the content run edge-to-edge. We now let `.container` do its job
   (centre + pad) and put the grid on `.article-grid` inside it. */
.article-hero,
.article-body {
  padding-left: 32px;
  padding-right: 32px;
}
.article-hero > .container,
.article-body > .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.article-hero {
  padding-top: 72px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.article-hero .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.article-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.article-hero h1 em { font-style: italic; color: var(--gold-deep); }
.article-hero p {
  max-width: 680px;
  color: var(--ink-2);
  font-size: 18px;
}

.article-body {
  padding-top: 48px;
  padding-bottom: 64px;
}
.article-body .article-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 56px;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 24px 0 12px;
}
.article-body p, .article-body li {
  max-width: 640px;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.article-body ul { padding-left: 20px; }

.entity-card {
  border: 1px solid var(--rule-strong);
  background: var(--paper-2);
  padding: 22px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink);
}
.entity-card .label {
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-top: 10px;
}
.entity-card .label:first-child { margin-top: 0; }

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 540px;
  margin-top: 16px;
}
.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-family: var(--mono);
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--rule-strong);
  padding: 12px 14px;
  width: 100%;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  justify-self: start;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.contact-form button:hover { background: var(--gold); border-color: var(--gold); }

@media (max-width: 900px) {
  .article-body .article-grid { grid-template-columns: 1fr; }
}
