/* FORME — Local search / directory.
   A solid dark masthead so the search bar reads as the primary surface, a
   lime action colour, and results paired with the areas actually covered.
   No decorative map: pins that match no real address mislead. */

/* The masthead is a tinted surface, not a dark slab. A near-black block of
   colour across the top is the sports-brand gesture this media is not: the
   reader is choosing where to spend an ordinary Tuesday evening, not buying
   equipment. Weight comes from type and rules instead. */
.ax-header { background: var(--surface-alt); border-bottom: 1px solid var(--border); }
.ax-logo { --lockup: 34px; letter-spacing: .08em; font-weight: 700; }

.ax-hero { padding: 56px 0 60px; background: var(--surface-alt); }
.ax-hero .ax-eyebrow { color: var(--accent-ink, var(--accent)); }
/* 500 rather than 600/700: at 60px a bold Japanese face fills every counter
   and the line reads as a shout. The weight this page needs is in the size
   and the space around it, not in the stroke. */
.ax-h1 { letter-spacing: -.03em; font-weight: 500; line-height: 1.12; }
.ax-hero .ax-lead { margin-top: 14px; line-height: 1.9; }

/* The search bar is the one place this palette can afford an edge: it is the
   thing the page is for, and a soft card on a soft ground disappears. */
.ax-search {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 7px;
  max-width: 780px;
  margin-top: 30px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(61, 76, 67, .06);
}
.ax-field {
  display: block;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
}
.ax-field small { display: block; font-size: 9px; letter-spacing: .06em; color: var(--muted); }
.ax-field input, .ax-field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 13px;
  color: inherit;
}
.ax-go { border-radius: 10px; padding-inline: 22px; font-weight: 700; }

.ax-local { padding: 52px 0; }
.ax-local .ax-h2 { font-weight: 500; }
.ax-board .ax-h2 { font-weight: 500; }
.ax-title { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.ax-title p { margin: 0; font-size: 11px; color: var(--muted); }
.ax-local-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 16px; margin-top: 20px; }
.ax-local-grid--single { grid-template-columns: 1fr; }
.ax-areas-pending {
  margin: 0 0 4px;
  padding: 14px 16px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  font-size: 12px;
  color: var(--muted);
}

.ax-areas {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-alt);
  align-self: start;
}
.ax-areas-head { margin: 0 0 12px; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.ax-areas ul { display: grid; gap: 2px; }
.ax-areas a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 13px;
}
.ax-areas a:hover { background: var(--surface); }
.ax-areas a span { font-size: 11px; color: var(--muted); }

.ax-results { display: grid; gap: 10px; }
.ax-place {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}
.ax-place h3 { margin: 5px 0 7px; font-size: 18px; }
.ax-place-side { text-align: right; display: flex; flex-direction: column; gap: 2px; justify-content: center; }
.ax-place-side small { font-size: 10.5px; color: var(--muted); }
.ax-place-side strong { font-size: 19px; font-weight: 600; }

.ax-board { padding: 54px 0; background: var(--surface-alt); }
.ax-place h3 { font-weight: 600; }

@media (max-width: 900px) {
  .ax-search { grid-template-columns: 1fr; }
  .ax-local-grid { grid-template-columns: 1fr; }
  .ax-place { grid-template-columns: 1fr; }
  .ax-place-side { text-align: left; }
}
.ax-footer-brand { --lockup: 27px; }
