/* =====================================================
   Rostisseria El Paso — estilos minimalistas
   Paleta: blanco / negro / rojo
   ===================================================== */

:root {
  --negro: #111111;
  --negro-suave: #1c1c1c;
  --gris: #6b6b6b;
  --gris-claro: #efefef;
  --blanco: #ffffff;
  --rojo: #e63027;
  --rojo-oscuro: #b91d1d;
  --max: 1120px;
  --radio: 4px;
  --sombra: 0 1px 0 rgba(17, 17, 17, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

.muted { color: var(--gris); }
.accent { color: var(--rojo); }

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gris-claro);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand__logo {
  width: 44px;
  height: 44px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__rost {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris);
}

.brand__paso {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 900;
}

.brand__paso::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--rojo);
  margin-right: 0.45rem;
  border-radius: 50%;
  vertical-align: middle;
  transform: translateY(-2px);
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--rojo);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease, transform 0.05s ease;
}

.hero__phone svg {
  width: 1em;
  height: 1em;
  stroke-width: 2.2;
}

.hero__phone:hover { color: var(--rojo-oscuro); }
.hero__phone:active { transform: translateY(1px); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radio);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
  cursor: pointer;
}

.btn--primary {
  background: var(--rojo);
  color: var(--blanco);
  border-color: var(--rojo);
}
.btn--primary:hover {
  background: var(--rojo-oscuro);
  border-color: var(--rojo-oscuro);
}

.btn--ghost {
  background: transparent;
  color: var(--negro);
  border-color: var(--negro);
}
.btn--ghost:hover {
  background: var(--negro);
  color: var(--blanco);
}

.btn--link {
  background: transparent;
  color: var(--negro);
  padding: 0.75rem 0.25rem;
  border-color: transparent;
  text-decoration: underline;
  text-decoration-color: var(--rojo);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.btn--link:hover { color: var(--rojo); }

.btn:active { transform: translateY(1px); }

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem 1.5rem 3.5rem;
  border-bottom: 1px solid var(--gris-claro);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rojo);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--gris);
  max-width: 50ch;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.hero__logo {
  display: flex;
  justify-content: center;
}

.hero__logo img {
  width: min(320px, 80%);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.06));
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.feature {
  text-align: left;
  padding: 1.75rem;
  border: 1px solid var(--gris-claro);
  border-radius: var(--radio);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature:hover {
  border-color: var(--rojo);
  transform: translateY(-2px);
}

.feature__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rojo);
  background: rgba(230, 48, 39, 0.08);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.feature p {
  color: var(--gris);
  margin: 0;
}

/* ---------- Info / contacto ---------- */
.info {
  background: var(--negro);
  color: var(--blanco);
  padding: 4.5rem 1.5rem;
}

.info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.info__card h2 {
  color: var(--blanco);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.info__card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--rojo);
}

.info__line {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}

.info__days {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.info__hours {
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
}

.info__phone {
  color: var(--rojo);
  font-weight: 700;
}
.info__phone:hover { text-decoration: underline; }

.info__address {
  font-style: normal;
}

.info .muted { color: rgba(255, 255, 255, 0.55); margin-top: 1rem; }

.info .btn--primary { margin-top: 1.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--gris-claro);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
  color: var(--gris);
}

.site-footer p { margin: 0.25rem 0; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__logo { order: -1; }
  .hero__logo img { width: 220px; }
  .features { grid-template-columns: 1fr; gap: 1rem; padding: 3rem 1.5rem; }
  .info__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .brand__paso { font-size: 1.15rem; }
  .brand__logo { width: 38px; height: 38px; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .info { padding: 3rem 1.25rem; }
}
