:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #5c5c5c;
  --linea: #e6e6e6;
  --rojo: #d02424;
  --ambar: #e08a1a;
  --verde: #5b9c2e;
  --azul: #2d74d6;
  --humo: #141512;
  --display: "Alfa Slab One", "Rockwell Extra Bold", Georgia, serif;
  --sans: "Instrument Sans", "Helvetica Neue", sans-serif;
  --cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --carta: "Montserrat", "Helvetica Neue", sans-serif;
  --carta-size: 1.05rem;
  --space: clamp(1.15rem, 4vw, 1.75rem);
  --column: 40rem;
  --logo-h: 4.9rem;
  --header-y: 0.9rem;
  --header-h: calc(var(--logo-h) + var(--header-y) * 2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
}

body {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.55;
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: var(--space);
  top: 1rem;
  z-index: 20;
  padding: 0.4rem 0.7rem;
  background: var(--ink);
  color: var(--bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--header-y) var(--space);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linea);
}

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

.isologo {
  display: block;
  height: var(--logo-h);
  width: calc(var(--logo-h) * 2.102);
  object-fit: cover;
  object-position: 54% 50%;
  flex: 0 0 auto;
}

.colorcitos {
  display: flex;
  gap: 0.28rem;
  margin-left: 0.2rem;
}

.colorcitos span {
  width: 0.55rem;
  height: 0.55rem;
}

.colorcitos span:nth-child(1) { background: var(--rojo); }
.colorcitos span:nth-child(2) { background: var(--ambar); }
.colorcitos span:nth-child(3) { background: var(--verde); }
.colorcitos span:nth-child(4) { background: var(--azul); }

nav {
  display: flex;
  gap: 1.4rem;
}

nav a {
  font-family: var(--cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--muted);
}

nav a[aria-current="page"],
nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--linea);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0 auto;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.05) 0%, rgba(17, 17, 17, 0.55) 58%, #111 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: var(--space);
  padding-bottom: clamp(2rem, 8vh, 5rem);
  max-width: 46rem;
  color: #fff;
}

.kicker {
  font-family: var(--cond);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1,
.page-title h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 28rem;
  margin: 0 0 1.8rem;
}

.hero .lede {
  color: rgba(255, 255, 255, 0.86);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.55rem 1.15rem;
  font-family: var(--cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.88rem;
  border: 1px solid var(--ink);
}

.btn-solid {
  background: var(--rojo);
  color: #fff;
  border-color: var(--rojo);
}

.btn-solid:hover {
  background: #b71c1c;
}

.hero .btn-ghost {
  border-color: #fff;
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(17, 17, 17, 0.06);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: calc(var(--space) * 1.4) var(--space);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--linea);
  padding-bottom: 0.9rem;
}

.section-head h2,
.page-title h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.prose p {
  color: var(--muted);
  max-width: 38rem;
}

.prose p + p {
  margin-top: 1rem;
}

.figure {
  margin: 0;
}

.figure img {
  width: 100%;
  height: min(42rem, 78vh);
  object-fit: cover;
}

.figure-mesa img {
  object-position: 80% 40%;
}

.figure figcaption {
  margin-top: 0.7rem;
  font-family: var(--cond);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
}

.classics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2.2rem;
}

.classics li,
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--linea);
}

.dish-name,
.dish-desc {
  display: block;
}

.dish-name {
  font-family: var(--carta);
  font-weight: 400;
  font-size: var(--carta-size);
  line-height: 1.25;
}

.dish-cat,
.dish-desc {
  font-family: var(--carta);
  font-weight: 400;
  color: var(--muted);
  font-size: 0.88rem;
}

.split h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.actions-late {
  margin-top: 1.4rem;
}

.section-head a {
  font-family: var(--cond);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--muted);
}

.section-head a:hover {
  color: var(--rojo);
}

.price {
  font-family: var(--carta);
  font-weight: 400;
  color: var(--rojo);
  font-size: var(--carta-size);
  white-space: nowrap;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  min-height: 34rem;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic img:first-child {
  grid-row: 1 / span 2;
  min-height: 34rem;
}

.visit {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
  background: #f6f6f4;
}

.visit a.map {
  display: block;
  min-height: 22rem;
  overflow: hidden;
  border: 1px solid var(--linea);
}

.visit img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: 42% 55%;
}

