/* Barrio Antiguo — Figuras */

:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --ink-2: #525252;
  --ink-3: #a3a3a3;
  --rule: #e5e5e5;
  --accent: #b85c2e;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  font-feature-settings: "kern" 1, "ss01" 1, "cv11" 1;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}

a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color .15s;
}
a:hover { border-color: var(--ink); }

img { max-width: 100%; height: auto; display: block; }

/* ---------------- Header ---------------- */
.masthead {
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}
.masthead .crest {
  color: var(--ink);
  font-weight: 500;
}
.masthead nav a {
  margin-left: 1.4rem;
  border: none;
  color: var(--ink-2);
}
.masthead nav a:hover { color: var(--ink); }

/* ---------------- Hero ---------------- */
.hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
}

.hero .kicker {
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.4rem;
  max-width: 22ch;
}

.hero .dek {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 40ch;
}

/* ---------------- Figures ---------------- */
.figures {
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.figure {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.figure:last-of-type { border-bottom: 1px solid var(--rule); }

.figure .portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #f5f5f5;
  filter: grayscale(0.15);
}
.figure .portrait .placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: -0.04em;
}

.figure .body { padding-top: 0.2rem; }

.figure h3 {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.3rem;
  letter-spacing: -0.015em;
}

.figure .meta {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 1rem;
}
.figure .meta span + span::before {
  content: " · ";
  color: var(--rule);
}

.figure p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 0.8rem;
  max-width: 56ch;
}

.figure .trace {
  margin-top: 1rem;
  font-size: 13px;
  color: var(--ink-3);
  border-left: 2px solid var(--accent);
  padding-left: 0.9rem;
}

/* ---------------- Streets ---------------- */
.streets {
  border-top: 1px solid var(--rule);
  padding: 4rem 2rem;
  background: #fafafa;
}
.streets-inner {
  max-width: 880px;
  margin: 0 auto;
}
.streets h2 {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.streets .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.street-card {
  background: #fff;
  padding: 1rem 1.1rem;
}
.street-card .street-name {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.street-card .street-honoree {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}

/* ---------------- Footer ---------------- */
footer {
  border-top: 1px solid var(--rule);
  padding: 2rem;
  font-size: 12px;
  color: var(--ink-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 720px) {
  .masthead { padding: 1rem; }
  .masthead nav a { margin-left: 0.9rem; }
  .hero { padding: 4rem 1.4rem 2.5rem; }
  .figures { padding: 1.5rem 1.4rem 3rem; }
  .figure { grid-template-columns: 100px 1fr; gap: 1.4rem; padding: 2rem 0; }
  .figure h3 { font-size: 1.2rem; }
  .streets { padding: 2.5rem 1.4rem; }
}
