/* Materiales Zamudio — catálogo blueprint (5º layout único) */
:root {
  --grid-bg: #e4eaf0;
  --grid-line: rgba(17, 24, 39, 0.07);
  --ink: #111827;
  --slate: #4b5563;
  --paper: #ffffff;
  --yellow: #f2c200;
  --yellow-dark: #c9a000;
  --blueprint: #1e4d8c;
  --font-head: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--grid-bg);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 24px 24px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blueprint); font-weight: 600; }
a:hover { color: var(--yellow-dark); }
address { font-style: normal; }

.wrap { width: min(var(--max), 94vw); margin-inline: auto; }

/* Cabecera tipo mostrador */
.depot-head {
  display: grid;
  border-bottom: 4px solid var(--ink);
}
@media (min-width: 800px) {
  .depot-head { grid-template-columns: 1fr auto; }
}
.depot-head__brand {
  background: var(--yellow);
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  border-right: 4px solid var(--ink);
}
.depot-head__brand h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-transform: uppercase;
  line-height: 1.05;
}
.depot-head__brand p {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.35rem;
}
.depot-head__cta {
  background: var(--paper);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-width: 220px;
}
.depot-head__cta strong { font-size: 1.35rem; }
.depot-head__cta a {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow) !important;
  text-decoration: none !important;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  margin-top: 0.35rem;
}
.depot-head__cta a:hover { background: var(--blueprint); color: var(--paper) !important; }

/* Pasillos navegación */
.aisle-nav {
  background: var(--ink);
  color: var(--paper);
  overflow-x: auto;
}
.aisle-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
  min-width: max-content;
}
.aisle-nav a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
}
.aisle-nav a:hover,
.aisle-nav a[aria-current="page"] {
  background: var(--yellow);
  color: var(--ink);
}

/* Bloques contenido */
.block { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.panel {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.panel h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.lead { color: var(--slate); max-width: 40rem; margin-bottom: 1.25rem; }
.tag {
  display: inline-block;
  background: var(--blueprint);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
}

.hero-split {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 850px) {
  .hero-split { grid-template-columns: 1fr 1fr; }
}
.hero-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  border: 2px solid var(--ink);
}
.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  margin-top: 1.25rem;
}
.stat-bar div {
  padding: 0.85rem;
  text-align: center;
  border-right: 2px solid var(--ink);
  background: var(--paper);
  font-size: 0.8rem;
}
.stat-bar div:last-child { border-right: none; }
.stat-bar strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--blueprint);
}

/* Acordeón pasillos */
.accordion { border: 2px solid var(--ink); }
.accordion details {
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}
.accordion details:last-child { border-bottom: none; }
.accordion summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.accordion summary::after { content: "+"; font-family: var(--font-head); font-size: 1.25rem; }
.accordion details[open] summary::after { content: "−"; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion__body {
  padding: 0 1.1rem 1rem;
  color: var(--slate);
  font-size: 0.92rem;
}
.accordion__body ul { margin-left: 1.1rem; }

/* Timeline entrega */
.timeline {
  display: grid;
  gap: 0;
  border: 2px solid var(--ink);
}
@media (min-width: 700px) {
  .timeline { grid-template-columns: repeat(4, 1fr); }
}
.timeline__step {
  padding: 1rem;
  border-bottom: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  background: var(--paper);
  font-size: 0.88rem;
}
@media (min-width: 700px) {
  .timeline__step { border-bottom: none; }
  .timeline__step:last-child { border-right: none; }
}
.timeline__step strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--blueprint);
}

/* Tabla reseñas */
.review-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.review-table th,
.review-table td {
  border: 1px solid var(--ink);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}
.review-table th {
  background: var(--ink);
  color: var(--yellow);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.review-table tr:nth-child(even) td { background: rgba(255,255,255,0.6); }

.map-box iframe {
  width: 100%;
  height: 300px;
  border: 2px solid var(--ink);
}

.mobile-dial {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  text-align: center;
  padding: 0.75rem;
  font-weight: 800;
  text-decoration: none !important;
  color: var(--ink) !important;
}
@media (max-width: 640px) {
  .mobile-dial { display: block; }
  body { padding-bottom: 3.5rem; }
}

.site-foot {
  border-top: 4px solid var(--ink);
  background: var(--paper);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 2rem;
}

.legal-page { padding: 3rem 1rem; max-width: 40rem; margin: 0 auto; }
.legal-page h1 { font-family: var(--font-head); margin-bottom: 1rem; }
.legal-page p { color: var(--slate); margin-bottom: 0.75rem; }
