@font-face {
  font-family: "Bebas Neue";
  src: url("fonts/bebas-neue-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lobster";
  src: url("fonts/lobster-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/open-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --gold: #dca91d;
  --ink: #1d1e20;
  --gray: #e9e9e9;
  --page-width: 1224px;
  --header-height: 85px;
}

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

html {
  color: var(--ink);
  background: #fff;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #111;
  outline-offset: 4px;
}

.page-width {
  width: min(var(--page-width), calc(100% - 48px));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: var(--header-height);
  background: #fff;
}

.site-header__inner {
  position: relative;
  width: min(var(--page-width), calc(100% - 48px));
  min-height: var(--header-height);
  margin-inline: auto;
}

.site-nav {
  position: absolute;
  top: 15px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 39px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
}

.site-nav__link:not(.site-nav__link--button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 28.578125px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(.5);
  transition: opacity .18s ease, transform .18s ease;
}

.site-nav__link:not(.site-nav__link--button) {
  position: relative;
  width: 44px;
  justify-content: flex-end;
}

.site-nav__link:not(.site-nav__link--button):hover::after,
.site-nav__link:not(.site-nav__link--button):focus-visible::after,
.site-nav__link:not(.site-nav__link--button).is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav__link--button {
  width: 111px;
  height: 55px;
  min-height: 55px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
}

.menu-page .site-nav__link:not(.site-nav__link--button) {
  color: var(--gold);
}

.menu-toggle {
  display: none;
}

.gold-button {
  display: inline-flex;
  width: 194px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: var(--gold);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.gold-button:hover {
  background: #bd8e10;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  height: 664px;
  overflow: hidden;
  background: #222;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .53);
  content: "";
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 160px;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 100px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.3;
}

.hero__subtitle {
  max-width: 1000px;
  margin: 48px 0 0;
  color: var(--gold);
  font-size: 48px;
  line-height: 1.3;
}

.hero__tagline {
  margin: 22px 0 0;
  font-size: 24px;
  line-height: 1.3;
}

.hero__cta {
  margin-top: 57px;
}

.intro {
  height: auto;
  min-height: 916px;
  padding: 75px 0 70px;
  background: #fff;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 504px) minmax(420px, 548px);
  grid-template-areas:
    "title media"
    "copy media";
  column-gap: 172px;
  align-items: start;
}

@media (min-width: 901px) {
  .intro__grid {
    grid-template-rows: 165px auto;
    row-gap: 9px;
  }
}

.intro__title {
  grid-area: title;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}

.intro__copy {
  grid-area: copy;
  color: #4a4a4a;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
}

.intro__copy p {
  margin: 0 0 32px;
}

.intro__copy .intro__closing {
  margin-bottom: 0;
  color: var(--gold);
}

.intro__media {
  grid-area: media;
  width: 548px;
  height: 746.42px;
  margin: 0;
  overflow: hidden;
  border-radius: 17px;
}

.intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.neighborhood {
  position: relative;
  height: 423px;
  background-image: url("images/banner-cocina-barrio.avif");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.neighborhood__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
}

.neighborhood__content {
  position: relative;
  z-index: 1;
  padding-top: 148px;
  text-align: center;
  text-transform: uppercase;
}

.neighborhood h2 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.3;
}

.neighborhood p {
  margin: 8px 0 0;
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  line-height: 1.3;
}

.venues {
  min-height: 1343px;
  padding: 71px 0 7px;
  background: #fff;
}

.section-heading {
  text-align: center;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3;
}

.section-heading p {
  margin: 32px 0 0;
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  line-height: 1.3;
}

.venues__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin-top: 35px;
}

.venue-card {
  min-width: 0;
}

.venue-card--centered {
  grid-column: 1 / -1;
  width: calc(50% - 6px);
  justify-self: center;
}

.venue-card__details {
  min-height: 204px;
  padding: 21px 24px 17px;
  background: var(--gray);
  text-align: center;
  text-transform: uppercase;
}

.venue-card h3 {
  margin: 0;
  font-family: "Lobster", cursive;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: none;
}

.venue-card h3 a,
.venue-card__address a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.venue-card__address {
  margin: 12px 0 0;
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

.venue-card__hours {
  margin: 12px 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.venue-card__image {
  display: block;
  aspect-ratio: 768 / 436;
  overflow: hidden;
}

.venue-card:nth-child(2) .venue-card__image {
  aspect-ratio: 768 / 433;
}

.venue-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.venue-card__image:hover img,
.venue-card__image:focus-visible img {
  transform: scale(1.015);
}

.instagram {
  min-height: 1104px;
  padding: 51.278125px 0 0;
  background: var(--gray);
}

.section-heading--instagram {
  position: relative;
}

.section-heading--instagram h2 {
  min-height: 66.390625px;
}

.section-heading--instagram p {
  margin-top: 32.959375px;
}

.instagram-profile {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  margin-bottom: -6px;
  color: var(--ink);
  text-decoration: none;
}

.section-heading--instagram .instagram-profile {
  position: absolute;
  top: 56.390625px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

.instagram-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.instagram-icon::before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.instagram-icon::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 110.234375px;
}

.instagram__grid a {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #ccc;
}

.instagram__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.instagram__grid a:nth-child(1) img,
.instagram__grid a:nth-child(2) img,
.instagram__grid a:nth-child(4) img,
.instagram__grid a:nth-child(5) img,
.instagram__grid a:nth-child(6) img {
  object-position: center center;
}

.instagram__grid a:hover img,
.instagram__grid a:focus-visible img {
  transform: scale(1.02);
}

.site-footer {
  position: relative;
  height: 130.78125px;
  min-height: 130.78125px;
  padding: 0;
  background: var(--gold);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.site-footer h2 {
  position: absolute;
  top: 8px;
  right: 24px;
  left: 24px;
  min-height: 36px;
  margin: 0;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
}

.site-footer .instagram-profile {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: 0;
  color: #fff;
  transform: translateX(-50%);
}

.site-footer .instagram-icon {
  width: 24px;
  height: 24px;
}

.site-footer p {
  position: absolute;
  top: 80px;
  right: 24px;
  left: 24px;
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.site-footer p:last-child {
  top: 107.390625px;
}

.motion-enabled .transition--slide {
  opacity: 0;
  transform: translateY(20%);
  transition-property: transform, opacity;
}

.motion-enabled .transition--slide[data-animation-state="active"] {
  opacity: 1;
  transform: translate(0%);
  transition-delay: .1s;
  transition-duration: .65s;
  transition-timing-function: ease;
}

.motion-enabled .hero__cta.transition--slide {
  transform: translateY(20%);
}

.motion-enabled .hero__cta.transition--slide[data-animation-state="active"] {
  transform: translate(0%);
}

.menu-sheets {
  width: min(1218px, calc(100% - 48px));
  margin-right: auto;
  margin-left: max(24px, calc((100% - 1224px) / 2));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  min-height: 0;
  padding: 3px 0 57.46875px;
}

.menu-sheets img {
  width: 100%;
  height: auto;
}

.menu-sheet {
  min-width: 0;
  margin: 0;
  align-self: start;
}

@media (min-width: 768px) {
  .menu-sheet:first-child {
    margin-top: 1px;
  }
}

.not-found {
  position: relative;
  display: grid;
  min-height: calc(100vh - var(--header-height) - 131px);
  place-items: center;
  overflow: hidden;
  background: #161616;
  color: #fff;
}

.not-found::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .67), rgba(0, 0, 0, .67)), url("images/hero-tiki-taco.avif") center / cover;
  content: "";
}

.not-found__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  font-family: "Bebas Neue", sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.not-found__code {
  margin: 0;
  color: var(--gold);
  font-size: 54px;
  line-height: 1;
}

.not-found h1 {
  margin: 12px 0 0;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
}

.not-found__content > p:not(.not-found__code) {
  margin: 24px 0 32px;
  font-size: 22px;
}

@media (max-width: 1230px) and (min-width: 768px) {
  .intro__grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 46%);
    column-gap: clamp(48px, 8vw, 110px);
  }

  .intro__media {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(76px, 7vw, 100px);
  }

  .hero__subtitle {
    font-size: clamp(38px, 4vw, 48px);
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .intro {
    height: auto;
    min-height: 0;
    padding: 60px 0;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "media"
      "copy";
    gap: 0;
  }

  .intro__title {
    margin-bottom: 32px;
  }

  .intro__media {
    width: 100%;
    height: 420px;
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 66px;
  }

  .page-width {
    width: calc(100% - clamp(32px, calc(100vw - 328px), 47px));
  }

  .site-header {
    min-height: 66px;
  }

  .site-header__inner {
    width: calc(100% - 34px);
    min-height: 66px;
  }

  .menu-toggle {
    position: absolute;
    z-index: 2;
    top: 11px;
    right: 5px;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 13px 10px;
    flex-direction: column;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transform-origin: center;
    transition: transform .18s ease, opacity .18s ease;
  }

  .site-nav {
    position: static;
    display: none;
    padding: 77px 0 18px;
    flex-direction: column;
    align-items: flex-end;
    gap: 22px;
    font-size: 16px;
  }

  .site-nav__link--button {
    width: 100px;
    height: 49px;
    min-height: 49px;
  }

  .site-header.is-menu-open {
    min-height: 210px;
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    height: 440px;
  }

  .hero__image {
    object-position: center 49%;
  }

  .hero::after {
    background: rgba(0, 0, 0, .47);
  }

  .hero__content {
    padding-top: 52px;
    text-align: center;
  }

  .hero h1 {
    position: relative;
    top: 8px;
    font-size: 40px;
    line-height: 1.3;
  }

  .hero__subtitle {
    margin-top: 12.375px;
    font-size: 24px;
    line-height: 1.3;
  }

  .hero__tagline {
    position: absolute;
    right: 0;
    bottom: 70.4375px;
    left: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
  }

  .hero__cta {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 164px;
    margin: 0;
    transform: translateX(-50%);
    font-size: 16px;
  }

  .motion-enabled .hero__cta.transition--slide {
    transform: translate(-50%, 20%);
  }

  .motion-enabled .hero__cta.transition--slide[data-animation-state="active"] {
    transform: translate(-50%, 0%);
  }

  .hero__cta:hover {
    transform: translateX(-50%);
  }

  .intro {
    height: auto;
    min-height: 1240px;
    padding: 24px 0;
  }

  .intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "media"
      "copy";
    gap: 0;
  }

  .intro__title {
    height: 131px;
    margin: 0 0 24px;
    padding-right: 42px;
    font-size: 32px;
    line-height: 1.36;
    text-transform: none;
  }

  .intro__media {
    width: 100%;
    height: 301px;
    margin: 0 0 32px;
    border-radius: 16px;
  }

  .intro__media img {
    object-position: center 48%;
  }

  .intro__copy {
    color: var(--ink);
    font-size: 16px;
    line-height: 24px;
    text-transform: none;
  }

  .intro__copy p {
    margin-bottom: 32px;
  }

  .neighborhood {
    height: 463px;
    background-attachment: scroll;
  }

  .neighborhood__content {
    padding-top: 145px;
  }

  .neighborhood h2 {
    font-size: 40px;
    line-height: 1.3;
  }

  .neighborhood p {
    margin-top: 12px;
    font-size: 24px;
  }

  .venues {
    min-height: 1700px;
    padding: 35px 0 0;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading p {
    margin-top: 75px;
    font-size: 18px;
    line-height: 1.3;
  }

  .venues__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 79px;
  }

  .venue-card,
  .venue-card--centered {
    grid-column: auto;
    width: 100%;
  }

  .venue-card__details {
    min-height: 198px;
    padding: 22px 17px 14px;
  }

  .venue-card:nth-child(2) .venue-card__details {
    min-height: 201px;
  }

  .venue-card:nth-child(3) {
    margin-top: 12px;
  }

  .venue-card:nth-child(3) .venue-card__details {
    min-height: 225px;
  }

  .venue-card h3 {
    font-size: 18px;
  }

  .venue-card__address {
    margin-top: 11px;
    font-size: 14px;
  }

  .venue-card__hours {
    margin-top: 11px;
    font-size: 13px;
    line-height: 1.5;
  }

  .venue-card__image,
  .venue-card:nth-child(2) .venue-card__image {
    height: 240px;
    aspect-ratio: auto;
  }

  .instagram {
    min-height: 453px;
    padding: 37.175px 0 0;
  }

  .section-heading--instagram h2 {
    min-height: 44px;
  }

  .section-heading--instagram p {
    width: min(307.375px, 100%);
    margin: 36.6px auto 0;
    font-size: 18px;
    line-height: 1.3;
  }

  .section-heading--instagram .instagram-profile {
    top: 34px;
  }

  .instagram-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }

  .instagram-icon::before {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
  }

  .instagram__grid {
    gap: 8px;
    margin-top: 36.615625px;
  }

  .site-footer {
    height: auto;
    min-height: 143px;
    padding: 83px 16px 15px;
  }

  .site-footer h2 {
    top: 16px;
    right: 16px;
    left: 16px;
    min-height: 27px;
    font-size: 20px;
  }

  .site-footer .instagram-profile {
    top: 38px;
    margin: 0;
  }

  .site-footer p {
    position: static;
    font-size: 16px;
    line-height: 1.3;
  }

  .site-footer p:last-child {
    top: auto;
    margin-top: .203125px;
    line-height: 24px;
  }

  .menu-sheets {
    width: calc(100% - clamp(32px, calc(100vw - 328px), 47px));
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 31px;
    min-height: 0;
    padding: 0 0 3px;
  }

  .menu-sheet {
    aspect-ratio: 328 / 929;
  }

  .menu-sheet img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  .not-found {
    min-height: calc(100vh - 66px - 143px);
  }
}

@media (max-width: 359px) {
  .site-header__inner {
    width: calc(100% - 32px);
  }

  .hero__subtitle {
    font-size: 28px;
  }

  .hero__tagline {
    font-size: 16px;
  }

  .intro__title,
  .section-heading h2 {
    font-size: 30px;
  }

}

@media (max-width: 220px) {
  .not-found__content {
    padding: 32px 0;
  }

  .not-found__code {
    font-size: 40px;
  }

  .not-found h1 {
    margin-top: 10px;
    overflow-wrap: anywhere;
    font-size: 38px;
    line-height: 1.05;
  }

  .not-found__content > p:not(.not-found__code) {
    margin: 16px 0 20px;
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  .not-found .gold-button {
    width: 100%;
    max-width: 194px;
    min-height: 52px;
    padding-inline: 8px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-enabled .transition--slide,
  .motion-enabled .transition--slide[data-animation-state="active"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .motion-enabled .hero__cta.transition--slide,
  .motion-enabled .hero__cta.transition--slide[data-animation-state="active"] {
    transform: translateX(-50%) !important;
  }
}
