/* ==========================================================================
   15 SERVICE AREA — the argument, not the list. The ten city names stay in the
   footer grid; this block is why Central Texas is hard on paint, and each of
   its four claims carries a figure, which is exactly the accent grammar's
   territory. Sets up the city pages in stage 4. 1 image.
   ========================================================================== */

.area { background: var(--surface-alt); }

.area__frame {
  position: relative;
  aspect-ratio: var(--ratio-card);
  border-radius: var(--radius-card);
  clip-path: var(--chamfer-clip);
  margin-block-end: var(--space-stack);
}
.area__frame::after { background: var(--chamfer-edge), var(--overlay-media); }

/* four readings on one rule — the tick language rather than the cell
   language, so this does not repeat §6's bordered grid */
.area__figs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-lg);
}

.area__fig {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  padding-block-start: var(--space-md);
  background: var(--tick-rule);
}

.area__val {
  display: flex;
  align-items: baseline;
  gap: var(--space-2xs);
  font-family: var(--font-mono);
  font-size: var(--text-stat);
  font-weight: var(--weight-bold);
  line-height: var(--leading-flat);
  letter-spacing: var(--tracking-mono-tight);
  color: var(--text-accent);
}
.area__unit {
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-muted);
}

.area__claim {
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  color: var(--text-muted);
}

.area__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-block-start: var(--space-stack);
}
.area__foot-note { font-size: var(--text-body-sm); color: var(--text-muted); }
/* base.css strips link styling site-wide. The two cities that have a page get
   the same in-prose link construction .refusal__why a uses; the other eight
   stay bare text, which is the visible expression of the four-page ceiling. */
.area__foot-note a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-color: var(--border-accent);
  text-underline-offset: var(--space-3xs);
  transition: color var(--dur-fast) var(--ease-state);
}
.area__foot-note a:hover { color: var(--text-primary); }

@media (min-width: 640px) {
  .area__figs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg) var(--grid-gap); }
}
@media (min-width: 1024px) {
  .area__frame { aspect-ratio: var(--ratio-wide); }
  .area__figs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