.addr p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.addr strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.site-footer {
  padding: 1.4rem var(--space) 2rem;
  border-top: 1px solid var(--linea);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: var(--cond);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.page-title {
  padding: calc(var(--space) * 1.5) var(--space) 0;
}

.page-title p {
  color: var(--muted);
  max-width: 36rem;
}

.menu-toolbar {
  position: sticky;
  top: var(--header-h);
  z-index: 8;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem var(--space) 0.9rem;
  border-bottom: 1px solid var(--linea);
}

.cats {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.45rem;
  scrollbar-width: none;
}

.cats::-webkit-scrollbar {
  height: 0;
}

.cats a,
.cats button {
  flex: 0 0 auto;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--linea);
  font-family: var(--cond);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
}

.cats a:hover,
.cats button:hover,
.cats button.is-on,
.cats a.is-on {
  border-color: var(--ink);
  color: var(--ink);
}

.search {
  width: min(22rem, 100%);
  margin-top: 0.75rem;
  border-bottom: 1px solid var(--linea);
  padding: 0.4rem 0;
  font-size: 1rem;
}

.search::placeholder {
  color: #9a9a9a;
}

.menu-section {
  padding-top: 2.2rem;
}

.menu-section h2 {
  font-family: var(--carta);
  font-weight: 400;
  font-size: calc(var(--carta-size) * 2);
  line-height: 1.15;
  color: var(--rojo);
  margin: 0 0 0.55rem;
}

.dishes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-left: 1px solid var(--linea);
}

.timeline li {
  padding: 0 0 1.6rem 1.3rem;
  position: relative;
}

.timeline li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--rojo);
  position: absolute;
  left: -4px;
  top: 0.45rem;
}

.timeline li:nth-child(2)::before { background: var(--ambar); }
.timeline li:nth-child(3)::before { background: var(--verde); }

.timeline strong {
  display: block;
  font-family: var(--cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.note {
  font-size: 0.92rem;
  color: #8a8a8a;
}

.empty {
  color: var(--muted);
  padding: 2rem 0;
}

.pin {
  color: var(--rojo);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .colorcitos { display: none; }

  nav {
    display: none;
    position: absolute;
    right: var(--space);
    top: var(--header-h);
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    background: var(--bg);
    border: 1px solid var(--linea);
  }

  body.nav-open nav {
    display: flex;
  }

  .split,
  .visit,
  .mosaic,
  .classics {
    grid-template-columns: 1fr;
  }

  .mosaic img:first-child {
    grid-row: auto;
    min-height: 18rem;
  }

  .hero {
    min-height: 86vh;
  }

  .figure img {
    height: 22rem;
  }
}

@media (min-width: 861px) {
  body {
    font-size: 0.95rem;
  }

  .site-header,
  .menu-toolbar,
  .site-footer {
    padding-left: max(1.5rem, calc(50vw - var(--column) / 2));
    padding-right: max(1.5rem, calc(50vw - var(--column) / 2));
  }

  .hero,
  .section,
  .page-title {
    width: min(var(--column), calc(100% - 3rem));
    margin-inline: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    min-height: 26rem;
    margin-top: 1.1rem;
  }

  .hero-copy {
    max-width: none;
    padding: 1.1rem 1.2rem 1.4rem;
  }

  .hero h1 {
    font-size: 3rem;
    margin-bottom: 0.7rem;
  }

  .lede {
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
  }

  .kicker {
    font-size: 0.72rem;
    margin-bottom: 0.65rem;
  }

  .page-title {
    padding-top: 2rem;
  }

  .page-title h1,
  .section-head h2,
  .split h2 {
    font-size: 1.85rem;
  }

  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section-head {
    margin-bottom: 1.1rem;
    padding-bottom: 0.6rem;
  }

  .split {
    gap: 1.4rem;
  }

  .figure img {
    height: 17rem;
  }

  .classics li,
  .dish {
    padding: 0.62rem 0;
  }

  .mosaic {
    min-height: 18rem;
    gap: 0.4rem;
  }

  .mosaic img:first-child {
    min-height: 18rem;
  }

  .visit {
    gap: 1.25rem;
  }

  .visit a.map,
  .visit img {
    min-height: 13rem;
  }

  .addr strong {
    font-size: 1.2rem;
  }

  .btn {
    min-height: 2.3rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
  }

  .menu-section {
    padding-top: 1.4rem;
  }
}
